I'm trying to use the GNU GetText library, but PHP keeps giving this error:
X-Powered-By: PHP/4.0.6 Content-type: text/html
Fatal error: Call to undefined function: gettext() in C:\Files\Web\nls.php on line 2
PHP Warning: Unable to load dynamic library 'C:\Program Files\PHP\extensions\php_gettext.dll' - The specified module could not be found. in Unknown on line 0
I know the extension is there, I've tried various permission settings on the directory, and the following for extension_dir in PHP.ini:
extension_dir = ./
extension_dir = C:\Program Files\PHP\extensions\
extension_dir = C:\Program Files\PHP\extensions
extension_dir = C:/Program Files/PHP/extensions/
extension_dir = C:/Program Files/PHP/extensions
extension_dir = extensions
extension_dir = .\extensions
extension_dir = ./extensions
and even putting php_gettext.dll in...
extension_dir = C:\WINNT\system32\
Anybody know what the problem is?