AWS
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-SpamShield] All my sites crashedI’m getting:
`PHP Fatal error: Uncaught Error: Class ‘WPSS_Utils’
Forum: Plugins
In reply to: [WP-DownloadManager] Remote File URL brokeI changed the setting for the urls’s from file name to file id and the download from remote url now works. You’re link is to file id so it does work.
The problem seems to be with file name for permalinks.
Forum: Plugins
In reply to: [WP-DownloadManager] Remote File URL brokeI tried redirect to file. Still doesn’t work. It appends my site url to the begining download url.
Forum: Installing WordPress
In reply to: CGI Script Error?Make sure your temp and sessions directory is writable by NETWORK.
Best way to cure it is to create C:\Inetpub\Temp and C:\Inetpub\Sessions and edit php session save path to the new sessions directory and temp to the new temp directory. Restart IIS to read the new config. This should stop the problem.
Another thng is make sure
cgi.force_redirect is set to 0 ,cgi.rfc2616_headers = 1, cgi.fix_pathinfo is set to 1.Forum: Installing WordPress
In reply to: PHP has encountered an Access Violation at . . . .Make sure you have a temp folder and session save folder defined in php.ini.
When you create those folders give NETWORK write and modify permissions to them.Forum: Installing WordPress
In reply to: Windows/IIS Permalinks Bug?Found the problem and it wasn’t anything with WP.
Forum: Installing WordPress
In reply to: 403 ErrorMake sure index.php is set as the default document in your server config file.
Forum: Installing WordPress
In reply to: Should DSN be on or off for MySQL database at GodaddyTurn it off. DSN is used to connect to a db using an OBDC driver. You turn this on if you are using a .Net app or asp to connect to a mysql database.
When using php or perl scripts you don’t need this on.
Forum: Installing WordPress
In reply to: CGI ErrorTry this page on Microsoft’s site.
https://support.microsoft.com/default.aspx?scid=kb;EN-US;884764
Also make sure you have these set in php.ini:
cgi.fix_pathinfo = 1
cgi.force_redirect = 0
fastcgi.impersonate = 1
cgi.rfc2616_headers = 1Forum: Fixing WordPress
In reply to: PHP has encountered an Access ViolationAre you running Windows Server?
If you are check permissions on your temp directory and session save directory.
This error normally happens when php can’t write to one of those directories.
If you didn’t assign a value for those in php.ini then C:\Windows\Temp is being used and if write permissions aren’t given to NETWORK you’ll get that error.