views:

181

answers:

1

Hello All, I am creating a simple plugin in wordpress this is a simple form with three fields that will save data to a database table. Plugin is activated successfully, but when i fill the form and press button to submit, it shows me a blank screen with error "You do not have sufficient permissions to access this page." i am stuck here. I searched from net but did not found any solution, can anybody guide me how can i get rid of this issue?

+1  A: 

This is a HTTP 403 error; it means you're trying to access a directory that either doesn't exist or doesn't have an index file in it. Make sure the "action"-attribute of your form is pointing to the right file.

Johannes Gorset