New BackendPro version released
BackendPro, CodeIgniter, Development, Updates No Comments »Last week I saw that there was a new version of BackendPro. Not it is 0.6.
On one of our projects I started to update the version, but after some time I saw that there a lot of changes which make the software really good. At all it costs me two days to update the single project (three are waiting for an update
)
Yesterday I want to bring the new version on the LiveSystem, but here I got some further problem, which are not there on my MacBookPro with MAMP:
I had a problem with the installation on my webserver (Debian Etch with Apache 2). I guess that this is a known CodeIgniter problem, so I want to please Adam for the next release to change the things… For all other interested people read the following solutions:
1) CamelCase doesn’t really working good with CodeIgniter.
I got an error on my webserver which told me “Unable to load the requested class: bep_site”.
Solution: Change all filenames in modules/site/libraries to
Bep_assetfile.php
Bep_assets.php
Bep_browser.php
Bep_site.php
2) File changes
In the file modules/site/libraries/Bep_assets.php I had to change the following line:
- include_once(’Bep_AssetFile.php’);
+ include_once(’Bep_assetfile.php’);
- $this->CI->load->library(’Bep_Browser’);
+ $this->CI->load->library(’bep_browser’);
The reason is located in 1)
For all other: If you have any further question, please the comments of this post…
Recent Comments