Re: [PHP] huge PHP file, hardcore processing

2001-04-10 Thread Christian Dechery
At 10:20 11/4/2001 +0900, you wrote: >I think DLL for MS SQL Server will work with Apache for Windows/PHP for >Windows. >There are many basic functions are not supported under PHP for Windows, but it >work fine for me other than those missing functions. If your server may have >multiple IP addres

Re: [PHP] huge PHP file, hardcore processing

2001-04-10 Thread Michael Kimsal
Yes - look at freetds.org. > > sorry... I did not make myself clear. I don't intend to switch from IIS to > Apache, cuz I can't. The server runs a whole site in ASP... this is the > only PHP script that runs on it, I was thinking more of running it in > Linux... can I access a MS SQL server fro

Re: [PHP] huge PHP file, hardcore processing

2001-04-10 Thread Christian Dechery
At 12:06 10/4/2001 +0900, you wrote: >You should be able to use ODBC under UNIX. I guess. > >Source code for MS SQL Server modules seems it does not compile under UNIX. I >guess it may work with Apache under Windows. > > From mssql_win32_howto.txt in PHP source. > >24 Start Visual Studio, load ph

Re: [PHP] huge PHP file, hardcore processing

2001-04-09 Thread Plutarck
Note: if you hit the stop button and php doesn't stop, that probably means it's either in the middle of a query and can't stop, or more likely it means that "ignore.user.abort" has been set to true. Turn off ignore user abort in your php.ini, and that should solve your problem. As for accessing

Re: [PHP] huge PHP file, hardcore processing

2001-04-09 Thread Christian Dechery
At 18:40 9/4/2001 -0700, you wrote: >On 4/9/01 6:38 PM, "Christian Dechery" <[EMAIL PROTECTED]> wrote: > > > At 10:23 10/4/2001 +0900, you wrote: > >> IIS ISAPI(PHP4.0.4pl1 and PHP4.0.5RC1) does not work well for me and > too many > >> problems. So I switched to Apache. However, ob_implicit_flush

Re: [PHP] huge PHP file, hardcore processing

2001-04-09 Thread Lindsay Adams
On 4/9/01 6:38 PM, "Christian Dechery" <[EMAIL PROTECTED]> wrote: > At 10:23 10/4/2001 +0900, you wrote: >> IIS ISAPI(PHP4.0.4pl1 and PHP4.0.5RC1) does not work well for me and too many >> problems. So I switched to Apache. However, ob_implicit_flush() seems slows >> things down on W2K/Apache/PHP

Re: [PHP] huge PHP file, hardcore processing

2001-04-09 Thread Christian Dechery
At 10:23 10/4/2001 +0900, you wrote: >IIS ISAPI(PHP4.0.4pl1 and PHP4.0.5RC1) does not work well for me and too many >problems. So I switched to Apache. However, ob_implicit_flush() seems slows >things down on W2K/Apache/PHP4.0.4RC1 also. (ob_implicit_flush() may slow >things >down, but it's more

Re: [PHP] huge PHP file, hardcore processing

2001-04-09 Thread Yasuo Ohgaki
IIS ISAPI(PHP4.0.4pl1 and PHP4.0.5RC1) does not work well for me and too many problems. So I switched to Apache. However, ob_implicit_flush() seems slows things down on W2K/Apache/PHP4.0.4RC1 also. (ob_implicit_flush() may slow things down, but it's more apparent than my Linux/Apache box) You may

[PHP] huge PHP file, hardcore processing

2001-04-09 Thread Christian Dechery
I have a huge (at least I think, for a script anyway) PHP script... it is over 1.000 lines of code. And it updates (do an entire DELETE-ALL / LOAD-ALL) an SQL Server database (over 35MB). It runs for over an hour (sometimes 2hs)... and I divided it into steps... so each step is a function in th