Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: AH01435 windows apache 2.4 xml2enc |
|
Author |
|
Rotor
Joined: 28 Oct 2014 Posts: 9 Location: France,lyon
|
Posted: Thu 13 Nov '14 11:07 Post subject: AH01435 windows apache 2.4 xml2enc |
|
|
Hello,
I get a xml2enc error "AH01435: Charset ISO-8859-1 not supported.". My apache is "Apache/2.4.10 (Win32) Apache Lounge VC10 Server built: Jul 19 2014 11:02:31"
My (last) config for xml2enc is :
Loadfile bin/libapriconv-1.dll
Loadfile bin/zlib1.dll
Loadfile bin/libxml2.dll
LoadModule xml2enc_module modules/mod_xml2enc.so
This is the most approaching to the suggestions in proxy-html.conf :
Quote: | # For Windows (I don't know if there's a standard path for the libraries)
# LoadFile C:/path/zlib.dll
# LoadFile C:/path/iconv.dll
# LoadFile C:/path/libxml2.dll |
Any clues? More generally, is there a place to look at to know what dlls are loaded or not at Apache startup? Thanks! |
|
Back to top |
|
Rotor
Joined: 28 Oct 2014 Posts: 9 Location: France,lyon
|
|
Back to top |
|
Rotor
Joined: 28 Oct 2014 Posts: 9 Location: France,lyon
|
Posted: Fri 14 Nov '14 16:22 Post subject: |
|
|
ok I gave up on mod_proxy_html and used the following solution :
ExtFilterDefine stmf cmd="c:/perl/bin/perl.exe c:/apache24/conf/stmf.pl"
<Location /xxx/>
SetEnv Destsys xxx
SetOutputFilter stmf
stmf.pl
while (<STDIN>) {
s#/streammaster#/$ENV{Destsys}#g ;
print $_;
}
crude but gives none of the headaches above and fixes even things in javascripts that mph didn't.
it wouldn't probably be workable with heavy traffic but in this case it's not a problem |
|
Back to top |
|
Steffen Moderator
Joined: 15 Oct 2005 Posts: 3092 Location: Hilversum, NL, EU
|
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Sat 15 Nov '14 11:00 Post subject: |
|
|
Maybe it could be done with mod_sed, too which is faster. |
|
Back to top |
|
|
|
|
|
|