WordPress : Homepage only working and no links or sub-pages work on the site.

Create .htaccess file and put the below code in it.   # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress And save it. All the pages and links will start working on the site  

See More

Exim : retry time not reached for any host after a long failure period

The issue is because of the corrupted exim db files. Goto /var/spool/exim/db and delete files: retry , retry.lockfile , wait-remote_smtp, wait-remote_smtp.lockfile /etc/init.d/exim restart it should resolve your issue

See More

How to change date and time zone in php ?

If your php script is not showing correct date and time then it means your script is using date and time zone configured on your server. If you want to set your own date and time zone for your domain then it can be done in a very simple manner. You will need to create […]

See More