View Single Post
  #10  
Old 01-17-2013, 03:02 AM
Cory Cory is offline
New Member
 
Join Date: Jan 2013
Posts: 6
I did get "Blank Pages" and I just fixed it.

You don't necessarily need to the the libs like I did above;

Code:
cd /usr/src/
wget http://centos.alt.ru/repository/cent...6-1.noarch.rpm
rpm -ivh centalt-release-6-1.noarch.rpm
yum install mysql-libs
This should allow you to compile and don't have blank pages.

Config:

Code:
'./configure' '--prefix=/usr/local/lsws/lsphp5' '--enable-bcmath' '--enable-calendar' '--enable-exif' '--enable-ftp' '--enable-gd-native-ttf' '--enable-libxml' '--enable-magic-quotes' '--enable-mbstring' '--enable-sockets' '--enable-zip' '--with-bz2' '--with-curl=shared,/usr' '--with-freetype-dir=/usr' '--with-gd' '--with-jpeg-dir=/usr' '--with-kerberos' '--with-libdir=lib64' '--with-libxml-dir=/usr' '--with-mysql' '--with-openssl' '--with-openssl-dir=/usr' '--with-pic' '--with-png-dir=/usr' '--with-tidy=shared,/usr' '--with-xmlrpc=shared' '--with-xpm-dir=/usr' '--with-zlib' '--with-zlib-dir=/usr' '--with-litespeed' '--with-pdo-mysql'
Shouldn't need it, but right now the server works, but if the problem does arise this is what's added in my php.ini

Code:
extension_dir="/usr/local/lsws/lsphp5/lib/php/extensions/no-debug-non-zts-20090626"
zend_extension="/usr/local/IonCube/ioncube_loader_lin_5.3.so"         
extension = "mysql.so"
extension = "mysqli.so"
extension = "tidy.so"   
extension = "xmlrpc.so"
extension = "xcache.so"
extension = "pdo_mysql.so"
extension = "curl.so"              
extension = "libfreetype.so"
Hope this helps for other people!

Regards,
Cory
Reply With Quote