![]() |
BackendPro 0.6.1 - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22) +--- Thread: BackendPro 0.6.1 (/showthread.php?tid=7381) |
BackendPro 0.6.1 - El Forum - 12-01-2009 [eluser]adamp1[/eluser] Sorry that's the new design. The old one saves each field to a separate userdata value. So for example: Code: $this->session->userdata('id'); Sadly it wasn't designed as well. BackendPro 0.6.1 - El Forum - 12-02-2009 [eluser]Alfredor[/eluser] I'm getting a weird error message: A PHP Error was encountered Severity: 8192 Message: Assigning the return value of new by reference is deprecated Filename: libraries/Loader.php Line Number: 414 Apache, php5, windows, Backed pro 0.6.1 codeigniter 1.7.2 any ideas? BackendPro 0.6.1 - El Forum - 12-02-2009 [eluser]Alfredor[/eluser] Kay solved... but now...: A PHP Error was encountered Severity: Notice Message: Undefined index: Option Filename: models/base_model.php Line Number: 120 BackendPro 0.6.1 - El Forum - 12-03-2009 [eluser]adamp1[/eluser] [quote author="adamp1" date="1258064751"][quote author="adamp1" date="1255521629"]Right issue seems to be have been a typo in the last update. To fix please do the following: Open modules/preferences/models/preference_model.php. 1) The class is defined as Code: class Preference_model extends Base_model Code: class Preference_model extends Model 2) In the constructor please change Code: parent::Base_model(); Code: parent::Model(); 3) Scroll down to set_item and replace its contents with the following Code: if( is_null($name)) That should fix it.[/quote][/quote] BackendPro 0.6.1 - El Forum - 12-03-2009 [eluser]Alfredor[/eluser] Yah sorry for posting already solved isues ![]() BackendPro 0.6.1 - El Forum - 12-04-2009 [eluser]raitucarp[/eluser] hi, @adamp1 sorry, I'm newbie, what is BackendPro function, I mean, what is benefit, if I use it. I have visit your site, but I still confuse about it BackendPro 0.6.1 - El Forum - 12-04-2009 [eluser]adamp1[/eluser] It provides a lot of features like login, site preferences (like config settings but can be edited in the control panel), access control, a control panel with a complete, status messages and other management features which are very useful to have out of the box. Some people like it some people don't. But if you want to get a site up an running quickly with some powerful features its very good for this. BackendPro 0.6.1 - El Forum - 12-04-2009 [eluser]raitucarp[/eluser] [quote author="adamp1" date="1259933490"]It provides a lot of features like login, site preferences (like config settings but can be edited in the control panel), access control, a control panel with a complete, status messages and other management features which are very useful to have out of the box. Some people like it some people don't. But if you want to get a site up an running quickly with some powerful features its very good for this.[/quote] You mean that I can edit config/config.php via control panel ? BackendPro 0.6.1 - El Forum - 12-04-2009 [eluser]adamp1[/eluser] No config.php isn't editable but it creates Database tables to store your own preferences in, ones you may want to change more easily. Have a play with the demo on my site and you will see what I mean. BackendPro 0.6.1 - El Forum - 12-04-2009 [eluser]raitucarp[/eluser] [quote author="adamp1" date="1259934701"]No config.php isn't editable but it creates Database tables to store your own preferences in, ones you may want to change more easily. Have a play with the demo on my site and you will see what I mean.[/quote] OK, I'll try but, I still confuse about this, I'm sorry, hmm, what do you mean about "own preferences" ? sorry, I'm newbie |