Re: [PHP-WIN] PHP5 Access Violation

2004-07-15 Thread Oliver John V. Tibi
Hi Neil! I'm not sure but this could be a IIS specfic flaw, since by default IIS always authenticates a web client using Windows Authentication. Try creating a new virtual host and disable Windows Authenticatino for that specific site. Regards, O.J. -- Running 'ojtibi' on '127.0.0.1' (BATCH_OPT

Re: [PHP-WIN] PHP5 ISAPI Extensions

2004-07-15 Thread johne59
Thanks for the help and information. I did have the extension_dir properly set in the php.ini file. And I was restarting the service with every change I made. What I finally did, that appeared to help was: I added 'full/path/to/php' to my environment PATH variable and then rebooted the system. As A

Re: [PHP-WIN] PHP + ODBC + Ingres_II

2004-07-15 Thread php_beginner
Hi Robert, It works fine. You saved my life because I was going crazy with this problem and now I am going to keep learning php. Thanks once more, Mauro - Original Message - From: "Robert Twitty" <[EMAIL PROTECTED]> To: "php_beginner" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Th

Re: [PHP-WIN] PHP5 ISAPI Extensions

2004-07-15 Thread Frank M. Kromann
PHP needs to know where the extensions are located, and when you make changes to php.ini you have to restart the web server in order for the changes to take place. Under ISAPI the php.ini file is only read during startup and not on each page reqyues as is the case with CGI. Getting php to know whe

RE: [PHP-WIN] PHP5 ISAPI Extensions

2004-07-15 Thread Gerardo Rojas
I've had similiar problems loading extensions when running the ISAPI version. My fix was to put them in Windows directory. -- Gerardo S. Rojas mailto: [EMAIL PROTECTED] -Original Message- From: johne59 [mailto:[EMAIL PROTECTED] Sent: Thursday, July 15, 2004 4:08 PM To: [EMAIL PROTECTE

Re: [PHP-WIN] PHP5 ISAPI Extensions

2004-07-15 Thread johne59
Frank, That looks good on paper, but... I am loading the extension from php.ini as you describe. When I run the site with php-cgi.exe, running phpinfo() shows me that gd is installed. When I run the site with php5isapi.dll and then run phpinfo() it doesn't appear to be loaded. I have copied the ph

Re: [PHP-WIN] PHP5 ISAPI Extensions

2004-07-15 Thread Frank M. Kromann
When you use ISAPI you can only load extensions from php.ini with the line extension=php_gd2.dll When using CGI, FastCGI or CLI you can load extensions from the script with code like dl("php_gd2.dll"); - Frank > I am using w2k3 with iis6 and all of the reported "hotfixes". > I have just instal

[PHP-WIN] Did the exec function change between php 4.3.4 and 4.3.7?

2004-07-15 Thread Daniel Gaddis
I have a script that broke after upgrading php 4.3.4 to 4.3.7 Did the exec function change between php 4.3.4 and 4.3.7? With 4.3.4 exec seems to return output, with 4.3.7 exec does not seem to return output. For example, I ran a batch file date.bat from the php command line interface as shown be

[PHP-WIN] PHP5 ISAPI Extensions

2004-07-15 Thread johne59
I am using w2k3 with iis6 and all of the reported "hotfixes". I have just installed PHP5 and have successfully configured everything to work correctly using the php-cgi.exe configuration. However, I would like to use the php5isapi.dll configuration. The only problem I seem to have is getting the ph

Re: [PHP-WIN] PHP + ODBC + Ingres_II

2004-07-15 Thread Robert Twitty
You may have better luck with ODBTP. You can get it at http://odbtp.sourceforge.net. Also, the crashes may be due to the fact that the free ODBC driver is not thread-safe. If this is the case, then you should use odbtp_sconnect() instead of odbtp_connect() to connect to the database. -- bob On

FW: [PHP-WIN] PHP5 Access Violation

2004-07-15 Thread N . A . Morgan
Some further information, I was using the loopback IP 127.0.0.1 and getting the access violation. if I use localhost, this does not happen. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 15 July 2004 10:05 To: [EMAIL PROTECTED] Subject: [PHP-WIN] PHP5 Access V

[PHP-WIN] PHP5 Access Violation

2004-07-15 Thread N . A . Morgan
Guys, I have installed the new PHP5.0 binary release on XP Professional with IIS 5 (running the php5isapi.dll module). All appears fine except for an error message [PHP has encountered an Access Violation at 013E73CD] appearing at the bottom of each page. Can anyone help resolve this, or is it a

[PHP-WIN] [PHP-mysql]Problems with PHP5

2004-07-15 Thread Ciprian Constantinescu
"Unable to load dynamic library 'C:\php\ext\php_mysql.dll' - The specified procedure could not be found" I have put libmysql.dll in windows\system32 and in c:\php\ext and it still gives me the same message. Please point me to the right direction or tell me where to download from a good "libmys

Re: [PHP-WIN] Re: PHP 5.0.0 Released!

2004-07-15 Thread Dave Wilcock
Thanks for that ... using ISAPI instead of CGI worked first time. However (there is always a however, aint there?), PHP executes the pages OK, but at the bottom of each page, I receive this message: "PHP has encountered an Access Violation at 010173CD" Anyone else? Permissions, perhaps? "Frank M