file upload failed roundcube

apache logs? file size? permission error? many ideas.. but... too few informations...

check apache error log for see any useful information

Regards
 
hello,
file size: any file! alse 2kb can not be upload,and my max file size in php.ini is 10mb
the error when i try to attach any file : file upload failed
apache error log
Code:
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
shmem.c:35: cannot create shared memory /var/tmp/clamav.shm: statistics will not be available
 
i've tried to reinstall or update roundcube and get this ssh error:
Code:
[root@server custombuild]# ./build roundcube
cp: `/var/www/html/roundcube/logs' and `/var/www/html/roundcubemail-0.5.2/logs' are the same file
cp: `/var/www/html/roundcube/temp' and `/var/www/html/roundcubemail-0.5.2/temp' are the same file
Editing roundcube configuration...
Roundcube 0.5.2 has been installed successfully.
ERROR: Wrong 'suhosin.session.encrypt' option value. Read REQUIREMENTS section in INSTALL file or use Roundcube Installer, please![root@server custombuild]#
 
this problem :
Code:
ERROR: Wrong 'suhosin.session.encrypt' option value. Read REQUIREMENTS section in INSTALL file or use Roundcube Installer, please!

fixed by add this line in the end of php.ini
Code:
[suhosin]
suhosin.session.encrypt = Off

my /var/www/html/roundcubemail-0.5.2/.htaccess:
Code:
<IfModule mod_php5.c>
php_flag	display_errors	Off
php_flag	log_errors	On
# php_value	error_log	logs/errors

php_value	upload_max_filesize	15M
php_value	post_max_size		16M
php_value	memory_limit		64M

php_flag	zlib.output_compression		Off
php_flag	magic_quotes_gpc		Off
php_flag	magic_quotes_runtime		Off
php_flag	zend.ze1_compatibility_mode	Off
php_flag 	suhosin.session.encrypt 	Off

#php_value	session.cookie_path		/
php_value	session.auto_start	0
php_value	session.gc_maxlifetime	21600
php_value	session.gc_divisor	500
php_value	session.gc_probability	1

# http://bugs.php.net/bug.php?id=30766
php_value	mbstring.func_overload	0
</IfModule>

still file upload failed :confused:
 
Back
Top