backendpro 0.6.1 |
[eluser]Unknown[/eluser]
hi guys to tell you the truth I've searched everywhere and still can't find how to install backendpro 0.6.1 in CI2.0.2 can someone help?
[eluser]Unknown[/eluser]
I've taken a look at the main backend pro thread, and I don't think you can. It doesn't seem to work with CI 2.0, at least not as far as I can see. Correct me if I'm wrong people!
[eluser]CodeIgniteMe[/eluser]
Yes, it's true. BackEndPro 0.6.1 hasn't been updated yet since CI has shifted to 2.0. CI >= 2.0 does not support backward compatibility for PHP < 5.0. BackendPro 0.6.1 is currently in PHP 4 syntax
[eluser]gabybob[/eluser]
hi, I use http://designelemental.net/ OK for=> C.I 1.7.3 http://candlecms.com compatible version => C.I 2.02 best regards Gabriel
[eluser]codecombustor[/eluser]
Try this.... Currently BackendPro 0.6.1 dosn’t support PHP5 officaly but there is some things you can do to patch it so it will work. When trying to run BackendPro on PHP5 you will most likely be hit by the following errors. Assigning by Reference in Loader.php line 414 Message: Assigning the return value of new by reference is deprecated Filename: libraries/Loader.php Line Number: 414 This can be fixed by opening application/libraries/Loader.php and going to line 414. Replace the line $CI->dbutil =& new $class(); with the following $CI->dbutil = new $class(); Function ereg_replace has been deprecated in libraries/Preference_form.php Find line 100 and the code: $this->field[$field]['label'] = ucwords(ereg_replace(‘_’,’ ‘,$field)); Replace the line with the following $this->field[$field]['label'] = ucwords(preg_replace(‘/_/’,’ ‘,$field)); Call-time pass-by-reference has been deprecated in access_control/resources.php line 42 Find line 43 and the code: $offset = $this->access_control_model->buildPrettyOffset(&$obj,$tree); Replace the line with the following: $offset = $this->access_control_model->buildPrettyOffset($obj,$tree); |
Welcome Guest, Not a member yet? Register Sign In |