How to install magento in subsfolder of localhost -


I am installing magestrone from our server to our local host. I think that I've successfully gone through the process though, CSS and JS files are trying to refer to the root of the local folder, instead of the sub folder where it has been installed.

I have executed the following two SQL commands with no effect from core_config_data where path = 'web / cookie / cookie_domain'; Update Core_config_data set value = "http://127.0.0.1/xxxx/web/" where path = 'web / secure / base_url' or path = 'web / unsecure / base_url';

I have also removed everything inside the var.

Please find two images to show issues

the source of the localhost Showing links pointing to root  My folder structure is clearly visible in the file subfolder / subfolder / web

 unsecured configuration seen from the secure and admin section after changing admin password , I'm the administrator Was able to log into Nubhag. But CSS and JS files (alias skin files) still try to reference from

  http: //127.0.0.1/skin ...   

While it should be

  http: //127.0.0.1/xxx/web/skin/ ...    

< Div

  • System
  • Web
  • Asus / secure
  • Aadhar URL

    is also inaccessible since its administrator, you have to update it with SQL :

    • Open SQL Admin Software
    • Magenta D Select the table
    • Select the table core_config_data
    • Update the rows where the path is web / unsecure / base_url or web run

      or run the following SQL queries:

        update core_config_data set value = 'http: // domainname / 'Where path =' web / Asur / base_url '; Core_config_data set value = 'http: // domainname /' where path = 'web / secure / base_url';    

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -