idobi
Forum Replies Created
-
Forum: Plugins
In reply to: [YOURLS Link Creator] Allow non-admin access?Contributors
Forum: Plugins
In reply to: [WP Social AutoConnect] Merge user accountI suppose manually associating a Facebook ID with an existing user account would be a more accurate description.
Forum: Fixing WordPress
In reply to: iFrame DisappearingInstall “Capability Manager” and enable unfiltered_html for editors. If you’re running multisite, you’ll also need Unfiltered MU.
Forum: Plugins
In reply to: Automatically move uploaded files to uploads directoryPHP is case sensitive.
$afile[“tmp_name”] should be $aFile[“tmp_name”]
Doesn’t solve the directory issue, though.
To be honest, I don’t remember.
Forum: Plugins
In reply to: [Plugin: Redirection] Home Page Redirects to new wordpress pageSame problem with the latest version (2.1.28) and WordPress 3.0.1.
Plugin will work if you disable the “URL Monitoring” option.
Forum: Fixing WordPress
In reply to: Upload problem on IISProblem resolved:
ISS has maxAllowedContentLength limit of 30MBModify ‘Request Filtering’ (not found in my ISS Manager) or modify ApplicationHost.config file:
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength=”2000000000″/>
</requestFiltering>
</security>