I'm having a little bit of a problem with the 12.10 Ubuntu Perfect Server Install. In step 14.3 Additional PHP Versions I find myself without anything located in /opt/php-5.3.18/ so am unable to copy over some of the required files or continue on with the rest of that section. Any ideas why this might be?
I'm having the same issue im stuck on 14.3 towards the end at www.howtoforge.com/perfect-server-ubuntu-12.10-apache2-bind-dovecot-ispconfig-3-p4 Code: cp: cannot stat `/opt/php-5.3.18/etc/php-fpm.conf.default': No such file or directory tim@mainhost:/usr/local/src/php5-build/php-5.3.18$
I think I found the issue, it is located on the php configure, configure: error: Cannot find libmysqlclient under /usr. Note that the MySQL client library is not bundled anymore!
I was able to fix the error by changing the configure to Code: ./configure \ --prefix=/opt/php-5.3.18 \ --with-pdo-pgsql \ --with-zlib-dir \ --with-freetype-dir \ --enable-fpm \ --enable-mbstring \ --with-libxml-dir=/usr \ --enable-soap \ --enable-calendar \ --with-curl --with-mcrypt \ --with-zlib \ --with-gd \ --with-pgsql \ --disable-rpath \ --enable-inline-optimization \ --with-bz2 \ --with-zlib \ --enable-sockets \ --enable-sysvsem \ --enable-sysvshm \ --enable-pcntl \ --enable-mbregex \ --with-mhash \ --enable-zip \ --with-pcre-regex \ --with-mysql \ --with-pdo-mysql \ --with-mysqli \ --with-jpeg-dir=/usr \ --with-png-dir=/usr \ --enable-gd-native-ttf \ --with-openssl \ --with-fpm-user=www-data \ --with-fpm-group=www-data \ --with-libdir=/lib/i386-linux-gnu I however now receive sudo: insserv: command not found after the "insserv php-5.3.18-fpm" command
seems to be fixed by this thread http://www.howtoforge.com/forums/showthread.php?t=59242 however it seems sloppy, and now I run into the issue after I enter "Full qualified hostname (FQDN)" while under sudo php -q install.php, and it says "No PHP MySQL functions available. Please ensure that the PHP MySQL module is loaded"
still having "No PHP MySQL functions available. Please ensure that the PHP MySQL module is loaded" error during php -q install.php from http://www.howtoforge.com/perfect-server-ubuntu-12.10-apache2-bind-dovecot-ispconfig-3-p7
Does not seem to be related to http://ubuntuforums.org/showthread.php?t=327499 http://wordpress.org/support/topic/...-missing-the-mysql-extension-which-is-require
Are you sure you followed the guide to the letter? Instead of insserv, you can use Code: update-rc.d php-5.3.18-fpm defaults
Yes, I did a clean install of 12.10 386 prior to the config paper. I did try that already. I am however using ssh (sudo) and nano instead of local and vi.
I almost ran out of hair trying to figure this out. Eventually I just changed the "--with-mysql" line with "--with-mysql-client" and it worked!
http://www.howtoforge.com/how-to-us...and-fastcgi-with-ispconfig-3-ubuntu-12.04-lts http://www.howtoforge.com/how-to-us...p-fpm-and-fastcgi-with-ispconfig-3-centos-6.3 Will add tutorials for other distributions as well.