Updating upload_max_filesize in joomla(在 joomla 中更新 upload_max_filesize)
问题描述
我正在使用框架 Joomla1.5.我无法提交包含每个文件大小超过 3mb 的多个上传文件的表单.我试图将布局 default.php(views/tmpl/default.php) 中的 post_max_size、upload_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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 joomla 中更新 upload_max_filesize
基础教程推荐
- 主题化 Drupal 7 的 Ubercart “/cart"页 2021-01-01
- Yii2 - 在运行时设置邮件传输参数 2022-01-01
- php中的PDF导出 2022-01-01
- php 7.4 在写入变量中的 Twig 问题 2022-01-01
- 将变量从树枝传递给 js 2022-01-01
- Web 服务器如何处理请求? 2021-01-01
- 如何在数学上评估像“2-1"这样的字符串?产生“1"? 2022-01-01
- PHPUnit 的 Selenium 2 文档到底在哪里? 2022-01-01
- 使用 scandir() 在目录中查找文件夹 (PHP) 2022-01-01
- php中的foreach复选框POST 2021-01-01
