cancel
Showing results for 
Search instead for 
Did you mean: 

ERROR : The requested URL was not found on this server

SOLVED

Re: ERROR : The requested URL was not found on this server

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 ?

-- Best regards --
Kent Christiansen | Magento Certified Solution Specialist

Re: ERROR : The requested URL was not found on this server

HI I am facing the same issue have you found any solution for this please let me know 

Re: ERROR : The requested URL was not found on this server

Hi @juneed,

 

What issue are you having - the tread contains multiple issues Smiley Happy ??

 

-- Best regards --
Kent Christiansen | Magento Certified Solution Specialist

Re: ERROR : The requested URL was not found on this server

Hi 

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

Re: ERROR : The requested URL was not found on this server

hi @juneed,

 

Did you try the following URL /magento/index.php/admin ??

/Kent

 

-- Best regards --
Kent Christiansen | Magento Certified Solution Specialist

Re: ERROR : The requested URL was not found on this server

Hi 

I have tried the URL as you suggested then also it is showing error 404 not found

 

Many thanks

Juneed

 

 

Re: ERROR : The requested URL was not found on this server

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 ?

 

-- Best regards --
Kent Christiansen | Magento Certified Solution Specialist

Re: ERROR : The requested URL was not found on this server

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

Re: ERROR : The requested URL was not found on this server

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

Re: ERROR : The requested URL was not found on this server

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

 

 

-- Best regards --
Kent Christiansen | Magento Certified Solution Specialist