View Single Post
  #4  
Old 10-10-2012, 12:51 AM
DraCoola DraCoola is offline
Senior Member
 
Join Date: Mar 2009
Posts: 149
Thanks Nitewave.
Unfortunatelly I cannot found define ('LSAPI_VERSION', '6.0'); on that file :

PHP Code:
<?php

define 
('LEGAL'1);
define ('TITLE''Compile PHP with LSAPI');
define ('OPTION_VERSION'2);

define ('BUILD_DIR'$_SERVER['LS_SERVER_ROOT'] . 'phpbuild');
define ('LAST_CONF'BUILD_DIR '/savedconfig.'); // actual file will include . php base version.

define ('DEFAULT_INSTALL_DIR'$_SERVER['LS_SERVER_ROOT'].'lsphp'); // actual dir will include . php base version.

$PHP_VER = array('5'=>
                 array(
                         
'5.4.6',
                         
'5.4.5',
                         
'5.3.16',
                         
'5.3.15',
                         
'5.3.8',
                         
'5.3.6',
                         
'5.2.17',
                     
'5.2.9',
                     
'5.1.6'),
                 
'4'=>
                 array(
'4.4.9',
                       
'4.4.8'));

define ('LSAPI_VERSION''5.5');
define ('SUHOSIN_VERSION''0.9.33');
define ('APC_VERSION''3.1.9');
define ('XCACHE_VERSION''2.0.1');
define ('MEMCACHE_VERSION''2.2.6');
//define ('MEMCACHED_VERSION', '1.0.2');



$DEFAULT_PHP_PARAMS = array(
        
'5' => '--with-mysqli --with-zlib --with-gd --enable-shmop --enable-track-vars --enable-sockets --enable-sysvsem --enable-sysvshm --enable-magic-quotes --enable-mbstring --with-iconv',
        
'4' => '--with-mysql  --with-zlib --with-gd --enable-shmop --enable-track-vars --enable-sockets --enable-sysvsem --enable-sysvshm --enable-magic-quotes --enable-mbstring');


include_once( 
'buildfunc.inc.php' );

?>
But my phpinfo() is showing for Server API >> LiteSpeed V6.0

Last edited by DraCoola; 10-10-2012 at 12:56 AM.. Reason: adding php content
Reply With Quote