[PHP-INSTALL] Re: Can you please remove me from the list.

2003-10-24 Thread Michael Mauch
Bhavin Desai wrote:

> Urgent, can you please unsubscribe me from the list.

Hmm - doesn't  work for you?

Regards...
Michael


[PHP-INSTALL] please remove me from the list

2003-10-24 Thread BusternCracker
Regards
<>

[PHP-INSTALL] RE: Configuring GD for Windows: imagerotate function

2003-10-24 Thread Dillon, John
Should I upgrade to 4.3.3 to fix this problem...:

Code lines:
line 161> $file=$img[$y];
line 162> $src_img=ImageCreateFromJPEG($file);

give error:

"imagecreatefromjpeg: Unable to open 'images/R0012448.JPG' for reading in
c:\program files\apache group\apache\htdocs\pics\apics3.php on line 162"

and it fails on:
$src_img=ImageRotate($src_img,90,0);

with 'unknown function'.

The manual says:
"
the function imagerotate() is available when php is built with bundled gd.
So this function won't be available when you (or your webhosting) build the
php gd support with external gd packages, either from the distribution CD or
from www.boutell.com.

built php using '--with-gd', not '--with-gd=DIR' to have this function
working.

This behaviour exist up to php-4.3.3.
"

I have php 4.3.28.  So is it a solution to change to 4.3.3 as there is
something about "Upgraded the bundled GD library to version GD 2.0.15" in
the announcements: http://www.php.net/release_4_3_3.php.

Apache httpd.conf says:
 
LoadModule php4_module c:/PHP/php-4.3.2-Win32/sapi/php4apache.dll
 
php_gd2.dll (773KB 27/08/02) is installed.

Regards,
John


   http://www.cantor.com
CONFIDENTIAL: This e-mail, including its contents and attachments, if any, are 
confidential. If you are not the named recipient please notify the sender and 
immediately delete it. You may not disseminate, distribute, or forward this e-mail 
message or disclose its contents to anybody else. Copyright and any other intellectual 
property rights in its contents are the sole property of Cantor Fitzgerald.
 E-mail transmission cannot be guaranteed to be secure or error-free. The sender 
therefore does not accept liability for any errors or omissions in the contents of 
this message which arise as a result of e-mail transmission.  If verification is 
required please request a hard-copy version.
 Although we routinely screen for viruses, addressees should check this e-mail and 
any attachments for viruses. We make no representation or warranty as to the absence 
of viruses in this e-mail or any attachments. Please note that to ensure regulatory 
compliance and for the protection of our customers and business, we may monitor and 
read e-mails sent to and from our server(s). 

For further important information, please read the  Important Legal Information and 
Legal Statement at http://www.cantor.com/legal_information.html


RE: [PHP-INSTALL] RE: Configuring GD for Windows: imagerotate fun ction

2003-10-24 Thread Dillon, John
[re-sending this in case list is back up]

Should I upgrade to 4.3.3 to fix this problem...:

Code lines:
line 161> $file=$img[$y];
line 162> $src_img=ImageCreateFromJPEG($file);

give error:

"imagecreatefromjpeg: Unable to open 'images/R0012448.JPG' for reading in
c:\program files\apache group\apache\htdocs\pics\apics3.php on line 162"

and it fails on:
$src_img=ImageRotate($src_img,90,0);

with 'unknown function'.

The manual says:
"
the function imagerotate() is available when php is built with bundled gd.
So this function won't be available when you (or your webhosting) build the
php gd support with external gd packages, either from the distribution CD or
from www.boutell.com.

built php using '--with-gd', not '--with-gd=DIR' to have this function
working.

This behaviour exist up to php-4.3.3.
"

I have php 4.3.28.  So is it a solution to change to 4.3.3 as there is
something about "Upgraded the bundled GD library to version GD 2.0.15" in
the announcements: http://www.php.net/release_4_3_3.php.

Apache httpd.conf says:
 
LoadModule php4_module c:/PHP/php-4.3.2-Win32/sapi/php4apache.dll
 
php_gd2.dll (773KB 27/08/02) is installed.

Regards,
John


   http://www.cantor.com
CONFIDENTIAL: This e-mail, including its contents and attachments, if any,
are confidential. If you are not the named recipient please notify the
sender and immediately delete it. You may not disseminate, distribute, or
forward this e-mail message or disclose its contents to anybody else.
Copyright and any other intellectual property rights in its contents are the
sole property of Cantor Fitzgerald.
 E-mail transmission cannot be guaranteed to be secure or error-free.
The sender therefore does not accept liability for any errors or omissions
in the contents of this message which arise as a result of e-mail
transmission.  If verification is required please request a hard-copy
version.
 Although we routinely screen for viruses, addressees should check this
e-mail and any attachments for viruses. We make no representation or
warranty as to the absence of viruses in this e-mail or any attachments.
Please note that to ensure regulatory compliance and for the protection of
our customers and business, we may monitor and read e-mails sent to and from
our server(s). 

For further important information, please read the  Important Legal
Information and Legal Statement at
http://www.cantor.com/legal_information.html


[PHP-INSTALL] compilation/performance problem on solaris

2003-10-24 Thread Stefan Hortschitz
Hi,

does anybody know why my php on solaris is so terrible slow?
I'm using apache 1.3.28 and php 4.3.3 on solaris 9 with openssl96g and 
postgresql-7.3.2.
My hardware: sun-ultrasparc 1,2ghz dual with 8gb ram

For apache i used this commands to compile:
--
export CFLAGS=' -O2 -mcpu=v9 -mtune=ultrasparc -funroll-loops 
-fexpensive-optimizations -des -Duse64bitall'
export CPPFLAGS=$CFLAGS
export LDDLFLAGS="-mcpu=v9 -m64 -G"
SSL_BASE=/usr/local/openssl ./configure --prefix=/usr/local/apache  
--enable-module=ssl --enable-module=rewrite --enable-module=so
make -j3
--

and this for php:
--
export CFLAGS=' -O2 -mcpu=v9 -mtune=ultrasparc -funroll-loops 
-fexpensive-optimizations -des -Duse64bitall'
export CPPFLAGS=$CFLAGS
export LDDLFLAGS="-mcpu=v9 -m64 -G"
./configure --prefix=/usr/local/php  --enable-module=rewrite 
--enable-module=so --with-xml --with-pgsql=/usr/local/pgsql --with-zlib 
--with-gd --with-apxs=/usr/local/apache/bin/apxs 
--with-config-file-path=/usr/local/apache/conf
--

If i run a simple php-script which builds an array of arrays i need ~3.3 
sec to execute
-- testscript --
   for($x=0;$x<200;$x++)
   {
   for($i=0;$i<2000;$i++)
   {
   $great_dump[] = array(1233,1233,455);
   }
   }
-- testscript --

to compare the speed: my notebook (p4 2.1 ghz/512mb ram/RedHat Linux 2.4 
executes the code in 1.7 seconds
My first try with apache 2, but without any cpp-flags executes the code 
in 4.3 seconds.

Regards,
Stefan


[PHP-INSTALL] Re: please remove me from the list

2003-10-24 Thread Michael Mauch
[EMAIL PROTECTED] wrote:

> [-- multipart/alternative, Encoding 7bit, 0 Zeilen --]
> 
>[-- text/plain, Encoding 7bit, Zeichensatz: US-ASCII, 2 Zeilen --]
> 
> Regards

Doesn't  work for you?

Regards...
Michael


[PHP-INSTALL] concerning apache,mysql,php

2003-10-24 Thread dev_null
hello everyone,
i recently joined and I was wondering whether a few ppl with time could take
alook at a tutorial i have written to install this 3 programs in windows.
like others, it always needs improvement. so anyone care for some
suggestions, comments, improvements, critical analysis, anything to make it
better. please take alook. here is the link
http://www.internetmaster.com/installtutorial
thanks


[PHP-INSTALL] Re: PHP-APACHE-WIN2000

2003-10-24 Thread dev_null
how about looking into my tutorial and see whether it can help you solve
installation issues. :)
http://www.internetmaster.com/installtutorial

"James Synovec" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> OK - I am starting to get frustrated here.
>
> I have installed Apache 1.3.11 win32 and PHP 4.0.2 win32. It has been a
few
> days now.
>
> I can not get the php pages to load. I have followed all of the ideas all
of
> the suggestions I could find from the manual and the online docs. The
apache
> server seems to do ok and my browser has no problems until it tries to
load
> a php page and the page will show blank and the status line will show
> "errors on page".
>
> Could it be that I have the Apache set up as a service wrong? Does it need
a
> user account or is the system account ok?
>
>
> James E. Synovec
> CEO
> Aquila Business Services
> Tel/Fax: 800-290-7906
> [EMAIL PROTECTED]
> www.aquilabusiness.com
>
>


[PHP-INSTALL] Re: How can I install win32PHP4.02 in enviroment of win98+apache1.36

2003-10-24 Thread dev_null
http://news.php.net/article.php?group=php.install&article=12122

"Kennyrocket" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hello everyone,
> I am installing php4.02 for win9x/nt in my system of
> win98, but, my webserver is apache1.36, I couldn't find
> message of this in php's distributed readme file. help me.
> Thanks.
>
> Best regards,
>  Kennyrocket  mailto:[EMAIL PROTECTED]
>
>