BrizRobbo Posted October 19, 2007 Share Posted October 19, 2007 This is just a clarification question! We have compiled OpenSSL into PHP5 using the -with-openssl directive. My question is: when we want to upgrade OpenSSL on the servers in question (for obvious securty reasons), do we have to re-compile PHP. I wouldn't expect so...but you never know these things. A response from anyone with an insight into these things would be appreciated. Cheers. Quote Link to comment Share on other sites More sharing options...
trq Posted October 19, 2007 Share Posted October 19, 2007 My question is: when we want to upgrade OpenSSL on the servers in question (for obvious securty reasons), do we have to re-compile PHP No. All you need do is use phpize. $ cd openssl/source/dir $ phpize $ ./configure --enable-options $ make This should create an .so file. All you need do then is copy it to your extensions directory (/usr/local/lib/php/extensions/ is the default) and restart Apache. EDIT: Fixed a few typos. Quote Link to comment 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.