Does the new PHP5 force globals off? Because even if I turn on globals, my
script still does nothing =\.
"Seung Hwan Kang" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> you may need to change php.ini
>
> register_globals = off
>
> eg. $_SERVER["PHP_SELF"]
>
> to
>
> register_global
John
Have you checked the setup of your session management? Check the
setting as reflected in the output from a phpinfo() command. for
example, make sure your session storage path is valid etc. (normally
/tmp if you haven't changed it)
Also check how php is set to access variables. (Look at the
OK, I solved it.
It seems that I **HAVE TO**, **MUST**, **NO CHOICE** place my php.ini in
C:\WINNT (for NT and 2k) or PHP will not find it. This is a hardcoded path
done at compile time.
So, since no ini file, PHP was running on default values, thus it could not
find DB.php since the default path
1. I get this error when trying to run php from a command line.
PHP Warning: Unknown(): Unable to load dynamic library
'N:\php\extensions\msql.dll' - The specified module could not be found.
in Unknown on line 0
2. I get this error trying to pull data from and ftp server:
Warning: file(ft
Hello all,
I am new to php in general and am trying to set up a user authentification system
with mysql. The registration page works well and sends all of the data to the
appropriate table in mysql. However, when I try to get the registered user to log in
and start a session, the system
php-install Digest 5 Jul 2003 13:23:37 - Issue 1449
Topics (messages 11219 through 11223):
Re: new install of PEAR on 2k
11219 by: jsWalter
Re: How do I compiling MySQL Clients on Windows
11220 by: AzN
11221 by: AzN
11222 by: Seung Hwan Kang
11223 by:
On Fri, 2003-07-04 at 21:19, AzN wrote:
> I have yet to try MySQL on PHP5 because I cant use any of my scripts that
> use MySQL!
Sure you can! The latest snapshots include a MySQL client.
Cheers,
Marco
>
> "Seung Hwan Kang" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> > Hel