これは私が本当にやらなければならない私の最初のカスタムWordpressプラグインです。一晩中この場所にいて、何が悪いのか理解できません...標準のプラグインコーディングでシンプルで基本的なものが欠けていると思います。
管理ダッシュボードのトップレベルメニュー項目を許可するプラグインを作成しました。そのシンプルなPHPアップロードフォーム。私がやりたいのは、クライアントにCSVファイルを特定のフォルダーにアップロードさせることだけです。WordPressフレームワークの外部でPHPコードをテストしたところ、機能します...しかし、実際のWordPress管理者を使用してファイルをアップロードしようとすると、送信を押してもファイルがアップロードされないため、「ページが見つかりません」に移動します。 404 "...それに加えて、本番サイトでプラグインをアクティブ化すると、エラーといくつかのマイナーなグリッチが発生します...したがって、プラグインのphpファイルに必要なコードが不足していると思います。
これが私のプラグインのメインphpファイルの完全なコードです-すべての「アップロードコード」を処理する個別のphpファイルを除いたものです
<?php
/*
Plugin Name: Points Uploader
*/
?>
<?php
add_action( 'admin_menu', 'sheets_plugin_menu' );
function sheets_plugin_menu() {
add_menu_page( 'Upload Points Sheets', 'Upload Points', 'manage_options', 'upload- points-sheets', 'sheets_plugin_page', '', 10);
}
function sheets_plugin_page() {
if ( !current_user_can( 'manage_options' ) ) {
wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
}
echo '<div class="wrap">';
echo '<h1>Upload Points Sheets</h1>';
?>
<form action="uploader.php" method="post" enctype="multipart/form-data">
<label for="file">Select a file:</label> <input type="file" name="userfile" id="file">
<br />
<button>Upload File</button>
</form>
<?php
echo '</div>';
}
?>
では、このphpページをより「標準的な」オペレーティングプラグインにするには、何を追加する必要がありますか?送信ボタンを押すと、「ワードプレス送信」コードがなく、404だけで、管理画面フィールド内で操作する方法がわかりません。あなたが提供できるどんな助けにも感謝します、私はここで本当に困惑しています。;)
...ここで必要なのがuploader.phpファイルである場合に備えてOK。物事をテストするためにネット上で見つけたサンプルコードです。
<?php
// Configuration - Your Options
$allowed_filetypes = array('.csv'); // These will be the types of file that will pass the validation.
$max_filesize = 524288; // Maximum filesize in BYTES (currently 0.5MB).
$upload_path = './upload/'; // The place the files will be uploaded to (currently a 'files' directory).
$filename = $_FILES['userfile']['name']; // Get the name of the file (including file extension).
$ext = substr($filename, strpos($filename,'.'), strlen($filename)-1); // Get the extension from the filename.
// Check if the filetype is allowed, if not DIE and inform the user.
if(!in_array($ext,$allowed_filetypes))
die('The file you attempted to upload is not allowed.');
// Now check the filesize, if it is too large then DIE and inform the user.
if(filesize($_FILES['userfile']['tmp_name']) > $max_filesize)
die('The file you attempted to upload is too large.');
// Check if we can upload to the specified path, if not DIE and inform the user.
if(!is_writable($upload_path))
die('You cannot upload to the specified directory, please CHMOD it to 777.');
// Upload the file to your specified path.
if(move_uploaded_file($_FILES['userfile']['tmp_name'],$upload_path . $filename))
echo 'Your file upload was successful, view the file <a href="' . $upload_path . $filename . '" title="Your File">here</a>'; // It worked.
else
echo 'There was an error during the file upload. Please try again.'; // It failed :(.
?>