Re: [PHP] php cli memory leak error

2009-02-19 Thread Jochem Maas
Lewis Wright schreef: > 2009/2/19 Jochem Maas : >> Thodoris schreef: seems to work fine here. What are your php.ini (memory related) settings? run: /usr/local/bin/php --ini and get the location of the php.ini file that is getting used. Check o

Re: [PHP] php cli memory leak error

2009-02-19 Thread Lewis Wright
2009/2/19 Jochem Maas : > Thodoris schreef: >>> >>> >>> seems to work fine here. >>> >>> What are your php.ini (memory related) settings? >>> >>> run: >>> >>> /usr/local/bin/php --ini >>> >>> and get the location of the php.ini file that is getting used. Check >>> our the memory settings in that f

Re: [PHP] php cli memory leak error

2009-02-19 Thread Jochem Maas
Thodoris schreef: >> >> >> seems to work fine here. >> >> What are your php.ini (memory related) settings? >> >> run: >> >> /usr/local/bin/php --ini >> >> and get the location of the php.ini file that is getting used. Check >> our the memory settings in that file. >> >> >> >> > > Some general

Re: [PHP] php cli memory leak error

2009-02-17 Thread Thodoris
seems to work fine here. What are your php.ini (memory related) settings? run: /usr/local/bin/php --ini and get the location of the php.ini file that is getting used. Check our the memory settings in that file. Some general options: max_input_time = 60 max_execution_time = 120 memo

Re: [PHP] php cli memory leak error

2009-02-17 Thread Jim Lucas
Thodoris wrote: > >> Thodoris wrote: >> >>> Hi gang, >>>I am trying to run a simple PHP script using the cli and I get a >>> weird memory leak error. The script goes like this: >>> >>> #! /usr/local/bin/php >>> >> // Get command line options >>> $options = getopt("f:d:o:"); >>> >>> // Print

Re: [PHP] php cli memory leak error

2009-02-17 Thread Thodoris
Thodoris wrote: Hi gang, I am trying to run a simple PHP script using the cli and I get a weird memory leak error. The script goes like this: #! /usr/local/bin/php The problem is that when I run the script I get this error: Script: './bcom.php' /usr/ports/lang/php5/work/php-5.2.8/main

Re: [PHP] php cli memory leak error

2009-02-17 Thread Jim Lucas
Thodoris wrote: > Hi gang, >I am trying to run a simple PHP script using the cli and I get a > weird memory leak error. The script goes like this: > > #! /usr/local/bin/php > // Get command line options > $options = getopt("f:d:o:"); > > // Print them out > print_r($options); > > // Clear t