WOaah!!
Nice layout!... I can’t wait to take it for a spin!!
The layout will come with color variations too, black & orange, light blue and greyscale at the moment.
This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.
The active forums are here.
April 03, 2009 8:29am
Subscribe [70]#16 / Apr 07, 2009 3:59am
WOaah!!
Nice layout!... I can’t wait to take it for a spin!!
The layout will come with color variations too, black & orange, light blue and greyscale at the moment.
#17 / Apr 07, 2009 6:32am
Amazing, keep up the good work dude 😉
#18 / Apr 07, 2009 8:21am
Just keeping everyone updated with progress. I have decided to use Assembla for tracking tickets/milestones on this job over my old favourite Unfuddle (thanks to Too Pixel for convincing me a while back).
So PyroCMS will be managed with:
Assembla - Planning
GitHub - Source control
They both integrate nicely too so no duplication of effort. Not sure which will have the wiki but can worry about that junk later.
Follow me on GitHub or Twitter to receive updates on my progress and if anyone fancies helping out with bug testing then I will be importing the current codebase into Git tonight. The code I add tonight will be pre-alpha for a few days so the obvious warnings apply.
#19 / Apr 07, 2009 8:04pm
Ok not tonight, halo night lasted too long. Tomorrow.
#20 / Apr 08, 2009 12:33am
sounds good.
#21 / Apr 08, 2009 10:15am
Finally got the code online. However, this should be seen as an initial import and not as a release. Feel free to take a look around, lots of cleaning up will happen tonight and hopefully I can get the database files in order for the v0.9-alpha1 release.
#22 / Apr 08, 2009 12:59pm
screen shots look amazing!
I will definitely be keeping an eye on this!
doodle
#23 / Apr 08, 2009 3:32pm
Finally got the code online. However, this should be seen as an initial import and not as a release. Feel free to take a look around, lots of cleaning up will happen tonight and hopefully I can get the database files in order for the v0.9-alpha1 release.
sorry for stuped question , but where can download code ?
#24 / Apr 08, 2009 5:04pm
http://www.assembla.com/spaces/pyrocms/
There is a tab with a link to the github files.
#25 / Apr 08, 2009 8:58pm
Sorry I will be making everything a little more obvious later on. Got half tickets done for the alpha1 release tonight.
Spent most of the evening wrestling with jQuery UI trying to recreate javascript confirm() boxes. Ridiculously complicated! They are in the latest push anyway, even if it is not a perfect final design on the boxes.
#26 / Apr 09, 2009 4:21am
#27 / Apr 09, 2009 4:27am
Thank you for the contrib!
I have try installing the cms under htdocs.
I have this structure folder
-htdocs
|—pyrocms
|—public_html
THe php work but the assets folder is not set correctly: i think necessary an .htacess into the pyrocms folder… At this time i have edit the asset helper as
$base_url =$obj->config->item('base_url');And: at the install you write
6.) Go to your web root, login and make yourself an admin user account.
But for login i use .(JavaScript must be enabled to view this email address) and ...... ?
Thank you
#28 / Apr 09, 2009 6:52am
Ahh sorry the password is “password”.
I had always intended this cms to be run from web root as I always use virtual hosts locally and subdomains on servers, never needed to be run anywhere else. Meaning I would have set up http://local.pyrocms/ to point to htdocs/pyrocms/public_html.
Also the reason the asset helper was using / over base_url was due to my assumption of the code being in root, I could cut down on the number of HTTP requests for css/image files. Might need a more flexible option to support both as I understand not everyone will run this from the root.
Other than assets showing funny, any other issues running it out of web root?
Edit: Forgot to say thank you for the feedback. :red:
#29 / Apr 09, 2009 7:23am
Why the choice for the apppath directory name public_html, it might confuse people.
#30 / Apr 09, 2009 8:34am
You are right, it is a little confusing. It’s a personal choice of mine to put all the app in the web root, then have CI sitting one up from there. Think I should rename the appdir to application or pyrocms?
Edit: Got a potential fix for asset helper. To find the relative root path this crazy bit of code should do it.
$relative_appdir = isset($_SERVER['DOCUMENT_ROOT'])
? str_replace( str_replace("\\", "/", $_SERVER['DOCUMENT_ROOT']) , '', str_replace("\\", "/", realpath(APPPATH)) )
: '';
echo $asset_dir = $relative_appdir .'/assets/';Could someone check my logic there? It seems about right, on a default CI install that code gave me:
/codeigniter/application/assets/
I basically want to avoid using base_url() as this means you have to create a HTTP connection for each and every file you include, that would be no good for speed at all.