".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)'); } }) })
BlueHost[美国主机](https://www.idcspy.com/)主要有Plan A、Plan B、Plan C三种方案,可支持一键安装WordPress。我们在安装完WordPress后,为了优化网站功能,可下载安装相关主题和插件,安装中有时会收到提示:上传的文件超过了php.ini中的upload\_max\_filesize。
![](https://www.idcspy.com/wp-content/uploads/2021/04/wordpress-14.jpg)
发生上面这种情况主要是由于上传文件大小受到限制,我们可以尝试通过以下方法来进行修改。
**方法1、使用functions.php文件**
可以通过将以下代码添加到子主题的functions.php文件中来解决上传文件超过upload\_max\_filesize值的问题。
> @ini\_set(’upload\_max\_size’,’64M’);
>
> @ini\_set(’post\_max\_size’,’64M’);
>
> @ini\_set(’max\_execution\_time’,’300’);
**方法2、创建或编辑现有的php.ini文件**
将以下代码添加到您的php.ini文件中,该文件一般可以在根目录中找到。
> upload\_max\_filesize = 64M
>
> post\_max\_size = 64M
>
> max\_execution\_time = 300
**方法3、使用.htaccess文件修改**
在根文件夹中打开或创建.htaccess文件,并添加以下代码。
> php\_value upload\_max\_size 64M
>
> php\_value post\_max\_size 64M
>
> php\_value max\_execution\_time 300
>
> php\_value max\_input\_time 300
如果您尝试过以上三种方法后,还是无法解决问题,可以直接联系[BlueHost](/#)主机商,要求增加文件大小限制。BlueHost中文站可提供24x7x365客户服务,有关主机租用问题都可以及时联系客服咨询。"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/106151.html