Blackhatcodebreaker on single Wordpress posts?

mrkrabs1

Registered Member
Joined
Jan 1, 2008
Messages
96
Reaction score
20
Ok, I'm using ver. 2.0 of the script, but can't get it to work on single Wordpress posts. The box pops up, but the links are screwed up. I did read all the threads here on bhw about the script, but there was nothing that eventually worked.
Thanks
 
Google "wordpress c*p*a*l*e*a*d plugin" and use that.. (remove the *)
 
That's not what I asked for. There is a reason why I want to use bhcb
 
Is support for 2.0 really bad, or what? I've seen a few posts where people have some sort of problem with BHCB 2.0. I would suggest contacting their support and asking them to fix it.

I am glad I didn't get all hyped up and buy 2.0 when it came out.
 
If you bought the program contact support. BHW is not the BHCB support forum.
 
Ehm. I didn't tell you to use c*p*a*l*e*a*d - I told you about a plugin.

Hint: that plugin also works for bhcb.

Why don't you just say it the easy way. I'm sure many people would appreciate that
 
If you bought the program contact support. BHW is not the BHCB support forum.

I sent them several emails, but no answere. Others are also experiencing that as well. So no support which really sucks
 
Brad is on the forum now...but yeah the support leaves a lot to be desired...i ususally dont get into disputes with dudes online but im starting to hate all these dudes who say they are not support for whatever program dudes are asking about...first of all...the majority of posts and shares on here are about not paying for the shit...and in that spirit a lil help every now and then is to be expected...even for shit that dudes pay for (like i did with bhcb) u still dont get very good help...brad helped me out the nite i bought it and that was that...I've had other problems but he couldnt resolve them...w/e...to the O.P.
what u need to do is look for this plug in for custom header...its by uber-something (google it) put the custom header plugin on and then put ur location of the lock in the field like this <script type="text/javascript" src="http://www.yoursite.com/lock.js"></script>
 
Ok, I'm using ver. 2.0 of the script, but can't get it to work on single Wordpress posts. The box pops up, but the links are screwed up. I did read all the threads here on bhw about the script, but there was nothing that eventually worked.
Thanks

In the links.txt there CANT be any extra lines. Mine were messed up until I realized I had a few extra lines at the bottom (Even with no text). Hopefully this will fix your problem. Shoot me a message on any IM in my profile and I'll try to help. Good luck!
 
Brad is on the forum now...but yeah the support leaves a lot to be desired...i ususally dont get into disputes with dudes online but im starting to hate all these dudes who say they are not support for whatever program dudes are asking about...first of all...the majority of posts and shares on here are about not paying for the shit...and in that spirit a lil help every now and then is to be expected...even for shit that dudes pay for (like i did with bhcb) u still dont get very good help...brad helped me out the nite i bought it and that was that...I've had other problems but he couldnt resolve them...w/e...to the O.P.
what u need to do is look for this plug in for custom header...its by uber-something (google it) put the custom header plugin on and then put ur location of the lock in the field like this <script type="text/javascript" src="http://www.yoursite.com/lock.js"></script>

Already found this suggestion somewhere. Tried but didn't solve the problem.
Also the thing with the links.txt is checked. On warriorforum I found a post, which says, that you have to edit the htaccess somehow. Brad also says that. But how?
 
Instead of logging in via an FTP program login to an FTP manager throug CPanel/Plesk, as some FTP managers will not show your htaccess file.
 
Instead of logging in via an FTP program login to an FTP manager throug CPanel/Plesk, as some FTP managers will not show your htaccess file.

That is not the problem. Can see htaccess but don't know what changes have to be made there:)
 
That is not the problem. Can see htaccess but don't know what changes have to be made there:)
What did the warrior forum say to edit? Right click on the file and click edit and then save afterwards to make changes to it.
 
I think there's some misunderstanding going on. They said, that there have to be a couple of lines added to htaccess for the script to work on wordpress posts
 
What exactly is "screwed" up with the link? Do you use a plug-in to add them on single post? I guess you won't want to post the website link, but maybe screenshot?

I have never added anything to the .htaccess to make it work on WordPress posts (individual or all) - It works out of box.
 
No I don't use a plugin. What plugin do you use to make it work?? I receive a 404 at the spot, where the links are supposed to be displayed. The script is looking for the goto.php in the permalink directory, but of course it's not there, but in the root folder
 
Though I loved BHCB for a while, I wanted to have 'advanced' gateway so I built my own. I no longer use BHCB.

This is how I used to add it (or any gateway script):

To make it execute or load only on posts and pages (all), paste the following code in header.php:

Code:
<?php if ( is_single() ){ ?>
<script type="text/javascript" src="lock.js"></script>
</<?php } ?>

It sets a rule IF the page is single (single means posts/pages), load the javascript ELSE do nothing.

OR

To add it on specific (individual posts) -

Paste the following code in header.php, before </head> tag:

Code:
<?php
	$js_cb = get_post_meta($post->ID, 'gateway', fale);
	if (!empty($js_cb) && is_single()) {
		echo '<script type="text/javascript" src="'; 
		echo $js_cb;
		echo '"></script>';
    }
?>

Now all you have to do is create a "Custom Field" for the post - Name: gateway Value: full URL to your lock.js (e.g. http://domain.com/blog/lock.js).

The script is looking for the goto.php in the permalink directory, but of course it's not there, but in the root folder

Are you using it on sub-directories?
 
Though I loved BHCB for a while, I wanted to have 'advanced' gateway so I built my own. I no longer use BHCB.

This is how I used to add it (or any gateway script):

To make it execute or load only on posts and pages (all), paste the following code in header.php:

Code:
<?php if ( is_single() ){ ?>
<script type="text/javascript" src="lock.js"></script>
</<?php } ?>

It sets a rule IF the page is single (single means posts/pages), load the javascript ELSE do nothing.

OR

To add it on specific (individual posts) -

Paste the following code in header.php, before </head> tag:

Code:
<?php
	$js_cb = get_post_meta($post->ID, 'gateway', fale);
	if (!empty($js_cb) && is_single()) {
		echo '<script type="text/javascript" src="'; 
		echo $js_cb;
		echo '"></script>';
    }
?>

Now all you have to do is create a "Custom Field" for the post - Name: gateway Value: full URL to your lock.js (e.g. http://domain.com/blog/lock.js).



Are you using it on sub-directories?

First thanks for your time, but it still is the exact same thing as it was before. No I'm not using any subdirectories. When the script executes, it is still looking for the goto.php in the permalink directory like www.mysite.com/post1/goto.php
 
Back
Top