".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)'); } }) })
美国主机商大部分[Linux主机](/#)采用的都是功能强大的cPanel控制面板,通过控制面板我们可以很轻松地管理网站。不过很多站长在操作过程中,会遇到一些功能上的限制,如常见的上传文件的大小限制为2M等,要想改变这些参数,我们是可以通过自定义php.ini来修改。
修改主机空间的[php.ini配置文件](/#),可以满足我们所需要的参数。那如何修改[cPanel面板](https://www.idcspy.com/cpanel.html "cPanel面板")中的php.ini文件呢?
方法很简单,下载cPanel根目录下的php.ini文件到本地(如果没有可以在本地新建一个php.ini),使用编辑器打开文件,找到需要修改的参数修改即可。比如要修改默认的最大上传文件大小,我们只需要找到下面代码:
upload\_max\_filesize = 2M
然后将其修改为:
upload\_max\_filesize = 100M(这里的“100M”就是你想要该的任意值)
修改完成后,再将该文件上传到根目录下(cPanel主域名根目录是“pubic\_html”)即可。
修改参数后测试一下是否可行,如果没有效果,可能是主机没有开启php.ini这个功能,这种情况建议直接咨询空间商,协助开启这个功能。
**返回cPanel教程专题:**[cPanel安装、使用教程](/#)
**提供cPanel面板的美国主机推荐:**[BlueHost美国主机](/#)、[HostGator美国主机](/#)、[GoDaddy美国主机](/#)。"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/107965.html