简体   繁体   English

当我单击“媒体”>“ WordPress中的库”时,管理图像未显示为什么?

[英]When i click on Media > library in WordPress admin images are not showing why is that?

I am using WordPress 4.8 in my website. 我在网站上使用WordPress 4.8。 When i click on Media > library i found following error "No Results Found The page you requested could not be found. Try refining your search, or use the navigation above to locate the post." 当我单击媒体>库时,发现以下错误“找不到结果。找不到您所请求的页面。尝试优化搜索,或使用上面的导航找到帖子。”

Why my Media "upload.php" page is not opening? 为什么我的媒体“ upload.php”页面无法打开? http://www.classic-polos.com/wp-admin/upload.php http://www.classic-polos.com/wp-admin/upload.php

I have also attached Screenshot. 我还附上了截图。 enter image description here 在此处输入图片说明

Check with these options: 检查以下选项:

1 => Add this code in .htaccess : 1 =>将此代码添加到.htaccess

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

2 => Assign 755 recursive permissions to wp-content folder 2 =>为wp-content文件夹分配755递归权限

3 => upgrade your wordpress to the latest version 3 =>将您的wordpress升级到最新版本

Thanks, 谢谢,

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM