WordPress: Fatal error: Out of memory

Now a days WP plugin requires more Memory and CPU so some times you get this error. To resolve this just do following things. edit Apache conf file vim /usr/local/apache/conf/httpd.conf   and comment following lines #RLimitMEM 813712042 #RLimitCPU 240 Thats it.

Fatal error: Unable to read 32654 bytes in /home/xxx/public_html/includes/functions.php on line 0

For zend encoded files, you may face following error Fatal error: Unable to read 32654 bytes in /home/xxx/public_html/includes/functions.php on line 0 Its most probable the related files for the script are uploaded in ASCII mode, all encoded files must be uploaded in binary mode. 01. You need to reupload all files in binary mode, or […]

Fatal error: Class ‘PDO’ not found in …includes/database/database.inc on line 184

Fatal error: Class ‘PDO’ not found in …includes/database/database.inc on line 184 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ While browsing domain if you get above error then – Please try to resolved issue with following steps. PDO support had been compiled in, but not enabled .Our server has PHP 5.2.x and 5.3x installed, with PDO support. Adding ————- extension=pdo.so extension=pdo_mysql.so ————- […]