June 19th, 2007phpLinkBid Deep links MOD
This mod is to add deep links for phplb based directories. If you are looking for the deep links mod for phpld use these tutorials:
phpld Contextual deeplinks
phpld deeplinks
phplb Deep Links:
1. create a file phplb_deeplinks.sql with the content:
ALTER TABLE `tbl_links` ADD `link_deep_url1` varchar(255) NULL;
ALTER TABLE `tbl_links` ADD `link_deep_url2` varchar(255) NULL;
ALTER TABLE `tbl_links` ADD `link_deep_url3` varchar(255) NULL;
ALTER TABLE `tbl_links` ADD `link_deep_title1` varchar(255) NULL;
ALTER TABLE `tbl_links` ADD `link_deep_title2` varchar(255) NULL;
ALTER TABLE `tbl_links` ADD `link_deep_title3` varchar(255) NULL;
Import this file in phpMyadmin to update the tbl_links structure.
2. Open link.tpl of your template
FIND:
<div class="link-date">
<div class="als-bid">${bid_amount}.00</div>
<br clear="all" />
</div>
AFTER it, ADD
<div class="link-date"><b>Quick Links</b>
<a href="{link_deep_url1}">{link_deep_title1}</a>
<a href="{link_deep_url2}">{link_deep_title2}</a>
<a href="{link_deep_url3}">{link_deep_title3}</a>
</div>
3. open buy.php
FIND:
$kForm->addText('Description Line 2', 'link_desc2', '',
$cfg->getVar('link_desc_max'), $cfg->getVar('link_desc_max'),
'onKeyUp="lpUpdate();"');
AFTER it, ADD
$kForm->addText('Title 1', 'link_deep_title1', '', 50, 255);
$kForm->addText('Deep Link 1', 'link_deep_url1', 'http://', 50, 255);
$kForm->addText('Title 2', 'link_deep_title2', '', 50, 255);
$kForm->addText('Deep Link 2', 'link_deep_url2', 'http://', 50, 255);
$kForm->addText('Title 3', 'link_deep_title3', '', 50, 255);
$kForm->addText('Deep Link 3', 'link_deep_url3', 'http://', 50, 255);
4. in the same file buy.php
FIND:
$kForm->addRule('link_bid', 'bid');
AFTER it, ADD
$kForm->addRule('link_deep_title1', 'title');
$kForm->addRule('link_deep_title2', 'title');
$kForm->addRule('link_deep_title3', 'title');
$kForm->addRule('link_deep_url1', 'url');
$kForm->addRule('link_deep_url2', 'url');
$kForm->addRule('link_deep_url3', 'url');
5. Finally to edit the deep links from the admin panel, open admin/links.php
FIND:
$kForm->addText('Description Line 2', 'link_desc2', '', 50, 50);
AFTER it, ADD
$kForm->addText('Title 1', 'link_deep_title1', '', 50, 255);
$kForm->addText('Deep Link 1', 'link_deep_url1', '', 50, 255);
$kForm->addText('Title 2', 'link_deep_title2', '', 50, 255);
$kForm->addText('Deep Link 2', 'link_deep_url2', '', 50, 255);
$kForm->addText('Title 3', 'link_deep_title3', '', 50, 255);
$kForm->addText('Deep Link 3', 'link_deep_url3', '', 50, 255);
Done!
If you liked this MOD, and want to show your appreciation, you can link back to
rakCha : http://www.rakcha.com
or
enQuira : http://www.enquira.com
21 Responses to “phpLinkBid Deep links MOD”
Leave a Reply
You must be logged in to post a comment.

June 19th, 2007 at 4:03 pm
Finally someone did this. Great job.
June 19th, 2007 at 5:07 pm
This is fantastic. Going to install it tomorrow.
Thanks a lot
Mike
June 19th, 2007 at 11:54 pm
[...] tutorial works perfect and the live demo can be seen here, I just installed it on my Bidding Web Directory, [...]
June 20th, 2007 at 3:02 am
Thanks for the update, I have just install the same on my new bidding web directory - http://www.biddingweblist.com
June 20th, 2007 at 4:35 am
Hi Admin, thanks so much for this mod..
I have just installed the same on http://www.bigdirectorybid.com/buy.html
The mod works great.. But the mandatory nature of adding deeplinks should be removed, So the adding deeplinks should be made optional.
If this is implemented, then it will be great.
Amit
June 22nd, 2007 at 6:57 pm
I have it implemented here: http://www.thebiddir.com/buybid.html
You have the option to enable/disable the deeplinks
June 25th, 2007 at 4:42 pm
Thanks for the free mod and for the excellent instructions. I’m no coder, but I was able to follow these with ease. Seem to have the basics working, now I’ll tackle some of the advanced aspects.
July 2nd, 2007 at 6:37 pm
I didnt realise this mod made the deep links mandatory, anyone know how to make them optional please ?
July 2nd, 2007 at 7:32 pm
problem solved madtay, thanks for letting me test it in your directory.
I will update the blog post.
July 2nd, 2007 at 8:03 pm
Actually, the modifications to make the deep links optional were posted here:
http://blog.rakcha.com/2007/07/02/phplinkbid-deep-links-mod-optional-fields/
July 2nd, 2007 at 8:12 pm
Thankyou very much
July 6th, 2007 at 7:09 pm
Thanks for the free mod. I have installed it successfully here: http://www.itxyz.com
Cheers
Max
July 15th, 2007 at 4:19 pm
Thanks. I use this on my bidding directory: http://www.friendlydirectories.com
Thanks again,
Matik
July 28th, 2007 at 12:02 pm
Hi there, I am using phpLB v. 1.2 and I cannot find buy.php in the templates folder. I can only locate buy.tpl however. Is there something I am missing here?
- MENJ
August 2nd, 2007 at 7:55 am
[...] The next step will give customers better value for their listing. It will help persuade potential customers to submit their link. It is the deep link modification. Deep links are hyperlinks that target the inner pages of your website. It will allow search engine robots to index a websites inner pages, and give PageRank “juice” to those inner pages. To install this mod, go to the following URL and follow the instructions there. http://blog.rakcha.com/2007/06/19/phplinkbid-deep-links-mod/. [...]
August 13th, 2007 at 9:22 am
thanks a lot for this great mod! with some help from mikey, i finally got the deeplinks at my bidding directory!!
regards,
uttoransen!
August 17th, 2007 at 4:58 am
Hi Admin, Can u please suggest, How I can implement this mod on PhpLb v1.2 without the ALS mod installed, This mod supports the ALS, On my bidding directory, I don’t have ALS installed, So Cannot install this Deeplink mod.
August 20th, 2007 at 1:22 am
I cannot seem to find the line in phplb 1.2
${bid_amount}.00
August 26th, 2007 at 11:53 pm
[...] tweaks to make your bid directory unique, such as banners on detail pages, deep links, etc. Anything to make your bid directory more beneficial for web site owners is a [...]
August 29th, 2007 at 9:55 am
I cannot seem to find the line in phplb 1.2
${bid_amount}.00
Same here!!
February 21st, 2010 at 3:06 pm
[...] able to use his directory to write this short tutorial on how to add deep links for phplinkbid. phplb deep links mod blog.rakcha.com will soon be authority for the keyword "deep links [...]