[SOLVED] IIS Issues

-Screenshot Removed-
The attached thumbnail will be too low quality for you to view. Please use the link above to view it on my website. If you have another method, I am willing to comply. Please note that this is an image, not the live view.
 
Last edited by a moderator:
Thanks. I will do my best. I will let you know how it turns out.

Good luck, also I removed you screenshot/link. I suggest you remove it from your site as well.

It contains a whole bunch of data about your install that can lead to vulnerabilities.
 
Try this:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name="Wordpress Rewrite" 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" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>	
</configuration>
 
Glad I was able to help!

Thank you for the contribution and kind words.

If you have any more problems let me know :)
 
Actually, I am having trouble updating my plugins. I have already installed the ftp server but I have no idea how to configure it. I tried doing a google search but the results I found tell me to click on menus that don't exist on my version of iis.
 
Can you expand on that a little bit?

What plug-ins? Any error message? link to tutorials you found?

Note: The last time I played with Wordpress was <5 years ago so again, no promises :)
 
Having trouble getting the login to work for FTP on IIS. I should mention I run 2 word press blogs, both on the same ip, but one pointed at test.truthtroubles.com and the other pointed at betaleaf.net. I got 2 ftp servers set up on 2 ports, 21 and 22, but the login won't work.
 
I wouldn't use two different ports...

I would only use port 21 and set up different user roots to serve as two different ftp locations.

As for the errors, my guess is that you did not set up IIS manager accounts for them so they are not being authenticated correctly.

I believe you will have all the port forwarding correct and enabled if it was working with WAMP so we will ignore that.

These walkthrough is pretty comprehensive:
Configure FTP with IIS Manager Authentication in IIS 7 : The Official Microsoft IIS Site
Using FTP Virtual Host Names in IIS 7 : The Official Microsoft IIS Site
 
I wouldn't use two different ports...

I would only use port 21 and set up different user roots to serve as two different ftp locations.

As for the errors, my guess is that you did not set up IIS manager accounts for them so they are not being authenticated correctly.

I believe you will have all the port forwarding correct and enabled if it was working with WAMP so we will ignore that.

These walkthrough is pretty comprehensive:
Configure FTP with IIS Manager Authentication in IIS 7 : The Official Microsoft IIS Site
Using FTP Virtual Host Names in IIS 7 : The Official Microsoft IIS Site
The first link looks nothing like the version of IIS im using. The second link contains steps I have already completely. There was nothing more I can do. I am heading to bed for the night. I will see you all in the morning.
 
I tried the following, but I am still getting error 530 Valid hostname is expected.

Edit: Something triggered a memory that I read recently. I had to format my username like this <Domain>|<User>, or in my case, Betaleaf.net|TestUser. I am able to connect now. Thanks.
 
Good work!

is it betaname|user or is it betaname\user? (my guess would be the second as the \ is used to differentiate between domain users)
 

Has Sysnative Forums helped you? Please consider donating to help us support the site!

Back
Top