|
|
| |
1. Fatal error: ...bytes exhausted at (null):0 |
|
Reply |
|
|
 John | 2005-04-17 12:56:11 |
Fatal error: Allowed memory size of 16777216 bytes exhausted at (null):0 (tried to allocate 57079 bytes) in /project/BmpCrypt_Class.php on line 223
server: linux suse 8.1
RAM:
408MB (total)
204MB (free)
$fileToEncrypt: 2,17KB
$fileCarrier : 55KB |
| |
2. Re: Fatal error: ...bytes exhausted at (null):0 |
|
Reply |
|
|
 Manuel Lemos | 2005-04-21 14:28:36 - In reply to message 1 from John |
That means that the code exceeded the limit of use of memory set in the php.ini to 16MB.
You need to increase the memory_limit option in your environement php.ini file. |
|