19
You may have to increase the following to get it to work:
'post_max_size'
'upload_max_filesize'
Ok, there are a few ways you can increase these sizes:
1. php.ini file: If you have access to this file on your server then do it this way, if not:
2. Add the following lines somewhere around the top of your script or in XOOPS_ROOT_PATH.'/common.php'
Quote:
ini_set('post_max_size', '10M');
ini_set('upload_max_filesize', '10M');
3. In your .htaccess file: (in the XOOPS main dir)
Quote:
php_value post_max_size 10M
php_value upload_max_filesize 10M
Try these and see if it helps you out.