The PHP scripts in /var/www/html/wordtrans/ use the obsoleted PHP script delimiters <? ?> which don't work by default with the version of PHP currently in Raw Hide: <?php ... ?> has to be used instead.
This should be fixable by creating the file /etc/httpd/conf.d/wordtrans.conf and making it contain the following: <Directory /var/www/html/wordtrans> php_value short_open_tag 1 </Directory> However this does not work at present due to bug 73516.
Bryce, do you know why does php use new style ?php as default. It will break the old php scripts?
It will, and it does, but it was done.
*** Bug 77450 has been marked as a duplicate of this bug. ***
the bug 73516 is still there, this means that /etc/httpd/conf.d/wordtrans.conf will does not work and i have to fix php scripts?
Adding "Requires: php >= 4.2.2-10" to wordtrans-web and using: <Directory /var/www/html/wordtrans> php_admin_flag short_open_tag Off </Directory> will work now.
That should be "php_admin_flag short_open_tag On", of course...
it's fixed in wordtrans-1.1pre9-11. Thanks for your infos.