Storage is full in remote upload

dawidleon4174

New Member
YetiShare User
Aug 9, 2014
5
0
0
Hello,

I have problem with my site. I have space on server. When i try upload file from my computer, all work greats but when i try use remote upload then i got File upload space full. Error: Upload storage full, please delete some active files and try again.

Can someone tell me what can be wrong? Some config php.ini or nginx?
 

adam

Administrator
Staff member
Dec 5, 2009
2,046
108
63
The url upload check is via this function:

if(UserPeer::getAvailableFileStorage($Auth->id) <= 0)

So this checks the available space for the current logged in user.

This limit is pulled from the user account 'storageLimitOverride' value. (in admin, edit user, storage override)
or
The global setting, FREE_USER_MAXIMUM_STORAGE. This can be found in the admin area, site settings. If it's a paid or admin user look at PAID_USER_MAXIMUM_STORAGE.

Setting both of these to 0 (zero) will set no limit.