Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

passed on variables 1

Status
Not open for further replies.

801119

Programmer
Apr 10, 2000
311
SE
Whenever I use swedish chars Å (a with circle above) Ä(a with 2 dots above) and Ö(o with 2 dots above) in url ( it results in an "500 Internal Server Error"

and I can read this error message in apache errorlog file:

[Tue Nov 11 14:44:25 2003] [error] [client 127.0.0.1] (22)Invalid argument: couldn't create child process: 22: php.exe
[Tue Nov 11 14:44:25 2003] [error] [client 127.0.0.1] (22)Invalid argument: couldn't spawn child process: <root>/php/php.exe

it's almost as if php is unable to read those chars, how can I make it work?

My codes look like something a kid wrote
I have absolutely no idea what I am talking about
Somehow I still manage to make it work
 
I recommend that you URL encode the characters in question.

For example, instead of:

Code:
[URL unfurl="true"]http://www.homepage.com?a=äta[/URL]

try

Code:
[URL unfurl="true"]http://www.homepage.com?a=%e4ta[/URL]

Want the best answers? Ask the best questions: TANSTAAFL!!
 
thanks, that did the trick :)

*earned your self a star ;)*

My codes look like something a kid wrote
I have absolutely no idea what I am talking about
Somehow I still manage to make it work
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top