I've been working on a new setup on my server and after some problems I thought I had it working (finally!)... however gettext doesn't seem to work in my PHP setup.
I compiled all stuff myself, new Apache 2.0.50 server, PHP 5.0.0 and gettext 0.14.1 when running the configure script for PHP everything goes fine. It even compiles without problems. But when I run a simple test script:
I get a fatal error messages telling me: "Call to undefined function gettext()"
The problem is I have no idea what is going wrong. I'm positive that the "ext/gettext" gets compiled. Also that these functions are included checked the #ifdef, even removed quite a few of them so the code would allways compile but it just doesn't work
Anyone with tips on what I might be doing wrong, they are very much appreciated.
I compiled all stuff myself, new Apache 2.0.50 server, PHP 5.0.0 and gettext 0.14.1 when running the configure script for PHP everything goes fine. It even compiles without problems. But when I run a simple test script:
Code:
<?php
gettext ("TEST")
?>
gettext ("TEST")
?>
I get a fatal error messages telling me: "Call to undefined function gettext()"
The problem is I have no idea what is going wrong. I'm positive that the "ext/gettext" gets compiled. Also that these functions are included checked the #ifdef, even removed quite a few of them so the code would allways compile but it just doesn't work
Anyone with tips on what I might be doing wrong, they are very much appreciated.