我有一个网站,用户可以注册并更新他们的个人资料信息。分配给他们的订户用户角色。为了更新图像我正在使用wp媒体上传器。当订阅者用户使用本地文件图像上传文件图像时,会显示错误
上传时出错。请稍后再试。
如果我刷新页面,则会注销用户。
如果管理员用户遵循相同的程序,那么一切正常。
以下是图片上传的代码:
<i class="fa fa-cloud-upload" ></i>
<input class="criteria-file button" id="your_image_url_button" type="button" value="Upload File"/>
<script>
var image_custom_uploader_file;
var $thisItem = '';
jQuery(document).on('click','.criteria-file', function(e) {
e.preventDefault();
$thisItem = jQuery(this);
//If the uploader object has already been created, reopen the dialog
if (image_custom_uploader) {
image_custom_uploader.open();
return;
}
//Extend the wp.media object
image_custom_uploader_file = wp.media.frames.file_frame = wp.media({
title: 'Choose File',
button: {
text: 'Choose File'
},
multiple: false
});
//When a file is selected, grab the URL and set it as the text field's value
image_custom_uploader_file.on('select', function() {
attachment = image_custom_uploader_file.state().get('selection').first().toJSON();
var url = '';
url = attachment['url'];
var filename ='';
filename = attachment['filename'];
$thisItem.parent().parent().parent().find('.criteria-image-url').val(url);
$thisItem.parent().parent().parent().find('.criteria-image-url-name').val(filename);
$thisItem.parent().parent().parent().find('.file-name').val(filename);
$thisItem.parent().parent().parent().find('.criteria-file').css("display", "none");
$thisItem.parent().parent().parent().find('.criteria-file-remove').css("display", "block");
$thisItem.parent().parent().parent().find(".fa-cloud-upload").css("display", "none");
$thisItem.parent().parent().parent().find(".fa-trash-o").css("display", "block");
});
//Open the uploader dialog
image_custom_uploader_file.open();
});
jQuery(document).on('click','.criteria-file-remove', function(e) {
jQuery(this).parent().parent().parent().find('.criteria-image-url').val('');
jQuery(this).parent().parent().parent().find('.criteria-image-url-name').val('');
jQuery(this).parent().parent().parent().find('.file-name').val('');
jQuery(this).parent().parent().parent().find('.criteria-file').css("display", "block");
jQuery(this).parent().parent().parent().find(".fa-cloud-upload").css("display", "block");
jQuery(this).parent().parent().parent().find(".fa-trash-o").css("display", "none");
jQuery(this).css("display", "none");
});
</script>
我尝试增加定义(&#39; WP_MEMORY_LIMIT&#39;,&#39; 512M&#39;);但是没有工作。
任何人都可以建议我如何解决这个问题。
先谢谢。