Good News for Orangescrum Project Management Tool Open Source users specially IIS server users!
Our R&D department constantly evaluates the installation process for Orangescrum opensource Edition and expand its outreach. We have now tested and documented the installation process for the IIS (windows) server.
The question is How to install Orangescrum on IIS server?
You need to rewrite your URL in CakePHP native code to install Orangescrum on IIS servers.
IIS7 does not natively support .htaccess files. While there are add-ons that can add this support, you can also import htaccess rules into IIS to use CakePHP’s native rewrites. To do this, follow these steps:
[php]<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Rewrite requests to index.php" stopProcessing="true">
<match url="^index.php(.*)$" ignoreCase="false" />
<action type="Rewrite" url="app/webroot/index.php{R:1}" />
</rule>
<rule name="Exclude direct access to app/webroot/*" stopProcessing="true">
<match url="^app/webroot/(.*)$" ignoreCase="false" />
<action type="None" />
</rule>
<rule name="Rewrite routed access to assets(img, css, files, js, favicon)" stopProcessing="true">
<match url="^(img|css|files|js|favicon.ico)(.*)$" />
<action type="Rewrite" url="app/webroot/{R:1}{R:2}" appendQueryString="false" />
</rule>
<rule name="Rewrite requested file/folder to index.php" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<action type="Rewrite" url="index.php" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
[/php]
By following the above steps, your htaccess issue will be resolved. Now the installation is easier and fun too!
Let us know if you have a better way to install Orangescrum on IIS server, we’d love to add the steps in our manual. Do you face any issues? Contact us now!
[mks_button size=”small” title=”Download Orangescrum” style=”rounded” url=”http://www.orangescrum.org/free-download” target=”_blank” bg_color=”#f47038″ txt_color=”#FFFFFF” icon=”” icon_type=”” nofollow=”0″][mks_button size=”small” title=”Installation Support” style=”rounded” url=”https://www.orangescrum.org/our-support-plan#qinstall_service_section” target=”_blank” bg_color=”#218ad1″ txt_color=”#FFFFFF” icon=”” icon_type=”” nofollow=”0″]
[Blog_section][/Blog_section]