Search…

X3 Photo Gallery Support Forums

Search…
 
Erik
Topic Author
Posts: 8
Joined: 16 Jul 2008, 12:54

Upload ioError #2038 with YUIUPLOADER

25 Nov 2008, 16:32

Code
[IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2038"]
This error is probably occuring because of ModSecurity on your webserver. (googled)

Refer to this post as well: https://forum.photo.gallery/viewtopic.p ... oad++error
 
User avatar
Nick
Imagevue Hitman
Posts: 2872
Joined: 02 May 2006, 09:13

26 Nov 2008, 15:02

I replied you in PM, rule of the thumb - disable mod_security, it wont help much and is unofficial mod anyway.

If you can't get your hands on apache config try adding .htaccess in gallery root with:

SecFilterEngine Off

Also there is like half zillion options so if anybody want to spend some quality time with configs, try to switch them on and off, that might come in handy.

For now I would say that mod_security is half- or not-compatible with any Flash uploader.

About error 406:
http://urbangiraffe.com/2005/08/20/myst ... 406-error/
firedev.com
 
Erik
Topic Author
Posts: 8
Joined: 16 Jul 2008, 12:54

27 Nov 2008, 13:38

Yay!

i fixed it with an .htaccess file in the root of the gallery, containing this text:
Code
<IfModule mod_security.c>
SecFilterScanPOST Off
SecFilterEngine Off
</IfModule>