Part of the EllisLab Network
   
3 of 80
3
PyroCMS v0.9.7.4 - an open-source modular general purpose CMS
Posted: 08 April 2009 11:59 AM   [ Ignore ]   [ # 21 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  187
Joined  01-29-2008

screen shots look amazing!

I will definitely be keeping an eye on this!

doodle

 Signature 

Shameless example of self promotion

Profile
 
 
Posted: 08 April 2009 02:32 PM   [ Ignore ]   [ # 22 ]  
Grad Student
Rank
Total Posts:  57
Joined  03-18-2007
Phil Sturgeon - 08 April 2009 01:15 PM

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 ?

Profile
 
 
Posted: 08 April 2009 04:04 PM   [ Ignore ]   [ # 23 ]  
Research Assistant
Avatar
RankRankRank
Total Posts:  770
Joined  02-06-2007

http://www.assembla.com/spaces/pyrocms/

There is a tab with a link to the github files.

 Signature 

“I am the terror that flaps in the night”

Profile
 
 
Posted: 08 April 2009 07:58 PM   [ Ignore ]   [ # 24 ]  
Sr. Research Associate
Avatar
RankRankRankRankRank
Total Posts:  3175
Joined  06-11-2007

Sorry I will be making everything a little more obvious later on. Got half tickets done for the alpha1 release tonight.

Download ZIP
Download Tar

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.

 Signature 

————————
Blog | Twitter | GitHub | BitBucket
————————-
PyroCMS - open source modular CMS built with CodeIgniter
PancakeApp - Simple, hosted invoicing/w project management

Profile
 
 
Posted: 09 April 2009 03:21 AM   [ Ignore ]   [ # 25 ]  
Research Assistant
Avatar
RankRankRank
Total Posts:  770
Joined  02-06-2007
Phil Sturgeon - 08 April 2009 11:58 PM

of the evening wrestling with jQuery UI trying to recreate javascript confirm() boxes. Ridiculously complicated!

I was looking for the same thing and found a couple ready options:

1. jqModal. Checkout example #6
2. BlockUI.

 Signature 

“I am the terror that flaps in the night”

Profile
 
 
Posted: 09 April 2009 03:27 AM   [ Ignore ]   [ # 26 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  297
Joined  05-29-2006

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

 Signature 

CI Js_calendar plugin click

WYSIWYG with CI

Profile
 
 
Posted: 09 April 2009 05:52 AM   [ Ignore ]   [ # 27 ]  
Sr. Research Associate
Avatar
RankRankRankRankRank
Total Posts:  3175
Joined  06-11-2007

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 face

 Signature 

————————
Blog | Twitter | GitHub | BitBucket
————————-
PyroCMS - open source modular CMS built with CodeIgniter
PancakeApp - Simple, hosted invoicing/w project management

Profile
 
 
Posted: 09 April 2009 06:23 AM   [ Ignore ]   [ # 28 ]  
Sr. Research Associate
RankRankRankRankRank
Total Posts:  4785
Joined  07-14-2006

Why the choice for the apppath directory name public_html, it might confuse people.

Profile
 
 
Posted: 09 April 2009 07:34 AM   [ Ignore ]   [ # 29 ]  
Sr. Research Associate
Avatar
RankRankRankRankRank
Total Posts:  3175
Joined  06-11-2007

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_replacestr_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.

 Signature 

————————
Blog | Twitter | GitHub | BitBucket
————————-
PyroCMS - open source modular CMS built with CodeIgniter
PancakeApp - Simple, hosted invoicing/w project management

Profile
 
 
Posted: 09 April 2009 11:56 AM   [ Ignore ]   [ # 30 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  297
Joined  05-29-2006
Phil Sturgeon - 09 April 2009 09:52 AM

Ahh sorry the password is “password”.

Ok thank you_ all work fine… i have set also yhe image for read the base_url();
I want to try tinymce as editor. If i success, i post the code, ok?
Thank you Ciao

 Signature 

CI Js_calendar plugin click

WYSIWYG with CI

Profile
 
 
   
3 of 80
3