您现在的位置是:首页 > 教程 > dedecms教程dedecms教程
织梦dede后台Fatal error: Allowed memory size of 8388608 bytes
忆柳2024-05-30 21:03:29dedecms教程已有人查阅
导读解决方式一: ( 我用这方式就可以安装了) 打开在.htaccess 文件裡 最上面开头加上 php_value max_execution_time 1
解决方式一: ( 我用这方式就可以安装了)
打开在.htaccess 文件裡 最上面开头加上
或者在httpd.conf主机配置里改
解决方式三: (这个我试过没什麽作用..请高手帮忙解释)
如出现这种问题则表明,程序运行占用的记忆空间超过了8M,解决方法修改PHP.ini文件将
memory_limit = 8M ;
的值改为12M就可以了
打开在.htaccess 文件裡 最上面开头加上
php_value max_execution_time 1200
php_value memory_limit 200M
php_value post_max_size 200M
php_value upload_max_filesize 200M
解决方式二: (这我就不太会请高手解释)或者在httpd.conf主机配置里改
解决方式三: (这个我试过没什麽作用..请高手帮忙解释)
如出现这种问题则表明,程序运行占用的记忆空间超过了8M,解决方法修改PHP.ini文件将
memory_limit = 8M ;
的值改为12M就可以了
This error message can spring up in a previously functional PHP script when the memory requirements exceed the default 8MB limit. Don’t fret, though, because this is an easy problem to overcome.To change the memory limit for one specific script by including a line such as this at the top of the script:
ini_set("memory_limit","12M");
The 12M sets the limit to 12 megabytes (12582912 bytes). If this doesn’t work, keep increasing the memory limit until your script fits or your server squeals for mercy.
You can also make this change permanently for all PHP scripts running on the server by adding a line like this to the server’s php.ini file:
memory_limit = 12M
Keep in mind that a huge memory limit is a poor substitute for good coding. A poorly written script may inefficiently squander memory which can cause severe problems for frequently executed scripts. However, some applications are run infrequently and require lots of memory like importing and processing a big data file.
如果是vps云主机,服务器用户推荐大家采用第三种方法。
本文标签:
很赞哦! ()
相关文章
随机图文
-
dedecms织梦data目录迁移后怎么找到data文件夹位置
接到朋友提问:织梦data目录迁移了,如何找到data文件夹位置:方法一:找到系统基本参数设置-性能设置-里面有一个 -
网站织梦dede正文的行距怎么调整
对于很多不懂CSS的用户来说,看到网站文章页行间距和内容编辑器里不一样,这时候大家需要对CSS进行下修改。 -
织梦dedecms删除所有栏目文章后文章ID从1开始的SQL语句
这个修改方法很简单,从模板无忧那里找到的,只需要在后台系统-SQL命令行工具里面运行以下语句即可,不用采用笨方法重新安装织梦CMS了。 -
dede织梦为已经发布过的文章关键词加链接的方法
修改文件/include/arc.archives.class.php ,找到这一段:友情提示一下:文件的修改请注意备份!在后台,系统设置里设定一下自动替换的次数就行了。
留言与评论 (共有 条评论) |