Part of the EllisLab Network
   
10 of 11
10
Ionize - Free & Open Source creative CMS
Posted: 14 March 2010 08:12 PM   [ Ignore ]   [ # 136 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  106
Joined  10-13-2006

@useeme_p : The version 0.92 is now available ! Please use this one.
Documentation will be soon available…

 Signature 

Ionize CMS - Webdesigner CMS based on CodeIgniter
http://www.ionizecms.com

Ionize Forum
http://www.ionizecms.com/forum


My website : Partikule Studio, Web Design Agency, Paris

Profile
 
 
Posted: 15 March 2010 02:14 PM   [ Ignore ]   [ # 137 ]  
Summer Student
Avatar
Total Posts:  14
Joined  03-08-2010

Thanks Michel-Ange, I will download the source later today and let you know how I make out

 Signature 

www.Openkb.org | Openbase for techies raspberry
Personal site _ www.signofthegrind.com

Profile
 
 
Posted: 15 March 2010 07:38 PM   [ Ignore ]   [ # 138 ]  
Summer Student
Avatar
Total Posts:  14
Joined  03-08-2010

Hello,

I managed to get the cms working on the server with php 5.3. The errors i was seeing prior have been cleared accept for one. But if possible I will like to add some information to the installation doc. It took a lot of tweaking to get the initial page to load properly.


1) The htaccess file caused 500 error when suphp is installed because the php_value/flag directives are not supported.

2) The RewriteBase is set to / by default , keeping this with this value returns a white page with Welcome to hostname. I installed this into a subfolder so i needed to modify the / with /subfolder_name . The page then loaded up

3) nothing int he admin area works, all the links goes to 404 pages , The structure does populate , but i can not modify them. not sure if this is because i commented out php_flag allow_url_include On & php_flag allow_url_fopen On

4) Error on the main page
Severity: Notice

Message: Undefined variable: medias

Filename: Tagmanager/Page.php

Line Number: 1059

**** its a warning so i suppressed it for now by adding ~ on line 118 of the index.php file ( error_reporting(~E_ALL ) **


I am still studying your code as I am a lil new to CI .. but it would be nice once i get the admin area working ..

Stay tuned

 Signature 

www.Openkb.org | Openbase for techies raspberry
Personal site _ www.signofthegrind.com

Profile
 
 
Posted: 15 March 2010 08:29 PM   [ Ignore ]   [ # 139 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  106
Joined  10-13-2006

Great involvment !
About the medias error : I corrected, it’s now working in the online packages (zip and assembla).

The other errors need deeper analyse…

 Signature 

Ionize CMS - Webdesigner CMS based on CodeIgniter
http://www.ionizecms.com

Ionize Forum
http://www.ionizecms.com/forum


My website : Partikule Studio, Web Design Agency, Paris

Profile
 
 
Posted: 15 March 2010 10:49 PM   [ Ignore ]   [ # 140 ]  
Summer Student
Total Posts:  23
Joined  01-21-2010

I downloaded the new version 0.92, I just wonder about the package size, seems that it’s a bit heavy, take me a long time to upload. Should you optimize the file size?

Profile
 
 
Posted: 16 March 2010 04:00 AM   [ Ignore ]   [ # 141 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  106
Joined  10-13-2006

@bindaden : Yes, I planned to release a 2ko version for the next month :D

More seriously, I will think about removing some data from example theme. You will not have my marvelous pictures from Burma anymore !

 Signature 

Ionize CMS - Webdesigner CMS based on CodeIgniter
http://www.ionizecms.com

Ionize Forum
http://www.ionizecms.com/forum


My website : Partikule Studio, Web Design Agency, Paris

Profile
 
 
Posted: 16 March 2010 04:31 AM   [ Ignore ]   [ # 142 ]  
Summer Student
Total Posts:  23
Joined  01-21-2010

after installation, I got same errors with useeme - hope Michel can fix them soon. And I still wish a page title fuction and a contact form built-in.

Profile
 
 
Posted: 16 March 2010 04:40 AM   [ Ignore ]   [ # 143 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  106
Joined  10-13-2006

What same errors ? All ?
What do you mean by “I still wish a page title function and a contact form built-in” ?

 Signature 

Ionize CMS - Webdesigner CMS based on CodeIgniter
http://www.ionizecms.com

Ionize Forum
http://www.ionizecms.com/forum


My website : Partikule Studio, Web Design Agency, Paris

Profile
 
 
Posted: 16 March 2010 05:25 AM   [ Ignore ]   [ # 144 ]  
Summer Student
Total Posts:  23
Joined  01-21-2010

1.
php_flag allow_url_include On
php_flag allow_url_fopen On

Cannot install if above code on, they causes “505 errors”

2. After installation, cannot go to admin area, automatically be redirected to homepage

3. with version 0.90 all articles use the same page title (<ion: title >) with their own category. This not good for SEO purposes. And I dont know how to make a simple contact form that’s why I wish there would be those 2 functions on V0.92

Profile
 
 
Posted: 16 March 2010 07:27 AM   [ Ignore ]   [ # 145 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  106
Joined  10-13-2006

@useeme_p :
The .htaccess is corrected : I forgot to put away these php_flag declaration. Anyway, they are not needed to run Ionize.

You can download the update package from Assembla SVN or directly from http://www.ionizecms.com


By default, the .htaccess is provided as following :

RewriteEngine On
# RewriteBase /

RewriteCond $!^(index\.php|themes|install|files|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L] 

As you see, the RewriteBase is commented by default. This is documented.

Do you already have the 404 on the admin ?

 Signature 

Ionize CMS - Webdesigner CMS based on CodeIgniter
http://www.ionizecms.com

Ionize Forum
http://www.ionizecms.com/forum


My website : Partikule Studio, Web Design Agency, Paris

Profile
 
 
Posted: 16 March 2010 09:38 AM   [ Ignore ]   [ # 146 ]  
Grad Student
Avatar
Rank
Total Posts:  74
Joined  02-16-2010

great job…

 Signature 

grin  LOL  smile  tongue wink tongue rolleye tongue laugh tongue rolleye raspberry

Profile
 
 
Posted: 17 March 2010 02:49 AM   [ Ignore ]   [ # 147 ]  
Summer Student
Avatar
Total Posts:  14
Joined  03-08-2010

@Michel-Ange
I will download the latest version later today and let you know. were you able to figure out why the internal links in the admin area were not working.

 Signature 

www.Openkb.org | Openbase for techies raspberry
Personal site _ www.signofthegrind.com

Profile
 
 
Posted: 21 March 2010 09:49 PM   [ Ignore ]   [ # 148 ]  
Summer Student
Total Posts:  23
Joined  01-21-2010
Michel-Ange - 15 November 2009 12:13 AM

Ionize 0.92 has been released.

03/15/2009 : Ionize 0.92 is available !

This new release comes with a lot of improvment :

- Introduction of “extended fields” : You can add your own fields on page, articles, medias

Hi Michel,

Can you explain more about this new feature, I dont know how to use it.

Bin

Profile
 
 
Posted: 23 March 2010 05:23 PM   [ Ignore ]   [ # 149 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  106
Joined  10-13-2006

@bindaden : Yes, Extended fields give you the possibility to add your own fields to pages, articles and media.

For example, imagine you need another article data so called “introduction” for your articles.
The old way of doing that was hacking the database, add your field, hacking the admin panel, add your field, go into the model, etc… boring, not efficient and not compatible with further versions of the Ionize core system.

With extended fields, you add your field, define the type of field (input, textarea, checkbox, etc…), set the label name and that’s it : this field will appear in all your articles admin.
If you set this fields as “multi-languagues”, it will be available in the languages data tab of the article.

To use it in a view, simply call <ion:field from=“article name=“your_field_name” > and that’s it.

Extended fields will be improved in the 0.93 version… which will be very soon available…

Some new coming features :
- “Scope” notion in “articles” tag : Means you can call articles not only from a page, but also from all the website or from the parent page (articles from the page upper the current page).
- Dynamic attributes in tags (attribute value can come from a database field)

Stay tuned, this new version will come very soon !

 Signature 

Ionize CMS - Webdesigner CMS based on CodeIgniter
http://www.ionizecms.com

Ionize Forum
http://www.ionizecms.com/forum


My website : Partikule Studio, Web Design Agency, Paris

Profile
 
 
Posted: 24 March 2010 03:36 AM   [ Ignore ]   [ # 150 ]  
Summer Student
Total Posts:  23
Joined  01-21-2010

It’s great to hear that….Thanks Michel, I am waiting for the new version.

Btw, what’s about Page title for Article and A simple contact form? Will them be included in new version?

//Pls read my previous comments for “Page title of Articles”

Profile
 
 
   
10 of 11
10