[eluser]adamp1[/eluser]
It has been pointed out to me that there is an issue with BackendPro 0.6 on some web servers. The issue is with some new files in the site module. The problems comes because of the CamelCase used in the filenames of the site libraries.
If you get the follow error when visiting a BackendPro page:
Quote:Unable to load the requested class: bep_site
I am working on a new release which I will try to get out shortly, but for the mean time please do the following:
1. Change all filenames in modules/site/libraries to
Bep_assetfile.php
Bep_assets.php
Bep_browser.php
Bep_site.php
2. In the file modules/site/libraries/Bep_assets.php change the following lines:
Change include_once(’Bep_AssetFile.php’);
To include_once(’Bep_assetfile.php’);
Change $this->CI->load->library(’Bep_Browser’);
To $this->CI->load->library(’bep_browser’);
I want to thank Christian Schneider for pointing this out and for the fix.