[eluser]jloosli[/eluser]
OK, I've been on to other things the last little while, but decided to try my hand at this one more time and I think I am up and running now on 1.7.2 with bep 0.6.1:
I typically pull the application folder out of the system folder and put it in the root folder for codeigniter. So today, I got the stock CI setup without changing any folders and downloaded bep and installed it without changing anything around. I had the class error for the libraries, so I changed line 414 of /system/application/libraries/Loader.php from:
Code:
$CI->dbutil =& new $class();
to:
Code:
$CI->dbutil = new $class();
Then, I logged in and everything looked good except in the settings section, I got warnings for ereg_replace being depricated, so I changed line 100 of /modules/preferences/libraries/Preference_form.php from:
Code:
$this->field[$field]['label'] = ucwords(ereg_replace('_',' ',$field));
to:
Code:
$this->field[$field]['label'] = ucwords(preg_replace('/_/',' ',$field));
and it seems like things are functioning well.
So, it seems like the biggest problem was not keeping the application folder in the system folder.