upload fails

MtK

Verified User
Joined
Aug 2, 2007
Messages
405
Hey,
I'm trying to upload files through DA's file manager, and I get a blank page or even:
Code:
This webpage is not available
The webpage at http://my_da_domain:2222/CMD_FILE_MANAGER might be temporarily down or it may have moved permanently to a new web address.
Error 101 (net::ERR_CONNECTION_RESET): Unknown error.

when I look in the error log I see:
Code:
Request::Unable to create a tmpfile for writing post from MY_IP : Permission denied

I've already changed the tmpdir (in directadmin.conf) and changed permissions.

is there anything else to do/try?
 
I've tried both big (<5MB) and small ones (a few KBs)
 
If it's not tmpdir issue, I have no more ideas. Will you show the output for:

Code:
cd /usr/local/directadmin
./directadmin c | grep tmpdir

and

Code:
ls -ld `/usr/local/directadmin/directadmin c | grep tmpdir | cut -d \= -f2`

Code:
df -h

Code:
df -i

???
 
Code:
# cd /usr/local/directadmin
# ./directadmin c | grep tmpdir
tmpdir=/home/tmp
backup_tmpdir=/home/tmp

Code:
# ls -ld `/usr/local/directadmin/directadmin c | grep                                                                              tmpdir | cut -d \= -f2`
drwxrwxrwt 2 root root 4096 Apr  2 18:38 /home/tmp
drwxrwxrwt 2 root root 4096 Apr  2 18:38 /home/tmp

Code:
# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/sda5              41G  2.8G   36G   8% /
/dev/sda2              49G  181M   46G   1% /tmp
/dev/sdb2              97G   23G   70G  25% /var
/dev/sdb1             485G   51G  410G  11% /home
/dev/sda1             487M   23M  439M   5% /boot
tmpfs                 5.9G     0  5.9G   0% /dev/shm
Code:
# df -i
Filesystem            Inodes   IUsed   IFree IUse% Mounted on
/dev/sda5            10933824  109296 10824528    1% /
/dev/sda2            13107200      51 13107149    1% /tmp
/dev/sdb2            26214400  525119 25689281    3% /var
/dev/sdb1            131072000 3311322 127760678    3% /home
/dev/sda1             128520      41  128479    1% /boot
tmpfs                1536317       1 1536316    1% /dev/shm
 
Back
Top