Does ispCP support PHP 5.3.0 - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Support Area (/forum-30.html) +--- Forum: System Setup & Installation (/forum-32.html) +--- Thread: Does ispCP support PHP 5.3.0 (/thread-7307.html) Pages: 1 2 |
Does ispCP support PHP 5.3.0 - ceco91 - 07-27-2009 05:58 AM I am setting up a new hosting server and expirienced big problems with php 5.3.0. I have compiled it myself. I am using Ubuntu Server 8.04 (hardy). PHP configuration: Code: './configure' '--with-gd' '--enable-gd-native-ttf' '--enable-gd-jis-conv' '--with-mcrypt' '--with-mhash' '--with-mysql=/usr/local/mysql/' '--with-pear' '--with-mysql-sock=/var/run/mysqld/mysqld.sock' '--enable-sockets' '--enable-ftp' '--enable-mbstring' RE: Does ispCP support PHP 5.3.0 - joximu - 07-27-2009 06:02 PM Yes, principally it does - but we allready found at least one problem where the parameters of a function call were wrong (syntax) - that caused a problem - but only in 5.3 (maybe they changed the level of error???). I'd say: enable php error logging and see wheres the problem - so we can fix this and are ready for the 5.3 when its in the common distri... /J RE: Does ispCP support PHP 5.3.0 - ceco91 - 07-28-2009 01:37 AM I've fix some bugs. There are plenty. I can give you a list of errors which I have found. RE: Does ispCP support PHP 5.3.0 - joximu - 07-28-2009 01:43 AM ok, maybe you can enter this list into a bugreport - otherwise post here... Thanx /J RE: Does ispCP support PHP 5.3.0 - ceco91 - 07-28-2009 05:09 AM I have made some changes to sql_user_add.php and now ispCP adds a new SQL users but it gives me "Query was empty" (It gave the same error before the edit). Here is the part I've changed: Code: $new_db_name = ereg_replace("_", "\\_", $db_name); Code: $new_db_name = str_replace("_", "\\_", $db_name); Apparenty, PDO class doesn't work fine . RE: Does ispCP support PHP 5.3.0 - joximu - 07-28-2009 05:36 PM "Query was empty" when login... please check if you have the table subdomain_aliases in your db. Code: CREATE TABLE `subdomain_alias` ( RE: Does ispCP support PHP 5.3.0 - ceco91 - 07-28-2009 10:34 PM No such problem detected. I've received a mail fromr ispCP with critical error: Code: Hey There, RE: Does ispCP support PHP 5.3.0 - BeNe - 07-29-2009 03:43 PM Looks like the Database '2_test' exists only in table 'sql_database' but not in the MySQL DB itself. Someone delete them via PHPMyadmin and not in ispCP. Greez BeNe RE: Does ispCP support PHP 5.3.0 - ceco91 - 07-29-2009 09:12 PM The `subdomain_alias`is fine. Other ideas. RE: Does ispCP support PHP 5.3.0 - joximu - 07-29-2009 09:37 PM Set PHP to log errors. Hopefully this brings more infos... /J |