Munawar Ahmed Mohammed
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changed WP URL, now can't access dashboard“wp_options” is a table name inside your database which you can find in phpmyadmin and its is not a file.
you cant find
define(‘WP_HOME’,’http://example.com’);
define(‘WP_SITEURL’,’http://example.com’);these lines in wp-config.php file because they dont exist. you have to add it
online 83 where there is comment which says “That’s all, stop editing! Happy blogging.” before that line paste the code with your updated urls
Forum: Fixing WordPress
In reply to: Changed WP URL, now can't access dashboardif you are interested in playing with wp-config.php file. replace example.com with your exact locations
then inside file wp-config.php on line:83 where there is comment which says “That’s all, stop editing! Happy blogging.” before that line past the following with your updated urls
define(‘WP_HOME’,’http://example.com’);
define(‘WP_SITEURL’,’http://example.com’);Forum: Fixing WordPress
In reply to: Changed WP URL, now can't access dashboardHi Copaesthetic,
if you have phpmyadmin access you can directly go and select the database(with which WP is installed) > wp_options > then change siteurl(this the url where WordPress core file reside)
This helped me, lot of times with similar issue.
Thank you.
Munawar