Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[OT] Apache mod_proxy und Umlaute [solved]
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) Diskussionsforum
View previous topic :: View next topic  
Author Message
tacki
Guru
Guru


Joined: 29 Jun 2002
Posts: 418
Location: Germany

PostPosted: Mon Oct 20, 2003 6:26 am    Post subject: [OT] Apache mod_proxy und Umlaute [solved] Reply with quote

Moin,

ich hab hier einen zentralen Apache2, auf den alle Anfragen aus dem Inet eingehen. Bei bestimmten Hostnames leite ich die anfrage per Proxy-Request weiter an einen anderen internen Server:

Code:
<VirtualHost *>
Servername mail.xxx.de
ProxyPass / http://internerxxx:80/
ProxyPassReverse / http://internerxxx:80/
</VirtualHost>


Das ganze Funktioniert auch wunderbar, nur kommt der Proxy mit den Umlauten nicht zurrecht... Das heisst, alle Umlaute auf der Seite werden 'verkrüppelt' dargestellt. So wird aus 'können' ein "können"....

Ich benutze Apache 2.0.47

Kann mir da jemand helfen?

Grüße

tacki


Last edited by tacki on Mon Oct 20, 2003 8:41 am; edited 1 time in total
Back to top
View user's profile Send private message
yhirmikq
n00b
n00b


Joined: 20 Oct 2003
Posts: 14

PostPosted: Mon Oct 20, 2003 7:37 am    Post subject: Reply with quote

Hi,

ich verstehe das Problem nicht ganz. Wo sind denn die Umlaute? In HTML heisst ein ö eigentlich &ouml; Damit sollte es dann keine Probleme geben.

- Sebastian
Back to top
View user's profile Send private message
tacki
Guru
Guru


Joined: 29 Jun 2002
Posts: 418
Location: Germany

PostPosted: Mon Oct 20, 2003 7:43 am    Post subject: Reply with quote

der fehler kann nicht im quellcode liegen, denn der interne server hat auch keine probleme mit umlauten wenn ich intern drauf geh... (gleiches client-system - laptop)
Back to top
View user's profile Send private message
tacki
Guru
Guru


Joined: 29 Jun 2002
Posts: 418
Location: Germany

PostPosted: Mon Oct 20, 2003 8:41 am    Post subject: Reply with quote

Das Problem wurde gelöst:

Als AddDefaultCharset in der commonapache2.conf war ISO-8859-1 eingestellt. Da die Seite aber als UTF-8 codiert ist, hat apache beim 'holen' der Seite die Umlaute zerhäckselt.

also Browser -> Firewall -> Apache2 (ISO-8859-1) -> mod_proxy -> Website (UTF-8)

Code:
<VirtualHost *>
        Servername mail.xxx.de
        ProxyPass / http://internerxxx:80/
        ProxyPassReverse / http://internerxxx:80/
        [b]AddDefaultCharset UTF-8[/b]
</VirtualHost>


das hat das Problem behoben... Die restlichen Seiten die von diesem Apache gehandelt werden, laufen als ISO-8859-1.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) Diskussionsforum All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum