Reply to comment

Hello,

I still have the rewrite issue. I have to type in http://127.0.0.1/magento/index.php in order to install.
After I check that rewrite is selected, I still have to type http://127.0.0.1/magento/index.php/admin.
If not, my web browser asks me where to download the file.

After extensive research, you should add these following instructions. If people are using this as a development should comment out the following lines from app/code/core/Mage/Core/Model/Session/Abstract/Varien.php

session_set_cookie_params(
$this->getCookie()->getLifetime(),
$this->getCookie()->getPath(),
$this->getCookie()->getDomain(),
$this->getCookie()->isSecure(),
$this->getCookie()->getHttponly()
);

to

session_set_cookie_params(
$this->getCookie()->getLifetime(),
$this->getCookie()->getPath() // don't forget to put back the comma "," when uncommenting the lines below
//$this->getCookie()->getDomain(),
//$this->getCookie()->isSecure(),
//$this->getCookie()->getHttponly()
);

thanks for writting this installation guide, i've been breaking my head for weeks...

Reply

The content of this field is kept private and will not be shown publicly.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.
  • You can enable syntax highlighting of source code with the following tags: <code>, <blockcode>, <apache>, <bash>, <c>, <cpp>, <drupal5>, <drupal6>, <java>, <javascript>, <perl>, <php>, <python>, <ruby>, <xml>. The supported tag styles are: <foo>, [foo].

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.