Re: The page is not fully loaded when installing Magento

@kristijani3297 

You can follow the below steps or make sure whether you have followed or not:


  1. Copy the index.php and .htaccess files from the pub folder and paste into the root directory.
  2. Both files are in the pub folder when we download the setup for security purposes, but we’ve to follow this step while installing in the local. 3. Replace the below line in the index.php file that we’d paste in the root directory.
    require __DIR__.'/../app/bootstrap.php'; 
    with 
    require __DIR__.'/app/bootstrap.php';
  3.  Insert the below four rows in the core_config_data table.

    web/secure/base_static_urlhttp://localhost/m242/pub/static/
    web/unsecure/base_static_urlhttp://localhost/m242/pub/static/
    web/secure/base_media_urlhttp://localhost/m242/pub/media/
    web/unsecure/base_media_urlhttp://localhost/m242/pub/media/
  4. At the end, please run the below command:
     php bin/magento cache:flush  
Problem solved? Click Kudos and "Accept as Solution".
200+ Magento 2 Extensions for Enhanced Shopping Experience.

View solution in original post