在 joomla 中更新 upload_max_filesize

Updating upload_max_filesize in joomla(在 joomla 中更新 upload_max_filesize)
本文介绍了在 joomla 中更新 upload_max_filesize的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用框架 Joomla1.5.我无法提交包含每个文件大小超过 3mb 的多个上传文件的表单.我试图将布局 default.php(views/tmpl/default.php) 中的 post_max_sizeupload_max_size 参数设置为

I am using frame work Joomla1.5. I am not able to submit form with multiple uploaded files having each file size more than 3mb. i tried to set post_max_size, upload_max_size parameters in layout default.php(views/tmpl/default.php) as

ini_set('upload_max_filesize', '5M');
ini_set('post_max_size', '15M');

但该参数仍仅显示默认大小.你能告诉我在哪里/如何在joomla中设置值

but that parameters still showing default sizes only. can you please tell me where/how to set value in joomla

提前致谢

推荐答案

找到您的服务器使用的 php.ini 文件并将 'upload_max_filesize' 值更改为更高的数字并重新启动服务器.

Find the php.ini file that your server uses and change the 'upload_max_filesize' value to a higher number and restart the server.

这篇关于在 joomla 中更新 upload_max_filesize的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)