File Uploader Input Helper 1.0.4 Stuck at 100% Completion

0

I have the latest version of Pods (1.8.9), along with the File Upload Input Helper (1.0.4) running on WordPress 3.0. I'm using the single file uploader and it keeps getting stuck at 100%. The file appears to upload, but then just seems to get stuck. I'm using this with Pods UI (0.6.8.4). Any ideas?

alt text

asked Jul 13 at 2:58

ckpicker

1

add comment
enter at least 15 characters

7 Answers

0

I also have the following in my .htaccess file, which solved this problem I had prior to upgrading to the latest version:

 #BEGIN Image Upload HTTP Error Fix
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>

<Files xmlrpc.php>
SecFilterInheritance Off
</Files>

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

<Files misc.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
#END Image Upload HTTP Error Fix

#BEGIN Image Upload HTTP Error Fix #2
<IfModule mod_security.c>
<Files upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
<IfModule security_module>
<Files upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
<IfModule security2_module>
<Files upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
#END Image Upload HTTP Error Fix

answered Jul 13 at 3:01

ckpicker

1

add comment
enter at least 15 characters
0

I've the same problem. The url used to ajax upload has changed on the last version, you only need to update the helper to point to the new url:

upload_url: "<?php echo PODS_URL; ?>/ui/ajax/misc.php",

With this change is working fine to me.

answered Jul 14 at 1:40

elph

1

this solves the upload problem, but it seems that the file isn't correctly attached to pod.. I'll do some research ... :( – elph Jul 14 at 2:19
nevermind, a duplicated pod is giving me some headaches. With the fix mentioned above the helper should work as expected – elph Jul 14 at 5:22
add comment
enter at least 15 characters
0

I have this problem too and changing the url didnt seem to help. Running localhost. Anyone else have this problem?

answered Jul 27 at 4:47

wesbos

46

add comment
enter at least 15 characters
0

Got it - edit line 138 of input_fields

answered Jul 27 at 5:13

wesbos

46

add comment
enter at least 15 characters
0

Fixed in the latest version of this package.

answered Jul 29 at 6:21

sc0ttkclark

412

add comment
enter at least 15 characters
0

Running 1.9.1. Still an issue for me and the URL did not need any changing. Any ideas?

answered Aug 16 at 7:05

lychyi

1

add comment
enter at least 15 characters
0

Did you update to the latest version of this package?

answered Aug 16 at 9:01

sc0ttkclark

412

add comment
enter at least 15 characters