Quote:
Originally Posted by Trana
I checked and the donations_install script says 1.06 when I first log in.
This is the error message:
Warning: explode() [function.explode]: Empty delimiter. in \admincp\donation_install\donation_uninstall.php on line 20
Let me know what I should do to start over.
|
In ./admincp/donation_install/donation_uninstall.php line 19 find:
PHP Code:
foreach($row AS $key => $value){
$table = explode(TABLE_PREFIX, $value);
$DB_site->query("DROP TABLE IF EXISTS ".TABLE_PREFIX.$table[1]);
}
and replace with:
PHP Code:
foreach($row AS $key => $value){
if (!empty(TABLE_PREFIX)){
$table = explode(TABLE_PREFIX, $value);
$DB_site->query("DROP TABLE IF EXISTS ".TABLE_PREFIX.$table[1]);
} else {
$DB_site->query("DROP TABLE IF EXISTS ".$value);
}
}
That should do ya for a fix, lemme know if it doesn't.