php-install Digest 25 Nov 2002 00:22:17 -0000 Issue 1132

Topics (messages 9229 through 9236):

php installation problem with imap support
        9229 by: zafar

Re: Apache Installation problems
        9230 by: laurent
        9231 by: laurent

Re: Problems when updating to PHP 4.2.3 and Apache 2.043 - variables are ignored
        9232 by: Jim Thome

Warning: session side effect .....
        9233 by: Aaron Axelsen
        9234 by: Rasmus Lerdorf
        9235 by: Aaron Axelsen

Adding mimetype/text
        9236 by: Lawrence Freeman

Administrivia:

To subscribe to the digest, e-mail:
        [EMAIL PROTECTED]

To unsubscribe from the digest, e-mail:
        [EMAIL PROTECTED]

To post to the list, e-mail:
        [EMAIL PROTECTED]


----------------------------------------------------------------------
--- Begin Message ---
hello all
 i already put that question but can't get solution.
i want to install php on linux and courier-imap is running already and when
i configure command of php it give me error of rfc822 and say check imap
installation ,
i reinstall the imap but it can't work
then i dowload the c-client but it also not working either i do mistake with
configuring with c-client.bcz i can't understand the method of c-client
installation.
so guid how i install php with imap support...and also c-client if necessary

thanks.
zafar

--- End Message ---
--- Begin Message ---
Hi,

did someone solve your problem ?
i have php 4.2.3 and apache 2.0.43 on W2K toot
it doesn't work with modules (it your point), so i tryed with ScriptAlias
and in this case installation is fine :
i comment (#) Loadmodule and add the following lines in httpd.conf :

ScriptAlias /php/ "c:/php/"
AddType application-x-httpd-php .php
Action application-x-httpd-php "php/php.exe"

yesssss ! apache is running fine :) but a simple php page generate a "bad
request" answer :(
under command line : php.exe -i works fine -> it seems to be a server side
config problem !

i tried to find help on irc -> nothing right now ...
so i have a look to this discussion mail-list ... keep hanging on ...
thank you for your help


"Bill Hudspeth" <[EMAIL PROTECTED]> a écrit dans le message de news:
[EMAIL PROTECTED]
> Help!
>
> I have installed PHP 4.2.1 and Apache 2.0.43 on my Win2000 machine. The
> Apache server is up and running, but when I add the following line to my
> httpd.conf, the Apache service cannot be run. The referenced directory
> location is where I have installed my PHP dlls. When I comment out the
line,
> I can start the service again. Any help would be appreciated.
>
> LoadModule php4_module c:/winnt/system32/php4apache2.dll
>
> Bill
>
>
>
>
>
>


--- End Message ---
--- Begin Message ---
i've installed a free bundle from nusphere.com
(download here :
http://www.nusphere.com/cgi-bin/nsp.cgi/custsrvc/utils/free_download.htm) -
ooops 69MB ;)

very big but it works fine with PHP 4.0.6, Apache 1.3.23 with mod_perl and
mod_ssl, MySQL 3.23.49 and much more ...
know what, i'm happy :)
Thank U Nupshere.com

"Bill Hudspeth" <[EMAIL PROTECTED]> a écrit dans le message de news:
[EMAIL PROTECTED]
> Help!
>
> I have installed PHP 4.2.1 and Apache 2.0.43 on my Win2000 machine. The
> Apache server is up and running, but when I add the following line to my
> httpd.conf, the Apache service cannot be run. The referenced directory
> location is where I have installed my PHP dlls. When I comment out the
line,
> I can start the service again. Any help would be appreciated.
>
> LoadModule php4_module c:/winnt/system32/php4apache2.dll
>
> Bill
>
>
>
>
>
>


--- End Message ---
--- Begin Message ---
http://www.php.net/manual/en/security.registerglobals.php

>>> "Axel Heck" <[EMAIL PROTECTED]> 11/24/02 03:25 AM >>>
Hi there,

I´ve updated my local testing system on windows 2000 to php 4.2.3 and Apache
2.043

Everything seems to work proper, until one big problem:

When I'm accessing a php-site, (f.e. tinypr/opelhauser/index.php) the script
ist parsed propperly and the site is shown correct. Whenever now a variable
is delivered to the same script (f.e. tinypr/opelhauser/index.php?todo=1)
this variable is not used by php, so that the page is shown again without
using the variable value.

Is this problem known by anyone and is there a fast and simple solution ?

With the earlier combination (PHP 4.2.2. and Apache 2.039) this all have
worked propperly!

Thanks in advance,

Axel


-- 
PHP Install Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


--- End Message ---
--- Begin Message ---
I compiled and installed php 4.3 dev last night and now I get this error
on some scripts:

Warning: Your script possibly relies on a session side-effect which
existed until PHP 4.2.3. Please be advised that the session extension
does not consider global variables as a source of data, unless
register_globals is enabled. You can disable this functionality and this
warning by setting session.bug_compat_42 or session.bug_compat_warn to
off, respectively. in Unknown on line 0

I edited the php.ini file as follows:

session.bug_compat_42 = 0
session.bug_compat_warn = 1

I restarted apache, and the warning is still there.  How do I hide this
warning?  Thanks!

---
Aaron Axelsen
AIM: AAAK2
Email: [EMAIL PROTECTED]
URL: www.amadmax.com
 
"It said, ""Insert disk #3,"" but only two will fit!"
"One picture is worth 128K words."


--- End Message ---
--- Begin Message ---
> I edited the php.ini file as follows:
>
> session.bug_compat_42 = 0
> session.bug_compat_warn = 1
>
> I restarted apache, and the warning is still there.  How do I hide this
> warning?  Thanks!

Well, you set "session.bug_compat_warn = 1" which turns on the warning.
You probably want:

session.bug_compat_42 = 1
session.bug_compat_warn = 0

-R

--- End Message ---
--- Begin Message ---
I tried that .. Still no change though, the warning still appears .. I
am using the php.ini file located at the path accoring to what my
phpinfo.php file states.

---
Aaron Axelsen
AIM: AAAK2
Email: [EMAIL PROTECTED]
URL: www.amadmax.com
 
"It said, ""Insert disk #3,"" but only two will fit!"
"One picture is worth 128K words."


-----Original Message-----
From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, November 24, 2002 2:53 PM
To: Aaron Axelsen
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP-INST] Warning: session side effect .....


> I edited the php.ini file as follows:
>
> session.bug_compat_42 = 0
> session.bug_compat_warn = 1
>
> I restarted apache, and the warning is still there.  How do I hide 
> this warning?  Thanks!

Well, you set "session.bug_compat_warn = 1" which turns on the warning.
You probably want:

session.bug_compat_42 = 1
session.bug_compat_warn = 0

-R


-- 
PHP Install Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--- End Message ---
--- Begin Message ---
how do I add the text mime type to the HTTP_ACCEPT? so I can upload text
files using a form and the copy command?

cheers
Lawrence


--- End Message ---

Reply via email to