shadowgroupptyltd
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Resolution to the dreaded HTTP error during media uploadsI found that if I add this to my .htaccess it also works:
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>Worth a try if you’ve failed with other solutions.
P
Forum: Fixing WordPress
In reply to: Images won't load in gallery after WP updateI had a quick look at your issue and noticed that the link off your websites navigation that goes to the blondes page is https://www.mitchellwade.com/blondes/ and the one you posted is https://www.mitchellwade.com/portfolio/blondes/ and that addition of the /portfolio/ in the link redirects the visitor to https://www.mitchellwade.com/portfolio/blondes-001/
Don’t know if this helps or not, just an observation.
Forum: Fixing WordPress
In reply to: HTTP Error using Image Uploader (WP 3.1/3.2)I also added this to the bottom of my standard WordPress permalinks .htaccess file and it worked:
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>Hope this helps others too.
Thanks Hockeyfreak
Forum: Fixing WordPress
In reply to: 3:2 Impossible to swith to VISUAL modeI had the same problem, but when I chmod the contents of the wp-includes/js/tinymce folder to add execute so now they are 755 it worked again.
I usually use FireFox now version 5 which had the problem but I didn’t see any errors, but when I changed to IE8 I saw some scripting problems with the tinyMCE files, like not found or similar. I then looked around this area and tried the chmod, expecially on the .php and .js files.
Hope this helps you too.
Forum: Fixing WordPress
In reply to: How to solve array_shift () warningI also had this problem and thought that the array may not have been defined properly, so I changed line 21 of /wp-content/plugins/custom-contact-forms/modules/widgetcustom-contact-forms-dashboard.php from $user_roles = $current_user->roles;
to this
$user_roles = array($current_user->roles);Then there were no more of those errors.
Could one of you send the error to Taylor Lovett (https://www.taylorlovett.com/wordpress-plugins/) the developer as I don’t have time today.
Shadow