httpd.conf is configuration file of apache server and all important options are stored there. httpd.conf is located at /usr/local/apache/conf/httpd.conf.vi /usr/local/apache/conf/httpd.confMaxClients (Total number of concurrent connections.)It should be set reasonable value because if set high value then there is chance a complete server hang in case of a DOS attack. It can set value as per […]
See MoreTag: low cost web hosting
Directory Index Forbidden Error !!
If you get below in error in error_log========================================[Thu Sept 13 02:09:32 2012] [error] [client 127.0.0.1] Directory index forbidden by Options directive: /home/domainusername/public_html/[Thu Sept 13 02:09:32 20129] [error] [client 127.0.0.1] Directory index forbidden by Options directive: /home/domainusername/public_html/==================================================Then you need to add below code in .htaccess file.==================================DirectoryIndex index.htmlorDirectoryIndex index.php==================================and then check your site.
See MoreFatal 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 ————- […]
See More