Re: [PHP] php temporary files

2005-02-22 Thread Péntek Imre
2005. feb 22. 05.17 dátummal Marek Kilimajer wrote: > You need to set enviroment variables $TMPDIR and $TMP. I'm not sure > which one of these are used by those functions, but you can safely > change both. Thanks for your kind help. -- With regards: Ifj. Péntek Imre E-mail: [EMAIL PROTECTED] -- P

Re: [PHP] php temporary files

2005-02-22 Thread Péntek Imre
2005. február 21. 21.24 dátummal dan ezt írta: > I'm not sure if PHP works this way, but did you completely shut down > Apache and then restart it after making these changes? Yes I did. -- Üdvözlettel: Ifj. Péntek Imre E-mail: [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] php temporary files

2005-02-21 Thread Marek Kilimajer
Péntek Imre wrote: Hi, Now I want to see all my temporary php files in /tmp/php. I made these settings: [EMAIL PROTECTED]:~# cat /etc/php.ini |grep /tmp/php upload_tmp_dir =/tmp/php session.save_path = "/tmp/php" soap.wsdl_cache_dir="/tmp/php" [EMAIL PROTECTED]:~# But when I use gzopen() or gzfile

Re: [PHP] php temporary files

2005-02-21 Thread dan
Péntek Imre wrote: Hi, Now I want to see all my temporary php files in /tmp/php. I made these settings: [EMAIL PROTECTED]:~# cat /etc/php.ini |grep /tmp/php upload_tmp_dir =/tmp/php session.save_path = "/tmp/php" soap.wsdl_cache_dir="/tmp/php" [EMAIL PROTECTED]:~# But when I use gzopen() or gzfile

[PHP] php temporary files

2005-02-21 Thread Péntek Imre
Hi, Now I want to see all my temporary php files in /tmp/php. I made these settings: [EMAIL PROTECTED]:~# cat /etc/php.ini |grep /tmp/php upload_tmp_dir =/tmp/php session.save_path = "/tmp/php" soap.wsdl_cache_dir="/tmp/php" [EMAIL PROTECTED]:~# But when I use gzopen() or gzfile() the temporary f

Re: [PHP] Temporary Files

2003-03-23 Thread Jason Sheets
Rather than writing the code to a temporary file and then including the file why not just use eval() on the code fetched from the database (http://www.php.net/eval)? Otherwise you could use generate a unique filename yourself rather than using tmpfile. $filename = md5(uniqid()); Of course you

[PHP] Temporary Files

2003-03-23 Thread Lars Tvedt
Im trying to create a way of storing php scripts in a mySQL database, and then execute them using temporary files as executable script buffers.. The database retrieval is working fine but the file does not... Ive got a table with 4 fields: execID, execName, execDesc and execProc The last one conta