[PHP-WIN] Create ZIP file with PHP

2002-09-22 Thread Arthur
Is it possible to create a .zip file using PHP. I am creating a file using PHP, but I need users to easily download that file after it has been created. I tried to have a direct link on a web page, but the files (ie filename.csv) resolves in the browser. I want to original .csv file to be download

php-windows Digest 22 Sep 2002 15:00:04 -0000 Issue 1351

2002-09-22 Thread php-windows-digest-help
php-windows Digest 22 Sep 2002 15:00:04 - Issue 1351 Topics (messages 15933 through 15935): ENCTYPE 15933 by: Kit Kerbel Re: importing data from oracle into Mysql 15934 by: Tracker1 Create ZIP file with PHP 15935 by: Arthur Administrivia: To subscribe to the dige

[PHP-WIN] PHP-NUKE

2002-09-22 Thread Matt Babineau
Can anyone point me to some good overview technical docs about PHP nuke, or could someone email me offlist if you know a lot about PHP-Nuke, I have a few questions to ask. I looked at the PHP nuke site and it was very confusing. Thanks! -- PHP Windows Mailing List (http://www.php.net/) To un

[PHP-WIN] Create Thumbnails from image

2002-09-22 Thread Kjell Hansen
Hi, I'm using a Win2k with php4.1 and I'd like to make some thumbnails from pictures on my disk. I've gotten the impression that it's possible, but I havent' found out just how. I've stumbled across the ImageCopyResized function but it requires a imagehandle(?) to the file copied from. How do I g

[PHP-WIN] Re: Subject: ENCTYPE

2002-09-22 Thread neil smith
Hi - I dont know if this wil help but I found I had to specify the maximum allowable file size as a hidden variable MAX_FILE_SIZE like this : or whatever the biggest file you are prepared to accept is. Are you sure your web server is not configured to accept only GET requests for that directo

Re: [PHP-WIN] Create Thumbnails from image

2002-09-22 Thread Olivier Hubert
Hi, Read up on the image manipulation functions of PHP at http://www.php.net/manual/en/ref.image.php You will need to install the GD library if it's not already installed and once you do you will have access to all the functions described, including the ImageCopyResized function. To read the

[PHP-WIN] Mail tag?

2002-09-22 Thread Codejay
Has anyone experienced a problem with the mail tag after upgrading? My php.ini still has the same path to sendmail and I can't send mail through php anymore. None of my sendmail configuration has changed at all. any ideas? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, vi

[PHP-WIN] open_basedir question

2002-09-22 Thread Dash McElroy
Hello there, I have what should be a simple question: How can I get a script to fail (terminate or exit, whatever) on a failed open_basedir restriction? In other words, if I try to open a file outside of the open_basedir restriction, how do I get the script to stop? This should be simple and I m

Re: [PHP-WIN] open_basedir question (solved)

2002-09-22 Thread Dash McElroy
I feel like a dingbat. The "or die("error message") works fine on the call that flails on the open_basedir restriction. I also put an "@" in front of the failed open_basedir call so the page doesn't have an error message besides what's in my die("blah") call. If there's a better or cleaner way, l

[PHP-WIN] Test

2002-09-22 Thread +Alibi_
Testing - Sorry! __ anthony Shapley ICQ#: 167013817 Current ICQ status: + More ways to contact me __ -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe,

[PHP-WIN] Re: Test

2002-09-22 Thread +Alibi_
Testing 3.. "+Alibi_" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Testing.. > __ anthony > Shapley ICQ#: 167013817 Current ICQ status: + More ways to contact me > ___

[PHP-WIN] Re: Test

2002-09-22 Thread +Alibi_
test 4 testing.. "+Alibi_" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Testing.. > __ anthony > Shapley ICQ#: 167013817 Current ICQ status: + More ways to contact me > __

[PHP-WIN] Re: Test

2002-09-22 Thread +Alibi_
It's right I can stop replying now :D "+Alibi_" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > test 4 > > > testing.. > > > "+Alibi_" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > Testing.. > > _

[PHP-WIN] Re: Test

2002-09-22 Thread +Alibi_
Oh what the hell one more! Anthony Shapley www.ants-resource.com ICQ: 167013817 Yahoo: the_php_coder Msn: [EMAIL PROTECTED] Aim: AntsResource "+Alibi_" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Testing.. > _

[PHP-WIN] Re: using apache on a network

2002-09-22 Thread M.B.
OK, first of all thank you for explaining me. I have one porblem and that is: if I give input the IP of my servercomputer net-card at the "Listen"-option, the apache server closes imidiately after starting up. So I don't knwo what I'm doing wrong, but I can't type that. And if I type the one of on

Re: [PHP-WIN] Mail tag?

2002-09-22 Thread H Marc Bower
I haven't noticed this myself, but I believe I read another post about this - it's something to do with XP (or 2000... don't remember which the poster was commenting on) not having a proper mapping of the sendmail to localhost. I don't remember what he did to solve it, but I'm sure you could find

Re: [PHP-WIN] Mail tag?

2002-09-22 Thread H Marc Bower
Here it is... it was from Court Shrock. Not sure if this is the same situation you're in or not, but it might help. Sorry to bother everyone...found the causeSMTP on IIS5 doesn't bind to 127.0.0.1 by default. Changed php.ini to use the ip address of its interface and the everything worked.

[PHP-WIN] Cookies do not work

2002-09-22 Thread Sjaak
Dear all, I have a Windows2000 server with PHP & IIS5 My customer has written the following script: Openingstijden:"; $query = mysql_query ("SELECT * from openingstijden"); echo ""; echo "Nr.VestigingMaandag "; //$teller = 1; while ($row = mysql_fetch_array ($query)) { echo "".$teller."

php-windows Digest 23 Sep 2002 07:18:56 -0000 Issue 1352

2002-09-22 Thread php-windows-digest-help
php-windows Digest 23 Sep 2002 07:18:56 - Issue 1352 Topics (messages 15936 through 15951): Create Thumbnails from image 15936 by: Kjell Hansen 15939 by: Olivier Hubert PHP-NUKE 15937 by: Matt Babineau Re: Subject: ENCTYPE 15938 by: neil smith Mail tag?