southbeach
Programmer
I have written a PHP script to print our custom forms. I am not having any problems out my development box but it gives me an error in the operation box.
The error reads
My development box is nothing more than a DELL laptop with 1GB of RAM. My operation box is a DELL PowerEdge 6850 with 32GB of RAM. What is the deal?
Both boxes are running same version of PHP 5.2.5. Dev box is running Apache 2.2.6 and operation box is running 2.2.8. Dev box is running XP Pro and operation is running W-2003 R2 64bit.
I have changed my php.ini
The error seems to be pointing to this line:
Thank you all for your assistance!
The error reads
Code:
Fatal error: Out of memory (allocated 1048576) (tried to allocate 4294967295 bytes) in G:\wamp\[URL unfurl="true"]www\magno\releaseprint.php[/URL] on line 270
My development box is nothing more than a DELL laptop with 1GB of RAM. My operation box is a DELL PowerEdge 6850 with 32GB of RAM. What is the deal?
Both boxes are running same version of PHP 5.2.5. Dev box is running Apache 2.2.6 and operation box is running 2.2.8. Dev box is running XP Pro and operation is running W-2003 R2 64bit.
I have changed my php.ini
Code:
;memory_limit = 128M ; Maximum amount of memory a script may consume (128MB)
memory_limit = 6144M ; Maximum amount of memory a script may consume (128MB)
The error seems to be pointing to this line:
Code:
$handle = printer_open("\\\\printserv\KONICA_MIAMI");
Thank you all for your assistance!