The following command will help to reset joomla admin password. Login into database through phpmyadmin or SSH and execute the below command. UPDATE `jos_users` SET `password` = MD5( ‘admin147’ ) WHERE `jos_users`.`username` = “admin” ;
Continue reading
November 19, 2013 Admin
Topic
No Comment
WHM and cPanel backend files Apache /usr/local/apache/ bin- apache binaries are stored here – httpd, apachectl, apxs /usr/local/apache/conf – configuration files – httpd.conf /usr/local/apache/cgi-bin /usr/local/apache/domlogs – domain log files are stored here /usr/local/apache/htdocs /usr/local/apache/include -header files /usr/local/apache/libexec – shared object (.so) files are stored here – libphp4.so,mod_rewrite.so /usr/local/apache/logs...
Continue reading
November 19, 2013 Admin
WHM/cPanel
No Comment
Here is Exim Command Line. To print a list of the messages in the queue, enter: # exim -bp To remove a message from the queue, enter: # exim -Mrm {message-id} To remove all messages from the queue, enter: # exim -bp | awk ‘/^ *[0-9]+[mhd]/{print “exim -Mrm...
Continue reading
November 19, 2013 Admin
WHM/cPanel
No Comment
Traditional “sendmail -q” command flushes mail queue. Under Postfix, just enter the following to flush the mail queue # postfix flush OR # postfix -f To view mail queue, enter: # mailq To delete all mail from the queue, enter: # postsuper -d ALL To delete all mails...
Continue reading
November 19, 2013 Admin
Postfix
No Comment
MPM (Multi processing module) is a component of apache webserver, that determines how multiple clients or connections will be handled. Apache is flexible by design and there are different MPMs that can be used with apache webserver depending on the needs. Some of the common MPMs on Linux...
Continue reading
November 12, 2013 Admin
Apache
No Comment