Databáze řešení

PHP 5.3 Upgrade

PHP 5.3 Upgrade

We are pleased to announce that IndoSite.com will be upgrading our Reseller and Shared servers with PHP version 5.3 beginning Feb 23th 2013. Since, PHP 5.2 is no longer providing any security updates it is necessary for us to upgrade the version in order to continue to bring you a service which closes the loops on security short comings, bugs and other potential vulnerabilities. You should not experience any interruptions in service or down times related to this PHP update.

We urge you to upgrade to newer versions of your software that support PHP v5.3 in order to receive the best benefits, security settings and features which are offered with this version. Should you experience any issues with this update please feel free to contact our technical support department.

Thank you for your understanding and patience as we move forward with this necessary update.
Below are the changes needed to be done for your custom php.ini to work with php 5.3 being installed on the servers , we will announce servers upgraded a day before the upgrade so you get prepared, here are the changes :

Change line 
PHP Code:
error_reporting  =  E_ALL & ~E_NOTICE  
To
PHP Code:
error_reporting E_ALL & ~E_NOTICE & ~E_DEPRECATED  

Change line 
PHP Code:
post_max_size 16M  
To
PHP Code:
post_max_size 64M  

Change line 
PHP Code:
gpc_order "GPC"  
To
PHP Code:
;gpc_order "GPC"  
Change line 
PHP Code:
magic_quotes_gpc On  
To
PHP Code:
;magic_quotes_gpc On  
Change line 
PHP Code:
extension_dir "/usr/local/lib/php/extensions/no-debug-non-zts-20060613"  
To
PHP Code:
extension_dir "/usr/local/lib/php/extensions/no-debug-non-zts-20090626"  
Change line 
PHP Code:
zend_extension="/usr/local/IonCube/ioncube_loader_lin_5.2.so"  
To
PHP Code:
zend_extension="/usr/local/ioncube/ioncube_loader_lin_5.3.so"  
Change line 
PHP Code:
zend_extension="/usr/local/Zend/lib/Optimizer-3.3.9/php-5.2.x/ZendOptimizer.so"  
To
PHP Code:
zend_extension="/usr/local/Zend/lib/Guard-5.5.0/php-5.3.x/ZendGuardLoader.so"  
Add line 
PHP Code:
date.timezone="Asia/Jakarta"  
 
  • 7 Uživatelům pomohlo
Byla tato odpověď nápomocná?