How to change the base_url in Magento, because my site were gone after i changed that on my magento admin settings... Now i got 404 error on that url, the admin and frontend won't open...
execute the following query in mysql (via phpmyadmin or command line) to see what the current values are:
select * from core_config_data where path like '%base%url%';
and then update accordingly
update core_config_data set value = 'http://myhostname/js/' where path = 'web/unsecure/base_js_url';