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
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
<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.
Try check "Skip Base URL Validation Before the next step"
Take a look at Please enter a valid URL. Protocol is required (http://, https:// or ftp://) in Magento 1.9.2 installing?