Issue with swfupload reaching 100% and stoping.

0

Having a strange issue in which from adding any pod post with a file upload. I browse for file and open to upload and swfupload seems like its working and once it reaches 100% it stops and doesn't save the file in the media library. The funny thing is that I'm perfectly able to upload a file directly into the media library in WP's upload area. I have no idea why this is happening. I know that the media library and pods are linked so technically it should work right? Any info anyone might be able to put forth who have had this issue would be greatly appreciated. Maybe permissions issue i don't know nor do i know how to get error reports from swfupload. Thanks.

asked Mar 25 '10 at 10:18

onfire60

11

add comment
enter at least 15 characters

3 Answers

0

Figured out the issue. I installed wordpress on my server then activated the php 5 module in my cpannel then installed pods. This was the issue that is now fixed. Doing this right the first time saves a lot of hassle.

answered Feb 14 '10 at 12:34

onfire60

11

add comment
enter at least 15 characters
0

I'm having this issue too. Can you explain your fix a little more? My server is already running PHP 5...

answered Mar 25 '10 at 10:02

ckpicker

20

add comment
enter at least 15 characters
0

I figured it out. I had to add the following to my .htaccess file:

<IfModule mod_security.c> <Files async-upload.php> SecFilterEngine Off SecFilterScanPOST Off </Files>

<Files template.php> SecFilterEngine Off SecFilterScanPOST Off </Files>

<Files misc.php> SecFilterEngine Off SecFilterScanPOST Off </Files> </IfModule>

answered Mar 25 '10 at 10:18

ckpicker

20

add comment
enter at least 15 characters