Hello all.
I've just found an error_log file at the root of my website with a lot of lines like this:
[30-Nov-2006 01:15:05] PHP Warning: Zend Optimizer for PHP 4.4.x cannot be found (expected at '/usr/local/Zend/lib/Optimizer-2.5.7/php-4.4.x/ZendOptimizer.so') - try reinstalling the Zend Optimizer in Unknown on line 0
Matching dates and times with the server access log shows that the errors come from the only php script up there. The script is simplicity itself:
<?php
$msg= "Name:\t$name\n";
$msg .="Phone:\t$phone\n";
$msg .="E-mail:\t$posta\n\n";
$msg .="Details:\t$message\n\n";
$mailhead = "From: My Website\n";
$mailhead .= "Reply-To: $posta\n\n";
mail("me@domain.com", "Message from website", $msg, $mailhead);
?>
<html>
...Some plain HTML saying thanks for writing...
</html>
The whole scripts work OK, I just can't understand what is Zend Optimizer doing 'round here. None of the other websites I have on the same server (cpanel17) has such an error log.
Any hint?
I've just found an error_log file at the root of my website with a lot of lines like this:
[30-Nov-2006 01:15:05] PHP Warning: Zend Optimizer for PHP 4.4.x cannot be found (expected at '/usr/local/Zend/lib/Optimizer-2.5.7/php-4.4.x/ZendOptimizer.so') - try reinstalling the Zend Optimizer in Unknown on line 0
Matching dates and times with the server access log shows that the errors come from the only php script up there. The script is simplicity itself:
<?php
$msg= "Name:\t$name\n";
$msg .="Phone:\t$phone\n";
$msg .="E-mail:\t$posta\n\n";
$msg .="Details:\t$message\n\n";
$mailhead = "From: My Website\n";
$mailhead .= "Reply-To: $posta\n\n";
mail("me@domain.com", "Message from website", $msg, $mailhead);
?>
<html>
...Some plain HTML saying thanks for writing...
</html>
The whole scripts work OK, I just can't understand what is Zend Optimizer doing 'round here. None of the other websites I have on the same server (cpanel17) has such an error log.
Any hint?
Comment