Solved - File Upload Error - APPLICATION ERROR #15
Posted: 05 Oct 2007, 12:40
OK, I've gone through the existing threads on this subject, and have not found a solution as of yet. I have a new install of Mantis 1.1.0a4. I can submit issues and use all the wonderful functionality of Mantis with the exception of uploading files. The error I get is:
This is regardless of what file type or size that I attempt to upload. The issue is created, but no attachments are processed. I desire to have the attachments saved to disk as oppossed to database, though at this point I'd be happy with any working solution as setting it to database comes up with the same error.
mySQL - 4.1.22
php - 4.4.4
Here are the settings from my config file for Upload:
Here are my php.ini settings:
Thoughts, comments? ANY help would be greatly appreciated. Thanks in advance!
Code: Select all
APPLICATION ERROR #15
File upload failed. File is not readable by Mantis. Please check the project settingsmySQL - 4.1.22
php - 4.4.4
Here are the settings from my config file for Upload:
Code: Select all
###################################
# Mantis File Upload Settings
###################################
# --- file upload settings --------
# This is the master setting to disable *all* file uploading functionality
#
# If you want to allow file uploads, you must also make sure that they are
# enabled in php. You may need to add 'file_uploads = TRUE' to your php.ini
#
# See also: $g_upload_project_file_threshold, $g_upload_bug_file_threshold,
# $g_allow_reporter_upload
$g_allow_file_upload = ON;
# Upload destination: specify actual location in project settings
# DISK, DATABASE, or FTP.
$g_file_upload_method = DISK;
# When using FTP or DISK for storing uploaded files, this setting control
# the access permissions they will have on the web server: with the default
# value (0400) files will be read-only, and accessible only by the user
# running the apache process (probably "apache" in Linux and "Administrator"
# in Windows).
# For more details on unix style permissions:
# http://www.perlfect.com/articles/chmod.shtml
$g_attachments_file_permissions = 0400;
# FTP settings, used if $g_file_upload_method = FTP
$g_file_upload_ftp_server = 'www..com';
$g_file_upload_ftp_user = '';
$g_file_upload_ftp_pass = '';
# Maximum file size that can be uploaded
# Also check your PHP settings (default is usually 2MBs)
$g_max_file_size = 5000000; # 5 MB
# Files that are allowed or not allowed. Separate items by commas.
# eg. 'php,html,java,exe,pl'
# if $g_allowed_files is filled in NO other file types will be allowed.
# $g_disallowed_files takes precedence over $g_allowed_files
$g_allowed_files = '';
$g_disallowed_files = '';
# prefix to be used for the file system names of files uploaded to projects.
# Eg: doc-001-myprojdoc.zip
$g_document_files_prefix = 'doc';
# absolute path to the default upload folder. Requires trailing / or \
$g_absolute_path_default_upload_folder = '';Code: Select all
;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;
; Whether to allow HTTP file uploads.
file_uploads = On
; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
; upload_tmp_dir =
; Maximum allowed size for uploaded files.
upload_max_filesize = 20M