Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Installation Problem #59

Open
nathan-vo810 opened this issue Jul 11, 2017 · 3 comments
Open

Installation Problem #59

nathan-vo810 opened this issue Jul 11, 2017 · 3 comments

Comments

@nathan-vo810
Copy link

Hi,

Currently, I'm setting up the system on Microsoft Azure.
I have upload all the required files to the cloud and start installing by go to .../web/install.php
I have successfully passed the System requirement check - the 1st step in the installation. However, when I press the next button, the page redirect me to .../web/installer which does not exist!!!

I don't know how to continue setting up the system. Can anyone please help me with this?

Thank you.

@northdakota
Copy link
Contributor

Hi nhatanh81096, what webserver do you use? apache or ngxin?
If you use apache, seems that you have disabled or not installed module mod_rewrite.

@nathan-vo810
Copy link
Author

Hi, thanks for your help!
I'm using IIS 8.0.
I have done some research on your suggestion and it appears that the web server cannot read .htaccess and the file is needed to rewrite into web.config
However, I still unable to do that!!!
Is there any other way to install this?

Thank you

@northdakota
Copy link
Contributor

Hi, could you please to install URL Rewrite module for IIS
https://www.iis.net/downloads/microsoft/url-rewrite

and apply following connfig

<system.webServer>
  <rewrite>
    <rules>
      <rule name="Redirect index.php" stopProcessing="true">
        <match url="index\.php/(.*)" />
        <action type="Redirect" url="{R:1}" appendQueryString="false" />
      </rule>
      <rule name="Rewrite index.php">
        <match url="(.*)" />
        <conditions>
          <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
          <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
        </conditions>
        <action type="Rewrite" url="index.php/{R:1}" />
      </rule>
    </rules>
  </rewrite>
</system.webServer>

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants