MyBB Community Forums

Full Version: error Warning Bad arguments maintenance.php
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
help please,

Warning: implode() [function.implode]: Bad arguments. in /home/*****/domains/*****.com/public_html/admin/maintenance.php on line 252
Admin Kontrol Panel
Read here please. Second post.
Crakter Change to


PHP Code:
$fids = implode(',', $fids);

Change to:
PHP Code:
if(is_array($fids))
{
$fids = implode(',', $fids);
}


Parse error: syntax error, unexpected T_ELSE in /home/****/domains/****.com/public_html/admin/maintenance.php on line 259
CraKteR, sorry problem my,change code problem is fixed thankyou CraKteR Smile
You obivously did something wrong then.
Revert it to your original file and try again.

Edit, glad you got it working.