Hi all!
I have two major problems after installing RH9 over my RH7.3,
The new apache had many problems with the configuration, Most of which I solved using the apache-online documentation.
I am left with two problems unsolved:
1) Hebrew pages are sent as "western" encoding...
the text is right but for some reason the browser sets itself to "western"
instead of Hebrew.
if I set it to "Hebrew" its fine (until I refresh or click a link).
I can think of two options to solve this:
a) bad solution: embed a "encoding" tag in every HTML file (did not work, I
might had a mistake in the tag)
b) fix the apache configuration (I have no idea what parameters are causing
this)
Just comment the default encoding in httpd.conf to make it use the meta tag in your files. HTML headers have higher priority than meta tags.
Thats because register_globals is turned off by default since php4.1 or so.
2) the 2nd problem is that my PHP script does not recognize parameters, like test.php?active=true&bad=good the parameters $active & $bad are both empty!!!! (WHY?!? OH WHY!!!!??)
If you can, you should use the super globals $_GET, $_POST, etc instead. Or you can enable it in php.ini.
Thanks, As you can probably see - I am very frustrated.
Tal Achituv.
================================================================= To unsubscribe, send mail to [EMAIL PROTECTED] with the word "unsubscribe" in the message body, e.g., run the command echo unsubscribe | mail [EMAIL PROTECTED]