yogesharora Posted February 6, 2008 Share Posted February 6, 2008 Hello Friends, I need to run PHP on Linux environment and existing code which I need to integrate on Tomcat is using the functions of mbstring.so (like mb_language() etc.), functions of mcrypt.so (shared objects - windows equivalent of .dll file). Could anyone of you tell me from where I can get these .so (shared objects)? Environment details =============== Operating System - Enterprise Red Hat Linux Version 4 PHP - Version 5.2.5 Tomcat - Version 6.0.15 JSR 223 - Reference Implementation JDK - Version 1.5.0_14 Please help me. Thanks, Yogesh Quote Link to comment https://forums.phpfreaks.com/topic/89687-php-525-extensions-mbstringso-mcryptso-and-mysqlso-for-red-hat-linux/ Share on other sites More sharing options...
trq Posted February 6, 2008 Share Posted February 6, 2008 You download php's source, cd into the ext directory, cd into the directory of the extension you need then run... phpize ./configure # add your configure options here. make this will create the relevent *.so file within the modules directory. All you need do is then copy it into your extensions directory and restart the server. Quote Link to comment https://forums.phpfreaks.com/topic/89687-php-525-extensions-mbstringso-mcryptso-and-mysqlso-for-red-hat-linux/#findComment-459684 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.