Forum Replies Created

Viewing 2 replies - 16 through 17 (of 17 total)
  • Thread Starter Meiji

    (@meiji_lythtis)

    Thank you kespinoza! Since my client has it on a Windows Server, the common solutions doesn’t work. But I could find out the solution and I’m posting it here in case someone else has the (unpleasant) chance to work with a Windows Server (first would be advicing the client to migrate to a Linux Server :P).

    Windows Servers use a file called ‘web.config’, so, all I did was create it, like this:

    <?xml version=”1.0″?>
    <configuration>
    <system.webServer>
    <defaultDocument>
    <files>
    <remove value=”index.php” />
    <add value=”index.php” />
    </files>
    </defaultDocument>
    <rewrite>
    <rules>
    <rule name=”Main Rule” stopProcessing=”true”>
    <match url=”.*” />
    <conditions logicalGrouping=”MatchAll”>
    <add input=”{REQUEST_FILENAME}” matchType=”IsFile” negate=”true” />
    <add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” negate=”true” />
    </conditions>
    <action type=”Rewrite” url=”index.php/{R:0}” />
    </rule>
    </rules>
    </rewrite>
    </system.webServer>
    </configuration>

    This solves the problem I was having, however, it’s highly adviced to migrate to a Linux Server, since configuration problems with some plugins persist. I’m advicing the client to migrate, hope they agree. ??

    Cheers!!

    Thread Starter Meiji

    (@meiji_lythtis)

    The step 4 I did it in the data base using this code:

    SELECT * from wp_options where option_value like ‘%172.132.something.something%’;

    And then I manually change them to net-channel.tv

Viewing 2 replies - 16 through 17 (of 17 total)