System notice problem

valentinkaradakov2337

New Member
YetiShare User
Mar 25, 2013
9
0
0
ERROR:

Your server tmp folder only has -654,072 KB, yet your max file upload is 1.50 GB. Please contact your host to increase.

I use centos 6 32bit + control panel webuzo
 

ysmods

New Member
Jan 29, 2013
860
1
0
UK
www.ysmods.com
Looks more like a /tmp folder problem not max file size.

If you run cPanel you can do the following

Login via ssh
pico /scripts/securetmp

Edit this line
my $tmpdsksize = 512000; # Must be larger than 250000
example (2GB):
my $tmpdsksize = 2097152; # Must be larger than 250000

service mysql stop
service httpd stop
umount /var/tmp
umount /tmp
rm -rf /usr/tmpDSK
/scripts/securetmp --auto
service mysql start
service httpd start
df -h
 

valley_webuzo

New Member
Jul 26, 2013
1
0
0
You can increase the upload limit from the php.ini located at /usr/local/emps/etc/php.ini and restart the Webuzo service for the changes to take effect using the following command.

Root > service webuzo restart

Also, if you could provide the steps to replicate the error, it will better serve to fix your issue quickly.