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 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog