メディアファイルはアップロードフォルダに存在しますが、表示されません
-
-
これは、フォルダのアクセス許可の問題である可能性があります.[this](https://codex.wordpress.org/Changing_File_Permissions)をチェックして確認してください.This could possibly be folder permission issue. Please check [this](https://codex.wordpress.org/Changing_File_Permissions) to confirm.
- 1
- 2016-09-25
- Prasad Nevase
-
つまり、メディアライブラリに表示するには、ファイルがサーバー上に物理的に存在し、データベースにも登録されている必要があります.いずれかの要件が欠落している場合、それらは表示されません.バックエンドから画像をアップロードできない場合は、権限の問題である可能性があります.2016フォルダーを777に設定して、再試行してください.それが機能する場合は、問題のサポートをホスティングに依頼するか、サーバーへのSFPT/FTP接続を支援するプラグインを使用してください.In other words, to show up in the Media Library, files must be BOTH physically on the server AND also registered in the database. If either requirements art missing, they wont show up. If you cant upload images from the backend, it's most likely a permission issue. Try to set the 2016 folder to 777 and try again. If it works then ask your hosting for support on the issue, or use a plugin that help with SFPT/FTP connections to the server.
- 1
- 2016-09-26
- The J
-
3 回答
- 投票
-
- 2016-09-25
ファイルを
wp-content/uploads
にアップロードするだけでは、 Media Library に表示されません.表示するには、これらのメディアIDがデータベースに存在する必要があります.メディアライブラリにアップします.アップロードフォルダにすでにファイルがあり、それらをデータベースに追加したい場合は、このプラグインでサーバーからファイルを追加します.
しかし、これは正しい解決策ではありません.代わりに、そのアップロードフォルダの権限の問題を修正してください.
Just by uploading files into the
wp-content/uploads
won't show up in the Media Library , those media ID's needs to be there in the database to show up in the Media Library.If you already have files in the uploads folder and want to add them into the database, you can use this plugin to add files from server.
But this is not the correct solution instead fix the permissions issue for that uploads folder.
-
- 2020-05-15
2020年に更新された新しいプラグインには、メディア同期を使用できます. プラグインの説明は次のとおりです
「uploads」ディレクトリにあるすべてのファイルをスキャンして、どれを確認できます どれが実際にメディアライブラリにあり、どれがただ座っているか そこ.次に、データベースにインポートするものを選択できます したがって、メディアライブラリで利用できるようにします.
You can use Media Sync for new updated plugin for the year 2020. The plugin description reads
You can scan all files that are in “uploads” directory and see which ones are actually in Media Library and which ones are just sitting there. Then you can select those that you want to import to database and therefore make them available in Media Library.
-
- 2017-12-08
メディアファイルはアップロードフォルダに存在しますが、表示されません
このコードをwpconfig.phpに貼り付けて、すべて保存するだけです:) しかし、正確にどこに貼り付けるのですか?define( 'UPLOADS', 'wp-content/'.'uploads' );
Media files exist in upload folder but not showing up
Simply Paste this code in wpconfig.php and save it all is done :) but exactly where to paste?define( 'UPLOADS', 'wp-content/'.'uploads' );
ワードプレスで、メディアアップローダーで画像をアップロードしようとしましたが、「ディレクトリwp-content/uploads/2016/09を作成できませんでした」と表示されます.次に、フォルダを正しく作成します.そして今、メディアアップローダーでファイルをアップロードしようとすると、「ディレクトリwp-content/uploads/2016/09に移動できませんでした」と表示されます.最後に、画像をフォルダにアップロードしてから、メディアライブラリとメディアライブラリをチェックして「メディアが見つかりません」と表示しました.
なぜそれが起こっているのですか?