Chris Charlton - 2006-02-03

Logged In: YES
user_id=678800

As the error suggests your web host has disabled the two
functions. Neither are essential. Can you still log into the
admin centre and use WebCards as normal.

Try these fixes and if they work I will add them to the next
release.

Open up admin.php and go to line 64:

if((bool) @ini_get('safe_mode') == 0)
{
@set_time_limit(0);
}

Change it to:

if((bool) @ini_get('safe_mode') == 0 &&
function_exists("set_time_limit") == 1)
{
@set_time_limit(0);
}

Next open up source/functions.php. Find line 752:

else
{
$load = exec('uptime');
$load = split('load averages?: ', $load);
$loadavg = explode(',', $load[1]);
}

Change that section to:

else
{
if(function_exists("exec") == 1)
{
$load = exec('uptime');
$load = split('load averages?: ', $load);
$loadavg = explode(',', $load[1]);
}
else
{
return 0;
}
}

Please let me know if that solves your problem.

Chris