Re: [PHP-INST] Re: apache2 whith php 4.2.0 and mysql

2002-04-26 Thread Christopher Riordan
If you read when you make PHP it says DO NOT USE THE INTERNAL libraries that are shipped with mysql, use the ones that come with MySQL. that is to avoid issues with things like this. :) Chris Riordan http://www.hal-9000.net - Original Message - From: "Alessandro Federico" <[EMAIL PROTEC

[PHP-INST] What makes PHP suddenly stop working?

2002-04-26 Thread Michael Chinn
Greetings: I have php (4.0.1 without upload) working on a Redhat 7.1 server with Apache 1.3.23. I have a couple of small web sites working and a php-based bulletin board (phpBB) that works just fine. I use other web site as a php learning site for me :) My question: What would make php sudde

[PHP-INST] Re: apache2 whith php 4.2.0 and mysql

2002-04-26 Thread Alessandro Federico
hi franco, I've compiled apache 2.0.35 (with DSO) and php 4.2.0 with --with-mysql=shared (which uses libmysql from php distribution) and I got the same problem. next I've compiled php with --with-mysql=/path and now everything it's ok! maybe it depends on the version of mysql, I have 3.23.49a.

RE: [PHP-INST] PHP.ini

2002-04-26 Thread Peter Theeuwen
Thank you guys for your help - I'm overwhelmed. Thanks. -Original Message- From: Matt Schroebel [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 10:27 AM To: 'Peter Theeuwen'; [EMAIL PROTECTED] Subject: RE: [PHP-INST] PHP.ini Could it be too big? http://marc.theaimsgroup.com/?l=

RE: [PHP-INST] PHP.ini

2002-04-26 Thread Matt Schroebel
Could it be too big? http://marc.theaimsgroup.com/?l=php-general&m=101729368004277&w=2 max_execution_time is what your looking for, but you'll receive an error message if you hit it. You can set it in a particular script with set_time_limit() see http://www.php.net/manual/en/function.set-time

Re: [PHP-INST] PHP.ini

2002-04-26 Thread Jim Thome
Peter- Best to place the following line in your script, so the max execution time is only changed in that script and not throughout your site. ini_set("max_execution_time", "60"); //60 seconds timeout --Jim >>> "Peter Theeuwen" <[EMAIL PROTECTED]> 04/26/02 11:13AM >>> Basically, when uploadin

Re: [PHP-INST] PHP help needed

2002-04-26 Thread Jim Thome
Seben- Your problem has nothing to do with the file association with notepad. The reason the Apache is prompting you to save/open a php file is because haven't configured Apache to send a .php file to the PHP engine. For more information in fixing this problem, read this... http://us2.php.n

Re: [PHP-INST] PHP.ini

2002-04-26 Thread MikeParton
I don't believe PHP cares about timing out...that's a server function. You probably need to set a longer time out in your Web server (I know you set it in httpd.conf for Apache). Mike - Original Message - From: "Peter Theeuwen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, Ap

Re: [PHP-INST] PHP help needed

2002-04-26 Thread MikeParton
Seben - Open NT Explorer: 1. Click on "View" on the menu bar 2. Click "Options" 3. Click "File Types" tab 4. Find PHP as the file type and change the application association If PHP isn't a listed file type, you'll need to click the "New Type" button, add PHP as a file type and do the associ

[PHP-INST] PHP.ini

2002-04-26 Thread Peter Theeuwen
Basically, when uploading large files it is timing out. Q: Where in the php.ini file can I increase the timeout (or perhaps some other setting) for accommodating the upload of large files? - This obviously is on a W2K box. I searched the archives, but could not find a similar question. I incre

[PHP-INST] PHP help needed

2002-04-26 Thread Griffin, Seben C CONT JW1062
Good morning, I have successful installed Apache server on my NT machine and it test fine, but I made only one mistake. I accidentally associated the .php file extension with notepad. Now every time I try to run the .php files it ask me do I want to open from location or save to disk. If I let it

Re: [PHP-INST] RE: Need help installing PHP.

2002-04-26 Thread John Clark
Am Donnerstag den, 25. April 2002, um 18:25, schrieb Dr CHEUNG Ngai Tseung: > Try renaming your file test.php > > It works from the command line because you are invoking php directly, > but > apache doesn't pass html files to the php module. Yes, well, oops... Now that I've looked closely at

php-install Digest 26 Apr 2002 10:28:30 -0000 Issue 806

2002-04-26 Thread php-install-digest-help
php-install Digest 26 Apr 2002 10:28:30 - Issue 806 Topics (messages 6742 through 6744): Re: Need help installing PHP. 6742 by: Dr CHEUNG Ngai Tseung Re: 4.2.0 wont compile 6743 by: Stephan Wuelfert Re: apache 2 install problems? 6744 by: Stephan Wuelfert Administ

Re: [PHP-INST] apache 2 install problems?

2002-04-26 Thread Stephan Wuelfert
Hi Andy Smith, yep, I get the same behavior. One trick ist to start apache WITHOUT the module, then reinsert it into the httpd.conf and restart apache. Then it MAYBE restart fine. But it is not as stable as I want it. Sometime it crashes. I will still use the 1.3.24 (apache)and 4.1.2 (php) b

[PHP-INST] Re: 4.2.0 wont compile

2002-04-26 Thread Stephan Wuelfert
Hi, you must specify the mysql-installdir: If you installed mysql in /usr/local/mysql then write ./configure --with-mysql=/usr/local/mysql --with-apxs2=/usr/local/apache2/bin/apxs by Stephan Mefistofeles wrote: > I've compile Apache 2.0.35 with --enable-so then > in the php directory done