".extra-menu { background-color: #f3f3f3; padding: 20px; } .extra-menu .extra-menu-h { height: 36px; } .extra-menu .extra-menu-h h3 { display:inline-block; } .extra-menu ul a{ text-decoration: none; } .extra-menu .menu-child { text-indent: 4em; } .extra-menu .menu-child:before { left: 4em; } .extra-menu .extra-menu-h h3 { line-height: 36px; } .collapse-toggle { float: right; cursor: pointer; user-select: none; display: inline-flex; align-items: center; font-size: 14px; } .collapse-toggle img { width: 30%; transform: rotate(180deg); } .collapse-content { margin-bottom: 0px !important; margin-top: 20px !important; overflow: hidden; max-height: 0; transition: max-height 0.3s ease-out; } .collapse-content.expanded { max-height: 1000px; /\* 设置一个足够大的值,确保内容可以完全展开 \*/ } .ph-id { position: relative; top: -90px; } jQuery(document).ready(function( $ ) { $('.collapse-toggle').on('click',function(){ var content = document.querySelector('.collapse-content'); content.classList.toggle('expanded'); if (content.classList.contains('expanded')) { $(this).find('div').text('收起'); $(this).find('img').css('transform','rotate(180deg)'); } else { $(this).find('div').text('展开'); $(this).find('img').css('transform','rotate(0deg)'); } }) })
SugarHosts虚拟主机默认已针对大多数网站程序优化过PHP参数,通常不需要调整。为最大化优化服务器性能,[SugarHosts](/#)虚拟主机不支持自定义php.ini文件。你可以通过htaccess来自定义一些PHP参数。
**找到htaccess**
htaccess存放在网站根目录,该文件是一个隐藏文件。在文件管理器中需要设置显示隐藏文件后才能看到。或者也可以使用FTP查看。
大部分主流网站程序默认包含了htaccess文件。如果网站根目录没有该文件,新建一个同名空白文件即可。
**调整PHP脚本单次最大可执行时间为60秒**
在htaccess中加入以下行:
php\_value max\_execution\_time 60
上述规则中的60可以替换为你需要的执行时间,单位为秒。SugarHosts虚拟主机允许的最大执行时间为180秒,为确保服务器性能,执行超过180秒的用户进程将被强制终止。
修改可执行时间是不推荐的操作。正常速度的网站程序,应当在2秒内完成执行。网站程序执行时间越长,访问者等待网站初次响应(传送第一个字节)的时间就越长。如果你的网站在日常访问中经常遇到Request Timed Out超时错误,请优先检查网站程序设置和资源使用情况。超过10秒仍未响应的网站,大部分访问者会选择关闭网页。不问缘由地增大可执行时间,不仅可能无法提升网站用户体验,而且可能使异常脚本无法及时终止,降低网站的负荷能力。
**调整PHP脚本单次执行最大可用内存为512M**
在htaccess中加入以下行:
php\_value memory\_limit 512M
默认值为256MB,足够绝大多数程序使用,如无必要,请勿调整。可调整范围为64MB–512MB
**调整PHP上传文件大小**
默认值为100MB,该设置不能修改也无需修改。如果你要上传超过100MB的文件,请通过FTP上传。如果你是要让网站用户上传超过100MB的文件,请留意SugarHosts虚拟主机不允许将虚拟主机用于文件共享或备份服务,你的使用可能已经违反可接受使用政策。"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/102652.html