[PHP] dbase verify

2002-10-28 Thread Plamen Slavov
Does anyone know if there is a way to tell if a given file is a valid dbase file, using PHP functions ?

[PHP] gd high resolution

2002-05-07 Thread Plamen Slavov
Hi guys, Does anyone have any idea about how can i sav images, using gd functions, with a resolution greater than 72 dpi ? Thanks

[PHP] zip extract

2002-04-12 Thread Plamen Slavov
Hi guys, anyone has an idea about how to extract a zip file on win2k with php i can not use a command line unzip utility because it only says The system cannot execute the specified program. in the apache log I tried to use pclszip class at http://www.phpconcept.net but i can not get it to work

[PHP] MySQL big table process

2001-07-27 Thread Plamen Slavov
Hi guys, I have a big MySQL table - about 300MB I want to get all the records from the table, make certain transformations and write them to a text file (i can not use select into outfile...) the problem is when i type select * from table name the server hangs is there a way that i can

Re: [PHP] execution time

2001-07-27 Thread Plamen Slavov
You can use a standalone compiled PHP version and then You will not need a browser to execute scripts see http://www.php.net/manual/en/install.commandline.php - Original Message - From: Pétur Björn Thorsteinsson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday 27 July 2001 ?.

Re: [PHP] Moving a PHP/MySQL web site ???

2001-07-27 Thread Plamen Slavov
I think that as far as you have the same version of MySQL on both servers, you can simply copy the table files, otherwise you should use mysqldump or something like that - Original Message - From: PHP Junkie [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday 27 July 2001 ?. 5:21

[PHP] exec system passthru

2001-07-09 Thread Plamen Slavov
Sorry if question was asked, but i did not find any information I use Apache/1.3.20 Win32 PHP/4.0.5 on a Windows ME I can run commands built in command.com like dir or cd, using system() or passthru(), but whenever i try to use external command, like pkunzip or gzip, the web server hangs and

Re: [PHP] Serious upload problems

2001-05-04 Thread Plamen Slavov
Did you check if user nobody has write permission for the /tmp directory? - Original Message - From: Hilbert Mostert [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday 04 May 2001 ?. 1:55 PM Subject: [PHP] Serious upload problems Hello all, I have some serious problems with file

[PHP] install LONG_MAX

2001-04-11 Thread Plamen Slavov
Hi all, i try to install e php-4.0.4pl1 on a redhat 6.0 with apache_1.3.19, but when i try to make php i get the following error message: make[1]: Entering directory `/home/plamen/www/php-4.0.4pl1/Zend' /bin/sh ../libtool --silent --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../main

Re: [PHP] Using proxy servers with fsockopen()

2001-04-05 Thread Plamen Slavov
try this $desired_agent="User-Agent: Mozilla/4.0 (compatible; MSIE 4.01; Windows 98)\n"; $datei = fsockopen($proxyaddr, $proxyport, $errno, $errstr,30); if( !$datei ) { echo "proxy not available !"; fclose($resultfile); } else { fputs($datei,"GET $filewanted/ HTTP/1.0\n");

[PHP] ignore_user_abort

2001-03-26 Thread Plamen Slavov
or leaves the page, but this does not happen, instead the script keeps on working. Anyone has any ideas? Plamen Slavov -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e

[PHP] register stop working with a site

2001-02-26 Thread Plamen Slavov
Hi all, i was wondering if someone has any idea about how to register that a client has stopped working with my site and log him/her out? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

[PHP] http_user_agent and proxy

2001-02-09 Thread Plamen Slavov
Hi guys, I have this problem: I am using a script like this to make php use a remote proxy to get pages using a remote proxy: $data1 = fsockopen($proxy, $port, $errno, $errstr); if( !$data1 ) { echo "proxy not available !"; fclose($resultfile); // exit(); } else {

[PHP] test

2001-02-08 Thread Plamen Slavov
test -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]