|
Posted by Jerry Stuckle on 12/17/23 11:56
spark wrote:
> "Jerry Stuckle" wrote
>
>
>>I use the isapi version with Windows, and it works fine. I've been
>
>
> Yup, that's what the hoster suggested. The only thing was, that it too had
> some error: it didn't recognize "mysql_pconnect".
> He fixed that.
>
>
>>If it's configured correctly, the only thing I've seen cause problems is
>>bad PHP code causing an abnormal termination of the PHP thread/process.
>
>
> Because of the new isapi settings he also turned on some error messaging,
> which revealed a mistake (I am not ready to admit that forgetting some
> quotes was a blunder :) ).
> But it sure wasn't the cause of the malfunction.
>
>
>>My suggestion - if it's not your code and your host can't get their end
>>working, find another host.
>
>
> Thanks for the reassuring words.
> We'll wait and see what the isapi setting will do.
> The hosting company has an excellent helpdesk service, they helped me out
> often enough and these guys are alright.
>
> Cheers,
>
> Spark.
>
>
OK, and BTW - I wouldn't recommend using mysql_pconnect() unless you are
doing dozens of connections per second. Otherwise using it keeps a lot
of unused resources allocated all the time.
I have yet to see a website using MySQL where mysql_pconnect() is
worthwhile. I'm sure they exist - but I haven't run into anything
nearly that heavy usage.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
[Back to original message]
|