i have changed base_url in magento back end. Now my website is inaccessible
How to change base_url settings with my phpMyAdmin?
Thanks in advance!
i have changed base_url in magento back end. Now my website is inaccessible
How to change base_url settings with my phpMyAdmin?
Thanks in advance!
If you change Base Url of your site which you set at the time installing Magento then there are possibilities that you can’t get the login page of Magento because you set invalid address for base url.Try the following to overcome from this problem:
Open core_config_data table from your Magento database tables in PhpMyAdmin Tool.
Now set the base url in web/secure/base_url and web/unsecure/base_url.
After performing all the above steps you need to delete cache files inside var/cache folder in root directory and also session files.
In your database, go to the
core_config_data
table and set the rightvalue
for thosepath
values :web/unsecure/base_url
andweb/secure/base_url
if you're willing to do it via mysql command line: open up terminal...
Copy and paste the following into your terminal but make the necessary changes... obviously...
Take a look @ http://www.magentocommerce.com/wiki/recover/restore_base_url_settings
Open your core_config_data table in phpMyAdmin.
Find the following rows for your unsecure section, they should look like the following:
Replace
http://www.mydomain.com/
with your appropriate domain url (trailing slash necessary) and if you’ve installed in a subfolder append it with a / after it.