Hi @szeeshan12,
When I click your link, your admin page is working fine and loading without any problems.
Also when I remove /los/lalashop from the URL, I see your landingpage for the shop.
What seems to be the problem ?
HI I am facing the same issue have you found any solution for this please let me know
Hi @juneed,
What issue are you having - the tread contains multiple issues ??
Hi KentChr_DK
I have installed Magento in wamp server (in localhost), while i tried to access as admin it showing the following error
===================================================================================================
Not Found
The requested URL /magento/admin/ was not found on this server.
===================================================================================================
Please provide some solution
Thanks in Advance
Juneed
hi @juneed,
Did you try the following URL /magento/index.php/admin ??
/Kent
Hi KentChr_DK
I have tried the URL as you suggested then also it is showing error 404 not found
Many thanks
Juneed
hi @juneed,
What is the complete url you're using ?
Did you follow any tutorials during wamp installation, like this http://insync.co.in/how-to-install-magento-on-wamp-server-localhost-localcomputer/ or similar ?
Hi
i have followed the same tutorial http://insync.co.in/how-to-install-magento-on-wamp-server-localhost-localcomputer/
i am using the below url
localhost/magento/index.php/admin
I am able to access home only,
admin page and other page not showing it showing as 404 error
Many Thanks
Juneed
Hi
i have followed the same tutorial
http://insync.co.in/how-to-install-magento-on-wamp-server-localhost-localcomputer/
i am using the below url
localhost/magento/index.php/admin
I am able to access home only,
admin page and other page not showing it showing as 404 error
Many Thanks
Juneed
hi @juneed,
This is very hard to say, you could try this:
The reason for this error could be that store_id
and website_id
for admin should be set to 0 (zero). But, when you import database to new server, somehow these values are not set to 0.
Open PhpMyAdmin and run the following query in your database:-
SET FOREIGN_KEY_CHECKS=0;
UPDATE `core_store` SET store_id = 0 WHERE code='admin';
UPDATE `core_store_group` SET group_id = 0 WHERE name='Default';
UPDATE `core_website` SET website_id = 0 WHERE code='admin';
UPDATE `customer_group` SET customer_group_id = 0 WHERE customer_group_code='NOT LOGGED IN';
SET FOREIGN_KEY_CHECKS=1;
But not sure if it helps ?
/Kent