Jim Carlock schreef:
> Something must have changed recently. Not sure what it is though.
>
> Pages are now automagically doing the magic_quotes for some odd
> reason which sounds like a PHP issue, but I've not convinced my-
> self of that yet.
>
> I've recently added mod_perl to the Apache server, running Apache
> 2.29. But I'm not convinced that it's a mod_perl issue, although
> I did notice some hacks coming in last month (2008.November) that
> accessed (or tried to access) perl\lib folders.
>
> Is anyone here willing and/or able to provide some help securing
> a mod_perl installation on Windows?
>
> Maybe I'm just over-reacting to some video driver problems.
>
> The main problem I'm having right at the moment seems to be a
> PHP issue where something is changing spaces to the %20 and I
> have NOT yet figured out what exactly is causing that issue.
>
Hi,
Which spaces get translated to %20 WHERE excactly?
Does your $_POST[], $_GET[], $_SESSION[] etc contain them while you
don't expect them?
eg:
<form action=.. method="POST">
<input type="text" name="foo" value="test test">
If you post that, will $_POST["foo"] contain 'test%20test'?
Regards,
Erwin Moller
--
"There are two ways of constructing a software design: One way is to
make it so simple that there are obviously no deficiencies, and the
other way is to make it so complicated that there are no obvious
deficiencies. The first method is far more difficult."
-- C.A.R. Hoare