apache2

时间:2018-05-10 07:36:48

标签: php laravel ubuntu apache2

当我运行脚本时,我收到网关超时错误。我的服务器是apache2。我进行了以下编辑,但错误仍然存​​在。

档案:/etc/php5/apache2/php.ini

max_execution_time = 0
max_input_time = -1
memory_limit = 128M

文件:/etc/apache2/apache2.conf

#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 216000

然后我重新启动服务器重新启动操作系统,但错误仍然存​​在。如何将执行时间从 60秒增加到 5分钟

我在我的项目中使用php和laravel框架。

以下是错误的图片:

enter image description here

1 个答案:

答案 0 :(得分:0)

增加该值(确保在适当的php.ini文件中执行此操作):

max_execution_time = 0
max_input_time = -1
memory_limit = 258M
upload_max_filesize = 256M
post_max_size = 257M

然后重启apache:

sudo service apache2 restart