• alexolder

    (@alexolder)


    I’m working on a plugin, a very simple one for a client and I’m trying to work on an edit function by passing the id around ?id=1234

    However I’m getting permission denied when clicking the link I’ve created.

    What do I need to do, to allow this?

Viewing 15 replies - 1 through 15 (of 19 total)
  • You are working in the backend, I assume? I’m also assuming you’ve made a management page of some sort? If so, look at the url on your management page. You’ll see a string like admin.php?page=something. That ‘something’ should match a value defined when you instantiated the management page. You need to pass that string around with whatever other parameters you are sending. So ?id=1234 would be admin.php?page=something&id=1234. You can make POST forms work by putting that string in a hidden form field like <input type="hidden" name="page" value="something" />.

    Thread Starter alexolder

    (@alexolder)

    Yeah working in the Backend. I’ve created a link where I’m creating the link: admin.php?page=something&id=1234 but when clicking on the link I get permission denied.

    Ok. Then look at the function call that instantiates the page. The third or fourth parameter (Its different for top level and submenu pages) is the capability level that the user needs in order to access the page. Make sure your user has that capability. You might not want to use a values as generic as ‘id’ either. You can run into conflicts with internal stuff that way. Try something like ‘alexpluginid’ instead.

    Thread Starter alexolder

    (@alexolder)

    I’m an admin currently.

    The parameter I’m passing is ‘faqid’ nothing generic. When I don’t pass the parameter it works fine but I obviously need the ID for this part to work.

    How are you registering the backend page, can we see the line that registers the page please?

    I’m not sure what’s wrong then. Maybe if you paste some code as t3los_ suggested.

    Thread Starter alexolder

    (@alexolder)

    add_submenu_page(__FILE__, 'Edit Question', 'Edit Question', 1, __FILE__.'/edit.php', 'bluefly_faq_admin_edit');

    That registers the page, my guess is I’m missing something off the end?

    Ok, well your links should be formed in the same format as the current page’s url..

    So when viewing yourplugin/edit.php (as you’ve registered above), maybe something like..

    example.com/wp-admin/admin.php?page=yourplugin/edit.php&var=var

    Been a long time since i’ve used the add_submenu_page function, but i’m pretty sure it’s just how you’re forming your URLs …

    Thread Starter alexolder

    (@alexolder)

    ok, and how do I make it so the parameter on the end can be any number?

    Let’s simplify a little, what is the url in your address bar when you’re viewing your plugin page, and what is the url you’re using with your links?

    Thread Starter alexolder

    (@alexolder)

    List:

    admin.php?page=bluefly-faq/bluefly-faq.php/list.php

    Then linked are created that look like:

    admin.php?page=bluefly-faq/bluefly-faq.php/edit.php?faq=8

    The problem is passing ?faq=8 results in a permission denied message.

    Does the edit page work on it’s own?
    admin.php?page=bluefly-faq/bluefly-faq.php/edit.php

    Thread Starter alexolder

    (@alexolder)

    Yes.

    Would you mind providing a copy of your plugin to test, i can’t really see why that would happen, i can however run the code and test it if you like…

    Thread Starter alexolder

    (@alexolder)

    [t31os edit]

    *snip*

    Replaced with pastebin version – https://wordpress.pastebin.ca/1816182

    Keeps thread trim .. ??

Viewing 15 replies - 1 through 15 (of 19 total)
  • The topic ‘Passing parameters around in Plugin’ is closed to new replies.