0

I am facing problem when installing magento on my xampp server. There is some path url issue which I have been facing. please look at the screenshot

chrome-extension://mcbpblocgmgfnpjjppndjkmgjaogfceg/fsCaptured.html

Mukesh
  • 7,630
  • 21
  • 105
  • 159

2 Answers2

1
  1. Open \app\design\install\default\default\template\install\config.phtml
  2. Find the textbox where the base url is entered. It will be around line no 85 with name ‘config[unsecure_base_url]‘
  3. Remove ‘validate-url’ from its class and save the file.
<li>
    <label for="base_url"><?php echo $this->__('Base URL') ?> <span class="required">*</span></label><br />
    <input type="text" name="config[unsecure_base_url]" id="base_url" value="<?php echo $this->getFormData()->getUnsecureBaseUrl() ?>" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Base URL')) ?>" class="required-entry validate-url input-text" />
</li>

Replace with

<li>
    <label for="base_url"><?php echo $this->__('Base URL') ?> <span class="required">*</span></label><br />
    <input type="text" name="config[unsecure_base_url]" id="base_url" value="<?php echo $this->getFormData()->getUnsecureBaseUrl() ?>" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Base URL')) ?>" class="required-entry input-text" />
</li>

4.Refresh installation page and continue.

0

Try check "Skip Base URL Validation Before the next step"

enter image description here

Take a look at Please enter a valid URL. Protocol is required (http://, https:// or ftp://) in Magento 1.9.2 installing?

Community
  • 1
  • 1
MagePal Extensions
  • 17,646
  • 2
  • 47
  • 62