logo

eoCMS Developer
eoCMS Developer
Offline Offline
avatar
Posts: 1528
RC download?

Guys do u think i should offer an RC download for 0.8.1?

Please do not PM me requesting support or anything, use the forums, thats what they are here for
eoCMS Designer
eoCMS Designer
Offline Offline
avatar
Posts: 1290
tbarkass_willamson@hotmail.com
Re: RC download?

No not really. I think versions after this one (or at least versions after 1.0.0 should have RC's for each otherwise it's too much fuss) BTW are you at home again today?

Seen a bug? Report it!
eoCMS Developer
eoCMS Developer
Offline Offline
avatar
Posts: 1528
Re: RC download?

yea i am Sad

Please do not PM me requesting support or anything, use the forums, thats what they are here for
eoCMS Developer
eoCMS Developer
Offline Offline
avatar
Posts: 909
Re: RC download?

I think it will (from an issues point of view) be better to wait until what you have is ready to go on the 1-click-installer, then you can do RC's after that

But I think it should be done shortly, however I knowtice a few of the "old bugs" popping up again.

Unfortunately I have not used much of the admin, so I can't be sure it is "perfected" yet (just those warnings you saw on my site when you done use half the forum)

So I would say "how long do you think before 1-click ready"

eoCMS Developer
eoCMS Developer
Offline Offline
avatar
Posts: 1528
Re: RC download?

Well there is so much that still needs doing. I need to finish the mods db and themes db and integrate it with eoCMS asap. I also need to re-write the theme handling of the CMS. Once those are done i will attempt to fix all known bugs. Im hoping it wont take too long as I really would like to release soon

EDIT: Actually forget about integrating it with eoCMS, that can come in a later version

Please do not PM me requesting support or anything, use the forums, thats what they are here for
eoCMS Developer
eoCMS Developer
Offline Offline
avatar
Posts: 909
Re: RC download?

cool, its a lot of work, but you can do it..

BTW, the theme's, dont take out the check for the relevant file in the "selected" theme, as that is the basis for the TC theme I have, ie viewposts.php in ./themes/myTC/ (if it exists)

This is one of the things I liked about eoCMS (which is why I'm going to so much trouble to change the DB part back)

What I can suggest (maybe not straight away) is that if you do not dump any text out to the webserver until ALL the php has finished, the speedup is considerable

eoCMS Developer
eoCMS Developer
Offline Offline
avatar
Posts: 1528
Re: RC download?


What I can suggest (maybe not straight away) is that if you do not dump any text out to the webserver until ALL the php has finished, the speedup is considerable

How would i do that?

Please do not PM me requesting support or anything, use the forums, thats what they are here for
Global Moderator
Global Moderator
Offline Offline
Posts: 122
Re: RC download?

When can we expect a new release?  I've been waiting for the new version, because I can't use eoCMS with SQLite with the bugs in 0.8.0...  So the project for which I was going to use it has been on hold since then.  I wouldn't like to install a different CMS.  I prefer to give this one a chance first.

Arwym's Domain  ||  SBM: A PHP Bookmarks Script (coming soon)
eoCMS Developer
eoCMS Developer
Offline Offline
avatar
Posts: 1528
Re: RC download?

Ok when i get home i will start a private/closed beta topic

Please do not PM me requesting support or anything, use the forums, thats what they are here for
eoCMS Developer
eoCMS Developer
Offline Offline
avatar
Posts: 909
Re: RC download?


What I can suggest (maybe not straight away) is that if you do not dump any text out to the webserver until ALL the php has finished, the speedup is considerable

How would i do that?


by use my patented "hey we can write raw HTML to a recursive variable" technique Smile

simply put, you have an $out variable and  you .= it using <<<HTML

Code:

example:
$out .= "<div id=Heading>$_SOMEPAGE_LANG['some_heading']</div>";
$out .= '<p align=justify>'.$_SOMEPAGE_LANG['some_arbitrary_text'].'</p>';
$out .= <<<HTML
<table>
   <tr><td>{$_SOMEPAGE_LANG['example_text']}</td></tr>
</table>
HTML;
die($out);


this means there is only one set of PHP tags per page, the page processes EXTREMELY fast, and delivers fairly quickly too (especially if using OB or content encoding) because all html output is offloaded to the webserver in one go

NOTE that the above example shows how the language files work too..


Jump to:


0.05 seconds Queries: 13