RE: [PHP-WIN] HOW DO I FIND GD LIB ENABLED

2003-11-11 Thread Nick Baker
Hi, I suspect you need to check one more configuration parameter in your PHP.ini - the 'extension_dir' parameter needs to point to the directory where the extension dll is located. I hope this helps. Nick -Original Message- From: S F Alim [mailto:[EMAIL PROTECTED] Sent: Wednesday, 12

php-windows Digest 12 Nov 2003 05:27:55 -0000 Issue 1995

2003-11-11 Thread php-windows-digest-help
php-windows Digest 12 Nov 2003 05:27:55 - Issue 1995 Topics (messages 22070 through 22075): Re: Problem with Socket and CPU usage! 22070 by: Eric COLINET Please help ! 22071 by: Lawrence 22072 by: C-omputerSolutions Webmaster Re: HOW DO I FIND GD LIB ENABLED

Re: FW: [PHP-WIN] HOW DO I FIND GD LIB ENABLED

2003-11-11 Thread toby z
> Ok I couldn't find it in my phpinfo() output. I did find the file > in > "c:\php\..." and also I found extension=php_d2.dll syntax in > php.ini but > there is semi colon (;) before it. yeah ofcourse there is a semi-colan means it commented out ! ! ! ! > Even I remove (;) semi colon from

[PHP-WIN] Thanks so much !

2003-11-11 Thread Lawrence
$cartcontents = 0 ; // if value of $cartcontents is defined , it will announce undefined $cartcontents $i = 1 ; while ( $i <= $_SESSION["productlist"] ) ( $cartcontents = "$cartcontents".$_SESSION["cart_m$i"].""; // this is my correction //$cartcontents = "$cartcontents$_SESSION[\"cart_m$i\"]";

FW: [PHP-WIN] HOW DO I FIND GD LIB ENABLED

2003-11-11 Thread S F Alim
Hi, Ok I couldn't find it in my phpinfo() output. I did find the file in "c:\php\..." and also I found extension=php_d2.dll syntax in php.ini but there is semi colon (;) before it. Even I remove (;) semi colon from it, and restart my pc, but still its not in phpinfo() page. Need help quick on th

RE: [PHP-WIN] Please help !

2003-11-11 Thread C-omputerSolutions Webmaster
the main problem is that each time it your script cycles through the different ids, it resets the header location to the last value received, the echo statement just prints each line as it comes up changed keeping the values you want to show, but the header reference changes every time you continue

[PHP-WIN] Please help !

2003-11-11 Thread Lawrence
// $_SESSION["cart_m"] includes these values : flower01 fruit01 cake01 When I echo $_SESSION["cart_m"] , it look like this $i = 1 ; while ( $i <= $_SESSION["productlist"] ) ( echo $_SESSION["cart_m$i"] ; $i = $i + 1 ; } Result is : flower01 fruit01 cake01 I want to use these values with

Re: [PHP-WIN] Problem with Socket and CPU usage!

2003-11-11 Thread Eric COLINET
Hi, What the timeout of your socket_select ? Because when the timeout is NULL or a big value your script normally 'sleep' when nothing append. Eric At 15:14 11/11/2003, Alex wrote: Hello ALL! I've made an IRC client with DCC support (it uses many sockets) I use socket_select in an infinite loo

php-windows Digest 11 Nov 2003 14:13:31 -0000 Issue 1994

2003-11-11 Thread php-windows-digest-help
php-windows Digest 11 Nov 2003 14:13:31 - Issue 1994 Topics (messages 22068 through 22069): Re: HOW DO I FIND GD LIB ENABLED 22068 by: Frank M. Kromann Problem with Socket and CPU usage! 22069 by: Alex Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTE

[PHP-WIN] Problem with Socket and CPU usage!

2003-11-11 Thread Alex
Hello ALL! I've made an IRC client with DCC support (it uses many sockets) I use socket_select in an infinite loop. All works fine, but the problem is CPU usage. When I start my script CPU-usage rises to 100% and stops there :( So I wander is there any way to optimize the code to lower the CPU usa