Hi @techielass
I have seen your wp-config
file and I found an issue there:
In the lines:
define('WP_SITEURL', 'http://www.techielass.com' . $SERVER['HTTPHOST'] . '/');
define('WP_HOME', 'http://www.techielass.com' . $SERVER['HTTPHOST'] . '/');
You should put:
define('WP_SITEURL', 'http://techielass.com');
define('WP_HOME', 'http://techielass.com');
There is the problem about the double domain name. Wordpress will concatenate the string http://techielass.com
and the environment variables.
I hope this information is useful for you. If you have any other question, please do not hesitate to let us know.
Thank you and best regards,
David Barranco.