Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [babel-dev] HTTP 500 for some Babel RC2 jar files

Hi Kit,

I finally took the time to implement a permanent fix for this type of issue, where the PHP handler is being used for .php.* files.

On build.eclipse.org's Apache server config, I commented this line:

        # AddHandler application/x-httpd-php .php

And added this:
        <FilesMatch \.php$>
                SetHandler application/x-httpd-php
        </FilesMatch>

.. as per the Apache docs here:
http://httpd.apache.org/docs/2.2/mod/mod_mime.html#multipleext

PHP scripts and .php.jar files can now coexist.


Denis

On 07/23/2012 09:42 PM, Kit Lo wrote:

Denis,

I'm testing the Babel R0.10.0 RC2 build. I encountered the "HTTP 500 Internal Server Error" messages for the following jars again:
http://build.eclipse.org/technology/babel/update-site/RC2/juno/plugins/org.eclipse.php.ui.nl_en_AA_4.2.0.v20120721043402.jar
http://build.eclipse.org/technology/babel/update-site/RC2/juno/plugins/org.eclipse.php.ui.nl_fi_4.2.0.v20120721043402.jar
http://build.eclipse.org/technology/babel/update-site/RC2/juno/plugins/org.eclipse.php.ui.nl_ko_4.2.0.v20120721043402.jar

Can you take a look and do your trick to fix that again, please?

Thanks,
Kit Lo
Eclipse Babel Project Lead
IBM Eclipse SDK (IES) Globalization Technical Lead
IBM Rational solution for Collaborative Lifecycle Management (CLM) Globalization Technical Lead



Back to the top