XF 1.1 Upload error

Dakis

Well-known member
Licensed customer
I can upload everything just fine, but another one of my admins gets this error when uploading an image as attachment in a thread or in the XF albums add-on:


The following error occured:

undefined (and then the filename)

Any ideas what this could be?
 
Well that error is very descriptive. :cautious:

Anything more specific in the log?

Admin CP -> Tools -> Server Error Log

It could be a lack of write access in data and internal_data. If you have shell access then try running these commands to recursively set permissions in those directories:

Code:
chmod -R 777 data

chmod -R 777 internal_data

You might also try 755 permissions. Depending on how PHP is installed, 755 may still be writable. I have seen some server configurations throw errors with 777.
 
Yeah sounds client side. Specifically when if happens check the browser F12 console for any errors logged there.

Also ask him to disable any browser extension. Especially Adblock.
 
Back
Top Bottom