logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

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.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: AH01435 windows apache 2.4 xml2enc
Author
Rotor



Joined: 28 Oct 2014
Posts: 9
Location: France,lyon

PostPosted: Thu 13 Nov '14 11:07    Post subject: AH01435 windows apache 2.4 xml2enc Reply with quote

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

PostPosted: Thu 13 Nov '14 13:07    Post subject: Reply with quote

Sorry, I didn't do my homework. http://technet.microsoft.com/en-us/sysinternals/bb896656 should answer to my last question.
Back to top
Rotor



Joined: 28 Oct 2014
Posts: 9
Location: France,lyon

PostPosted: Fri 14 Nov '14 16:22    Post subject: Reply with quote

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

PostPosted: Fri 14 Nov '14 16:30    Post subject: Reply with quote

Perfect that you reporting back !

For others, the use of mod_ext_filter, see http://httpd.apache.org/docs/2.4/mod/mod_ext_filter.html
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7371
Location: Germany, Next to Hamburg

PostPosted: Sat 15 Nov '14 11:00    Post subject: Reply with quote

Maybe it could be done with mod_sed, too which is faster.
Back to top


Reply to topic   Topic: AH01435 windows apache 2.4 xml2enc View previous topic :: View next topic
Post new topic   Forum Index -> Apache