Installation

1) Prepare your application

  • Download the application
  • Unzip the package on your local computer
  • Upload the content of the package in a new directory of your web host (via FTP for example)

2) Minimum requirements

  • PHP 5.3 or greater
  • MySQL 4.x or greater
  • HTTP server with mod rewrite enabled

3) Install MushRaider

  • Open the MushRaider’s location in a web browser (If you had uploaded the files into the folder “mushraider”, you have to browse to http://mywebsite.com/mushraider)
  • You will see installation wizard, the first step is a system check
  • Follow the wizard
  • Once installed, log in and configure your first game in the administration panel
  • GG !

3 bis) Keep MushRaider up to date

To update MushRaider, you only have to download the lastest version of the application, et replace your MushRaider’s directory with the new one. All your settings and data will be saved.

To stay up to date please follow @mushraider on Twitter and the page Google+

 

Windows’s case (IIS server)

On Windows we usually use a IIS server. MushRaider can handle it but you have to make some modifications to get it working : create a file named web.config in the root folder (in same folder than “app”, “lib”, “plugins”…) of the app and add it the following code :

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
 <system.webServer>
 <rewrite>
 <rules>
 <rule name="Rewrite requests to test.php"
 stopProcessing="true">
 <match url="^test.php(.*)$" ignoreCase="false" />
 <action type="Rewrite" url="app/webroot/test.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>

References :

Si vous aimez (ou pas), partagez...Share on FacebookTweet about this on TwitterShare on Google+Share on Reddit