*SOLVED* CentOS: lots of blank pages when submitting data - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Support Area (/forum-30.html) +--- Forum: Usage (/forum-34.html) +--- Thread: *SOLVED* CentOS: lots of blank pages when submitting data (/thread-4000.html) |
*SOLVED* CentOS: lots of blank pages when submitting data - _lunix_ - 08-10-2008 06:31 PM Hi, When I submit data i get a blank page. When I click the browser back button the data was submitted properly. This hapens as admin when creating a new reseller, as a reseller when creating/editing plans etc. There is very little in the logs to show what is going wrong other than: Code: [root@nissan ispcp]# tail -f /var/log/httpd/error_log I have a real server with CentOS 5.2 x86 with all updates. This was a fresh install today of the OS and ispcp-omega-1.0.0-rc6. TIA Mick _lunix_ http://www.lunix.com.au RE: lots of blank pages when submitting data - DrXoR - 08-20-2008 04:38 PM have s same trouble CentOS 5.2 (all updates) ispcp-omega-1.0.0-rc6 RE: lots of blank pages when submitting data - ephigenie - 08-20-2008 05:18 PM what php-version do you use ? What modules do you've enabled (in your php installation?) ? RE: lots of blank pages when submitting data - _lunix_ - 08-20-2008 08:55 PM ephigenie Wrote:what php-version do you use ?All the default php addons are running and the default CentOS 5.2 php RPMs are installed. On the weekend I will try to remove some of the php addons to see if it makes a difference. RPMs: php-common-5.1.6-20.el5_2.1 php-mcrypt-5.1.6-15.el5.centos.1 php-pdo-5.1.6-20.el5_2.1 php-cli-5.1.6-20.el5_2.1 php-ldap-5.1.6-20.el5_2.1 php-xml-5.1.6-20.el5_2.1 php-snmp-5.1.6-20.el5_2.1 php-odbc-5.1.6-20.el5_2.1 php-5.1.6-20.el5_2.1 php-mysql-5.1.6-20.el5_2.1 php-gd-5.1.6-20.el5_2.1 php-dba-5.1.6-20.el5_2.1 php-pear-1.4.9-4.el5.1 php-bcmath-5.1.6-20.el5_2.1 php-mbstring-5.1.6-20.el5_2.1 Addons bcmath.ini dom.ini gd.ini mbstring.ini mcrypt.ini mysqli.ini mysql.ini pdo.ini pdo_mysql.ini snmp.ini dba.ini dbase.ini ldap.ini odbc.ini pdo_odbc.ini pdo_sqlite.ini xmlreader.ini xmlwriter.ini xsl.ini Mick RE: lots of blank pages when submitting data - Standbye - 09-05-2008 07:41 PM hi, any news about this? Same Problem for me also Centos 5.2 i got the problem with adding mail users! RE: lots of blank pages when submitting data - _lunix_ - 09-14-2008 11:31 AM Standbye Wrote:hi, any news about this? I have removed lots of unecessary php modules aswell as alot of apache modules and this is still a problem. Standbye...Check your apache logs when you get the blank page. Do you see an apache child died with a segfault ? I am currently working through this with gdb to find the problem. As this is my first time using GDB I am not very fast/good at it. I have a core file here if its of use to anyone. .... I am able to login at all three levels. It's just when I go to submit any data, ie create a new email account, create a new domain account etc that I get a blank page and the apache child serving this request segfaults. The following is a copy of my gdb session and the back trace associated with adding a new email account. Code: Program received signal SIGSEGV, Segmentation fault. Now that i have the above I have no idea how to use this data but I hope someone else on these forums can help me. I think it is telling me that there is a problem whilst running the 'mysql_more_results' function. mick RE: lots of blank pages when submitting data - _lunix_ - 09-14-2008 01:20 PM Ok I have made some progress. Sort of. The problem is I think related to the use of PDO This old bug report pretty well looks like what I have but the report says it is fixed in the version of php I have. http://bugs.php.net/bug.php?id=37445 I found a repos with php 5.2.6 rpms in it. This fixes the problem however it is less than optimal to be running third party untrusted repositories on a production server. http://blog.famillecollet.com/pages/Config-en This link has instructions on how to enable his repos and then you just Code: yum --enablerepo=remi update php php-mysql php-pdo........ Find these by Code: rpm -qa | grep php Cheers Mick |