wplockz help

jdjones

Newbie
Joined
Jun 23, 2010
Messages
5
Reaction score
1
Hi,

Never posted on BHW before but have done plenty of reading. If this is the wrong category I apologize.

I recently installed wplockz into wordpress. The install seems to go fine, but when I click on activate, I get a 500 internal server error. The plugin does not appear on my plugins menu.

I have sent an email through their forum but don't expect to hear anything from them anytime soon since it is the weekend (holiday weekend in the U.S.)

Is anyone aware of how I might get this fixed and get started?
 
I recently installed wplockz into wordpress. The install seems to go fine, but when I click on activate, I get a 500 internal server error. The plugin does not appear on my plugins menu.

Okay, I was able to install the plugin. Now I am having another problem. When I try to use the "protection manager" and "post manager" options, I get a 500 internal server error message. This is very frustrating. I could really use some help.
 
Okay, I was able to install the plugin. Now I am having another problem. When I try to use the "protection manager" and "post manager" options, I get a 500 internal server error message. This is very frustrating. I could really use some help.

Okay, more progress, I think. I decided to open my wp-admin in windows explorer instead of firefox. When trying to access the "protection manager" and "post manager" sections of the plugin, I was not booted to a 500 error message. This time I remained in my admin section and the page said "WordPress ? ErrorYou do not have sufficient permissions to access this page." Still could use some help. I am not sure how to get things running.



Thanks.
 
I figured it out. Don't know the number of the lines that I am editing, but I was able to figure it out by googling, and reading a few articles. Funny, google lead me back to a post on BHW for a similar issue with a different plugin. Here goes.

Original:
PHP:
add_menu_page('WPlockz Global Options', 'WPlockz', 8, basename(__FILE__), array($this,'menu_global_options'));
        add_submenu_page(basename(__FILE__), 'WPlockz Protection Manager', 'Protection Manager', 8, 'Protection Manager', array($this,'menu_ad_manager'));
        add_submenu_page(basename(__FILE__), 'WPlockz Post Manager', 'Post Manager', 8, 'Post Manager', array($this,'menu_post_manager'))

New:
PHP:
add_menu_page('WPlockz Global Options', 'WPlockz', 8, basename(__FILE__), array($this,'menu_global_options'));
        add_submenu_page(basename(__FILE__), 'WPlockz ProtectionManager', 'ProtectionManager', 8, 'ProtectionManager', array($this,'menu_ad_manager'));
        add_submenu_page(basename(__FILE__), 'WPlockz PostManager', 'PostManager', 8, 'PostManager', array($this,'menu_post_manager'));

IT WORKS!!!:D

I know next to nothing about coding, I sure am glad that it isn't so complicated that you can mimic what others have done. I would be happy if this post helps someone else.
 
Back
Top