我使用wp_remote_post方法在亚马逊服务器上上传视频文件。
我尝试上传1 MB文件并获得此回复:
上传文件之前的POST请求字段太大。
我可以在WordPress中使用cUrl上传大文件(最多100MB)。
所以,我想知道使用wp_remote_post可以上传的最大文件大小是多少?
感谢。
答案 0 :(得分:0)
wp_remote_post()取决于服务器默认设置值。
您需要在php.ini中设置以下值
; Maximum allowed size for uploaded files.
upload_max_filesize = 100M
; Must be greater than or equal to upload_max_filesize
post_max_size = 100M
或者您也可以通过.htaccess文件
来完成php_value upload_max_filesize 100M
php_value post_max_size 100M