我正在尝试将文件上传到GalleryCMS,但每次都会收到500错误。
我检查了每个网页的可能性,我更改了我的php.ini,执行时间为1200,上传最大为300mb,我将sizelimit更改为200MB,我试图更改.htaccess文件中的modsecurity,问题不是那里。
我能够上传任何高达2MB的文件,任何我得到的HTTP错误500.你们中的任何人对此有什么新想法吗?我访问的大多数网站都没有结束。
下面是我的uploadify脚本(它附带了GalleryCMS,除了大小限制外,我没有太多改动):
$('#file_upload').uploadify({
'uploader' : '<?php echo base_url(); ?>flash/uploadify.swf',
'script' : '<?php echo base_url(); ?>index.php/api/upload/<?php echo $album->id; ?>',
'cancelImg' : '<?php echo base_url(); ?>images/cancel.png',
'folder' : '/uploads',
'auto' : false,
'multi' : true,
'scriptData' : { 'user_id' : '<?php echo $user_id; ?>' },
'fileExt' : '*.jpg;*.jpeg;*.gif;*.png',
'fileDesc' : 'Image files',
'sizeLimit' : 209715200, // 200MB
'wmode' : 'opaque',
'onSelect' : function(event, ID, fileObj) {
$('#upload-btn').show();
},
'onCancel' : function(event, ID, fileObj) {
$('#upload-btn').hide();
},
'onError' : function(event, ID, fileObj, errorObj) {
},
'onComplete' : function(event, ID, fileObj, response, data) {
var fileName = response;
$('#upload-btn').hide();
$('#new-images').show();
$.ajax({
url : '<?php echo base_url(); ?>index.php/album/resize/<?php echo $album->id; ?>/' + response,
type : 'POST',
cache : false,
success : function(response) {
if (response !== 'failure') {
var new_image = '<li><img src="<?php echo base_url(); ?>uploads/' + response + '" /><br />' + response + '</li>';
$('#new-image-list').append(new_image);
} else {
var fail_message = '<li>Thumbnail creation failed for: ' + fileObj.name + '</li>';
$('#new-image-list').append(fail_message);
}
},
error : function(jqXHR, textStatus, errorThrown) {
alert('Error occurred when generating thumbnails.');
}
});
}
});
要自行检查,网址为GalleryMe
用户名:test@test.com
密码:12345
答案 0 :(得分:0)
由于您使用的是共享主机,因此我很确定您的共享主机配置存在问题。告诉你的phpinfo();你正在使用Apache / 2和FastCGI。
我认为您的主机提供商将FastCGI Apache模块的MaxRequestLength设置得太低。
如果可能,您需要将此块添加到VirtualHost配置中:
# Work around annoying fcgid limitations
<IfModule mod_fcgid.c>
# 20MB should be enough
MaxRequestLen 20000000
</IfModule>
如果没有,您可以联系您的提供商或更改提供商。