error?

Stevee

Posting Freak
Mar 29, 2011
580
35
Hi,
so whenever i go to
it shows a 404 error,
its revCMS
this is my web.config

Code:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name="Imported Rule 1">
          <match url="^(|/)$" ignoreCase="false" />
          <action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
        </rule>
        <rule name="Imported Rule 2">
          <match url="^([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
          <action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
        </rule>
        <rule name="Imported Rule 3">
          <match url="^(.*)\.htm$" />
          <action type="Rewrite" url="{R:1}.php" />
        </rule>
        <rule name="Imported Rule 4">
          <match url="^(|/)$" ignoreCase="false" />
          <action type="Rewrite" url="dash.php?page={R:1}" appendQueryString="false" />
        </rule>
        <rule name="Imported Rule 5">
          <match url="^([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
          <action type="Rewrite" url="dash.php?url={R:1}" appendQueryString="false" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>


PS. IT works when I go to i can see the swf.

thanks,
steve
 

Data

Posting Freak
May 19, 2013
593
97
I personally don't like IIS, use the setup I used for past hotels.
Windows Server - Emulator + MySQL
Linux Server: NGINX for your site.

Basic steps:
- Install PHP-MySQL, PHP-FPM & NGINX on linux server.
- Do normal EMU and MySQL setup on windows server.
- Allow connections from MySQL to linux server(Create another user for it).
- Add MySQL information in config file on linux server.

Just put get a Proxy for the EMU IP & Port, put it on linux server.
#done.
 

Stevee

Posting Freak
Mar 29, 2011
580
35
I personally don't like IIS, use the setup I used for past hotels.
Windows Server - Emulator + MySQL
Linux Server: NGINX for your site.

Basic steps:
- Install PHP-MySQL, PHP-FPM & NGINX on linux server.
- Do normal EMU and MySQL setup on windows server.
- Allow connections from MySQL to linux server(Create another user for it).
- Add MySQL information in config file on linux server.

Just put get a Proxy for the EMU IP & Port, put it on linux server.
#done.

Ill try that, I'm not too good with Linux servers though.
Error 500 = IIS problem

yeah I figured that, just didn't know what I did wrong I installed
php 5.3
iis manager or w.e
mysql
and whatever else I needed.
Learn how to do it yourself its not hard lol..
if you're not gonna be helpful, stop posting simple. I do know how to do it, just haven't had these errors in ages.
 

Users who are viewing this thread

Top