jasuess
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: GoDaddy, IIS and Removing index.php in urlYeah, Ive been a little busy on my server today. I added BlogEngine.NET, Joomla, My own WP install, Host Connection WP install, and TandemServer. What I plan to do is offer web design/development services using primary any CMS available as well as hosting my portfolio. They all have their own folders now. My self install of WP is on http://jamessuess.com/wp/ and I just got off the phone with GoDaddy. They have their server admins looking into the issue and they believe its just an error with the Microsoft URL Rewrite Module. They should be sending an email soon after they finish looking into my issue. Ill do a full write up of my experience once I get this problem solved. GoDaddy does have decent support once you repeatidly (attempt #3 [2nd email about the issue] and #4 [second phone call about the issue])try to get a problem solved through their tech support.
Forum: Fixing WordPress
In reply to: GoDaddy, IIS and Removing index.php in urlHrm. Apparently using FileZilla was the problem. I used WinSCP and now its working like a charm. Lets see if I can get my problem solved now! Thanks for the help.
Forum: Fixing WordPress
In reply to: GoDaddy, IIS and Removing index.php in url@keeperbay/eDee, I used FileZilla to upload the WordPress files and all I got were Error 500’s. Any ideas?
Forum: Fixing WordPress
In reply to: GoDaddy, IIS and Removing index.php in url@byurick, I am running Windows because I am primarily an ASP.NET/C# developer more than I am a PHP/CGI developer. Windows allows me to work in both ASP.NET and PHP as I feel.
@keeperbay/eDee, Thanks for the insight. I wasnt sure that GoDaddy’s install would have been the problem. Ill go get started on getting my own install working on their servers.
Forum: Fixing WordPress
In reply to: GoDaddy, IIS and Removing index.php in urlEven if I just have /%postname%/ in the permalink settings it still requires index.php/ to be before the post or page name for it to work. Otherwise it 404 errors.
Forum: Fixing WordPress
In reply to: GoDaddy, IIS and Removing index.php in urlUpdate: I have a web.config file in the root folder and its working fine but once I add
<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” />
</rule>
</rules>
</rewrite>All it does is toss up Error 500.