Archive for April, 2011
How can I Increase the File upload size in php
by admin on Apr.20, 2011, under CentOs, Linux
How can I Increase the File upload size in php on CentOS 5?
vi /etc/php.ini
Find and edit the following
upload_max_filesize = 2M <— Maximum allowed size for uploaded files.
max_execution_time = 30 <–Maximum Execution time of each script, in seconds
post_max_size = 8M <— Maximum size of POST data that PHP will accept.
The mbstring PHP extension was not found and you seem to be using a multibyte charset. Without the mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.
by admin on Apr.19, 2011, under CentOs, Linux
The mbstring PHP extension was not found and you seem to be using a multibyte charset. Without the mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.
To fix this run the following.
yum install php-mbstring -y