- Messages
- 3,534
- Reaction score
- 196
- Points
- 63
a PHP script that has had NO issues from Oct 30, 2014 - started throwing this error today
[ Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 18446744071878668619 bytes) in... ]
this test PHP script
throws this error:
[ Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 18446744071878668595 bytes) in... ]
[ Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 18446744071878668619 bytes) in... ]
this test PHP script
PHP:
<?php
error_reporting(E_ALL);
$to = "(Email address in my account)";
$subject = "Propagation Checker";
$txt = "DNS lookup to check a domain";
$headers = "From: " . $to . "\r\n";
if (mail($to,$subject,$txt,$headers))
{
print "Sent<br>\n";
}
else
{
print "Error<br>\n";
}
?>
[ Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 18446744071878668595 bytes) in... ]