EllisLab text mark
Advanced Search
6 of 7
6
   
No-CMS, A Free CodeIgniter based CMS to start your project
Posted: 25 October 2012 06:27 AM   [ Ignore ]   [ # 81 ]   [ Rating: 0 ]
Avatar
Joined: 2012-02-24
53 posts

Hi, I’ve installed it and I like it. First I’ll play with themes.
Is there or will there be a forum module for No-CMS? I’d buy it.
Good luck with thesis!

 
Posted: 25 October 2012 08:52 PM   [ Ignore ]   [ # 82 ]   [ Rating: 0 ]
Avatar
Joined: 2011-08-28
136 posts
Altazar - 25 October 2012 06:27 AM

Hi, I’ve installed it and I like it. First I’ll play with themes.
Is there or will there be a forum module for No-CMS? I’d buy it.
Good luck with thesis!

Hi @Altazar. I don’t make it yet. But I think someone else has probably make such a module. Still don’t know about it yet.

 Signature 

Homepage : http://www.getnocms.com
Github page : https://github.com/goFrendiAsgard/No-CMS

A free CodeIgniter based CMS-Framework, It is not just another CMS !!!

 
Posted: 18 November 2012 01:56 AM   [ Ignore ]   [ # 83 ]   [ Rating: 0 ]
Avatar
Joined: 2011-08-28
136 posts

The future release of No-CMS will support multi-language, even for the static pages
http://www.getnocms.com/2012/11/multi-language-even-for-static-pages.html

 Signature 

Homepage : http://www.getnocms.com
Github page : https://github.com/goFrendiAsgard/No-CMS

A free CodeIgniter based CMS-Framework, It is not just another CMS !!!

 
Posted: 19 November 2012 12:29 PM   [ Ignore ]   [ # 84 ]   [ Rating: 0 ]
Avatar
Joined: 2011-08-28
136 posts

http://www.getnocms.com/2012/11/better-multi-language-template-better.html
I’ve just make some improvement on No-CMS.

The first one is related to its performance. Accessing variables is considered faster than accessing databases and files. So, from now on The ci_sessions, configuration and language files will only be accessed in the first time call of a request. (e.g: the first $this->cms_username() will access the database, but the second call of the same function will access a variable)
The second one is related to new template system. The core is now fully using regex. In the new template system, you’ll find a new branching tag. This way, I don’t even need the table structure (something I’m afraid of). You can use:

{{ if language:indonesia }}
Show something that only be shown when your language is “indonesia”
{{ else }}
Show something that only be shown when your language is not “indonesia”
{{ end_if }}

The screenshot is available here: http://www.getnocms.com/2012/11/better-multi-language-template-better.html

 Signature 

Homepage : http://www.getnocms.com
Github page : https://github.com/goFrendiAsgard/No-CMS

A free CodeIgniter based CMS-Framework, It is not just another CMS !!!

 
Posted: 03 December 2012 07:43 PM   [ Ignore ]   [ # 85 ]   [ Rating: 0 ]
Joined: 2012-08-29
9 posts
goFrendiAsgard - 25 October 2012 03:53 AM

@mrgswift: qq library is not written by me. But I think yes, there is a problem with file size limit. Thanks to find it out. I’ll try to fix it

Hi goFrendiAsgard,

I figured out what was wrong a few weeks ago and thought I would post it here.  There is a problem with the if statement In the file modules/wysiwyg/fileuploader_library/php.php on lines 121 to 124

if ($postSize $this->sizeLimit || $uploadSize $this->sizeLimit){
            $size 
max(1$this->sizeLimit 1024 1024) . 'M';             
            die(
"{'error':'increase post_max_size and upload_max_filesize to $size'}");    
        

 

If you notice what this if statement is doing, anytime the postSize or uploadSize is less than the sizeLimit, it will die and display the error message that you need to increase your post_max_size and upload_max_filesize. This should be the other way around.  Line 121 should be changed to:

if ($postSize $this->sizeLimit || $uploadSize $this->sizeLimit)

This way the if statement is checking whether postSize and uploadSize is greater than the sizeLimit. I believe this was the original intent for having this if statement here, but was probably written quickly without realizing the mistake.

Thanks for your hard work goFrendiAsgard!

 
Posted: 03 December 2012 09:24 PM   [ Ignore ]   [ # 86 ]   [ Rating: 0 ]
Avatar
Joined: 2011-08-28
136 posts
mrgswift - 03 December 2012 07:43 PM
goFrendiAsgard - 25 October 2012 03:53 AM

@mrgswift: qq library is not written by me. But I think yes, there is a problem with file size limit. Thanks to find it out. I’ll try to fix it

Hi goFrendiAsgard,

I figured out what was wrong a few weeks ago and thought I would post it here.  There is a problem with the if statement In the file modules/wysiwyg/fileuploader_library/php.php on lines 121 to 124

if ($postSize $this->sizeLimit || $uploadSize $this->sizeLimit){
            $size 
max(1$this->sizeLimit 1024 1024) . 'M';             
            die(
"{'error':'increase post_max_size and upload_max_filesize to $size'}");    
        

 

If you notice what this if statement is doing, anytime the postSize or uploadSize is less than the sizeLimit, it will die and display the error message that you need to increase your post_max_size and upload_max_filesize. This should be the other way around.  Line 121 should be changed to:

if ($postSize $this->sizeLimit || $uploadSize $this->sizeLimit)

This way the if statement is checking whether postSize and uploadSize is greater than the sizeLimit. I believe this was the original intent for having this if statement here, but was probably written quickly without realizing the mistake.

Thanks for your hard work goFrendiAsgard!

At the first glance I don’t notice it too :p
But thanks, I’ve just push a commit in github
https://github.com/goFrendiAsgard/No-CMS/tree/80247c81b1eb42dfb7ae0420412d6c286cc8f812

 Signature 

Homepage : http://www.getnocms.com
Github page : https://github.com/goFrendiAsgard/No-CMS

A free CodeIgniter based CMS-Framework, It is not just another CMS !!!

 
Posted: 08 December 2012 02:15 AM   [ Ignore ]   [ # 87 ]   [ Rating: 0 ]
Avatar
Joined: 2011-08-28
136 posts

New themes for No-CMS is now available
http://www.getnocms.com/2012/12/new-themes.html

 Signature 

Homepage : http://www.getnocms.com
Github page : https://github.com/goFrendiAsgard/No-CMS

A free CodeIgniter based CMS-Framework, It is not just another CMS !!!

 
Posted: 11 December 2012 09:22 PM   [ Ignore ]   [ # 88 ]   [ Rating: 0 ]
Avatar
Joined: 2011-08-28
136 posts

New widget loading mechanism in No-CMS
http://www.getnocms.com/2012/12/too-many-http-request-new-widget.html

 Signature 

Homepage : http://www.getnocms.com
Github page : https://github.com/goFrendiAsgard/No-CMS

A free CodeIgniter based CMS-Framework, It is not just another CMS !!!

 
Posted: 12 January 2013 02:39 AM   [ Ignore ]   [ # 89 ]   [ Rating: 0 ]
Avatar
Joined: 2011-08-28
136 posts

No-CMS is now supporting third party authentication (e.g: login via facebook, twitter etc)
http://www.getnocms.com/2013/01/third-party-authentication.html

 Signature 

Homepage : http://www.getnocms.com
Github page : https://github.com/goFrendiAsgard/No-CMS

A free CodeIgniter based CMS-Framework, It is not just another CMS !!!

 
Posted: 20 January 2013 11:12 AM   [ Ignore ]   [ # 90 ]   [ Rating: 0 ]
Avatar
Joined: 2011-08-28
136 posts

The module generator of No-CMS has been replaced with the cooler one.
See it here http://www.getnocms.com/2013/01/nordrassil-new-web-development-pain.html

 Signature 

Homepage : http://www.getnocms.com
Github page : https://github.com/goFrendiAsgard/No-CMS

A free CodeIgniter based CMS-Framework, It is not just another CMS !!!

 
Posted: 06 February 2013 03:30 AM   [ Ignore ]   [ # 91 ]   [ Rating: 0 ]
Avatar
Joined: 2011-08-28
136 posts

I’ve just make a new thread here http://ellislab.com/forums/viewthread/233142/

 Signature 

Homepage : http://www.getnocms.com
Github page : https://github.com/goFrendiAsgard/No-CMS

A free CodeIgniter based CMS-Framework, It is not just another CMS !!!

 
Posted: 03 May 2013 02:43 AM   [ Ignore ]   [ # 92 ]   [ Rating: 0 ]
Joined: 2012-05-22
14 posts

In No-CMS, the css and js file was putted in appilication folder. How can I do that?
Thank you very much.

 
6 of 7
6