dongwujie7477 2016-07-15 10:13
浏览 45
已采纳

wordpress插件重定向从页面到页面权限错误

im working on statestic wordpress plugin that allow the admin to get all the contributions of every contributor on the site daily, monthly .. etc, it have 3 pages, one contain a search button to search for username, the second page will contain the results of the name searched in first page, the 3rd page will contain a detailed report on every contribution durging a laps of time i have create my plugin this way inside the plugin folder there is: index.php

<?php
/**
* Plugin Name: wathefty
* Plugin URI: aaaaa
* Description:aaaaaaa .
* Version: aaaaa
* Author: aaaaa
* Author URI: aaaaa
**/

function wathefty_admin_actions() {
    add_menu_page('wathefty stat Display', 'wathefty', 'manage_options', 'wathefty-stat-Display','wathefty_stat_Display');

}

function wathefty_stat_Display(){include('includes/wathefty-stat-Display.php');
}
add_action('admin_menu', 'wathefty_admin_actions');



?>

style/style.css includes/whatefty-stat-display.php

<form action="admin.php?page=stats" method="post" >
<fieldset class="fieldset">
<legend class="legend">Search</legend>
<label class="label">Search by author name:</label>
<input class="input" type="text" name="click" />
<button class="button1" name="Submit" type="submit">Submit</button>
</fieldset>
</form>

includes/stats.php

<table class="table">
<thead class="thead">
<tr class="tr">
<td class="td" rowspan="2">Post author</td>
<td class="td" rowspan="2">Author category</td>
<td class="td" colspan="4">Number of posts</td>
</tr>
<tr class="tr">
<td class="td">Daily</td>
<td class="td">Weekly</td>
<td class="td">Monthly</td>
<td class="td">Yearly</td>
</tr>
</thead>
<tbody class="tbody">
<tr class="tbody">
<td class="td">wathefty</td>
<td class="td">admin</td>
<td class="td"><a href="#">10</a></td>
<td class="td"><a href="#">42</a></td>
<td class="td"><a href="#">321</a></td>
<td class="td"><a href="#">1485</a></td>
</tr>
</tbody>
</table>

includes/contributions.php

for now i didnt create function to do the job, my only problem is that when i click on submit to be redirected to stats page i get this error

wordpress You do not have sufficient permissions to access this page.

  • 写回答

2条回答 默认 最新

  • douliaodun9153 2016-07-18 11:52
    关注

    You don't have registered stats page in admin_pages.

    Solution

    Adjust your code in includes/whatefty-stat-display.php to something like this:

    <?php 
    if( isset( $_POST['wathefty_submit'] ) ) {
      include( dirname(__FILE__) . '/stats.php' );
    }
    ?>
    
    <form method="post" >
    <fieldset class="fieldset">
    <legend class="legend">Search</legend>
    <label class="label">Search by author name:</label>
    <input class="input" type="text" name="click" />
    <button class="button1" name="wathefty_submit" type="submit">Submit</button>
    </fieldset>
    </form>
    

    The main changes are in:

    • removing action attribute from <form>
    • including results (stats) page in same php file, in case there is $_POST['wathefty_submit'] set

    Note that name attribute of submit button was changed.

    Optionally, you could enclose the form in else branch, so the form wouldn't be displayed on stats page.

    Alternative Solution

    Alternative solution could be adding another menu page with add_menu_page function and including the second file there, but it doesn't seems to me right to have one menu page registered for form and other for results.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀