cancel
Showing results for 
Search instead for 
Did you mean: 

Ran setup and it reports as okay but admin is not there CE 2.32

SOLVED

Ran setup and it reports as okay but admin is not there CE 2.32

 Success

" Launch Magento Admin "

 

Not Found

The requested URL /admin_1wxnln/ was not found on this server.

 

Any ideas?

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Ran setup and it reports as okay but admin is not there CE 2.32

Hi @phill_whiteside 

 

This is very known issue - you will require to put .htaccess file in the root directory and in that you need to add this content - https://github.com/magento/magento2/blob/2.3-develop/.htaccess

 

Copy the content from the given link and add that into your .htaccess file.

 

it will resolved your issue.

 

Hope it helps !

if issue solved,Click Kudos & Accept as Solution

View solution in original post

5 REPLIES 5

Re: Ran setup and it reports as okay but admin is not there CE 2.32

Hello @phill_whiteside 

You can follow below shared all solutions:

 

Edit apache2.conf file and change following

<Directory /var/www/>
     Options Indexes FollowSymLinks
     AllowOverride None
     Require all granted
</Directory>

to

<Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
</Directory>

 

OR

 

Try to access site as example.com/index.php/admin 

 

OR

 

just add the .htaccess file in root folder.

 

OR

 

Installing rewrite_module can fix:

sudo a2enmod rewrite
sudo service apache2 restart

 Let me know if you still face the issue. 

Manish Mittal
https://www.manishmittal.com/

Re: Ran setup and it reports as okay but admin is not there CE 2.32

Hi @phill_whiteside 

 

This is very known issue - you will require to put .htaccess file in the root directory and in that you need to add this content - https://github.com/magento/magento2/blob/2.3-develop/.htaccess

 

Copy the content from the given link and add that into your .htaccess file.

 

it will resolved your issue.

 

Hope it helps !

if issue solved,Click Kudos & Accept as Solution

Re: Ran setup and it reports as okay but admin is not there CE 2.32

Thanks for speedy reply

 

I've edited 

AllowOverride None

to be

AllowOverride All

 I've also checked and in /etc/httpd/conf.modules.d/00-base.conf file

LoadModule rewrite_module modules/mod_rewrite.so

is uncommented.

(I'm using CentOS 7 so checked that is where the rewrite_module is enabled).
Still get the 404 error.

Trying  shop.mgjuddltd.co.uk/index.php/admin gives a default Error page:

 

Whoops, our bad...
 
 
The page you requested was not found, and we have a fine guess why.
  • If you typed the URL directly, please make sure the spelling is correct.
  • If you clicked on a link to get here, the link is outdated.

Are there any other suggestions?

 

 

Re: Ran setup and it reports as okay but admin is not there CE 2.32

Hi,

 

Are you saying that it still not accessible via original "/admin_1wxnln/" after you modified .htaccess, so it now contains "AllowOverride All"?

 

Re: Ran setup and it reports as okay but admin is not there CE 2.32

Hi,

 

I marked as solved after adding in the .htaccess file as per the comment.

 

Regards,

Phill.