Last modified: 2010-05-15 15:42:47 UTC
i am using php5 and mysql version4.1 i am not able to submit page which contains non keyboard characters like ê,ï,à etc.. , i am not having any problem while using mysql version 5 . when i submit those pages which contains non keyboard characters like ê,ï,à , i am getting a blank page , can u please help me to sort out this problem
Looks like PHP's error reporting is disabled. Add these two lines into LocalSettings.php: error_reporting(E_ALL); ini_set('display_errors', 1); That should show the error message, helping to diagnose the problem.
I add the same problem. (and also when uploading big image/pdf) In my php.ini I updated the variable 'memory_limit" from 16Mb to 32Mb and it solved the problem. Hop it will help.
Get the hint from doc at : http://meta.wikimedia.org/wiki/Help:Installation#Minimum system requirements <quote> Many people report blank pages in recent versions after submitting articles to their new wiki. A likely cause is the memory limit in default php installations (usually 8 MB). Please check your PHP and/or Apache error logs. To modify this setting edit /etc/php.ini and increase the "memory_limit" setting. For example to raise it to 20 MB replace the existing text with "memory_limit = 20M". Make sure to restart your Apache server after you have changed this value. </quote>
*** Bug 8916 has been marked as a duplicate of this bug. ***
I marked this as fixed, judging by comment #2 and comment #3.