BANS WordPress Templates
Recent Posts
Tools for Niche Site Success Hostgator Unlimited Hosting

Adding a Link Cloud Directory to your Build a Niche Store

March 26, 2008

Yesterday, I mentioned that I was going to complete the Build a Niche Store Link Cloud MOD. Well… it’s done! I am going to write the basic installation directions in this post and Rochelle has been kind enough to help with the first install and write more detailed instructions over at her Niche Store Strategies blog. BTW - If you have not been to her site and looked at all of the very detailed instructions she has for almost everything you can do with BANS, I suggest setting aside an hour or so and going over to read…

Now for the Build a Niche Store Link Cloud

Note: If you prefer Video, it is being uploaded now and will be linked at the bottom of this post. (LONG Video, 42 Minutes) Installation of this MOD takes about 30-45 Minutes…

What Does the Link Cloud Do?
The Build a Niche Store link cloud can be seen in action at the GetaRaceCar Racing Directory. Essentially, it is a script that allows you to set a number of keyword phrases that will appear in your directory as one way links to other websites. Much like a directory with a small twist… you can charge a fee (or not) to have the sites listed. As we all know, 1-way linking is a great way to increase both the traffic (visitors clicking your link) your website gets, as well as the page rank it achieves over a period of time.

Do I Need It?
No! It is not required to make money with your BANS site… it can however be another source of revenue as your site gains rank and starts attracting webmasters. Like I mentioned above, inbound links are a valuable resource. One-Way, Keyword Rich links are even better! This link mod is completely up to you as far as whether you want it or not… I have the directory installed in a few places and have earned a bit of money from it already - nothing spectacular, but every penny eventually makes a dollar! :-)

I heard Selling Links was Bad!
So did I! In fact, there is a VERY heated debate that started in 2005 over on Matt Cutts blog (click- nofollow of course) about his very subject. In the world of SEM (Search Engine Marketing) the general consensus is… your not supposed to do it… but the impact is so good, its hard to live without it! Go Figure! We wont even get into the fact that Google itself is a HUGE seller of links… So, how do you do it on your Niche Site? Simple… you don’t charge for them! That’s right… don’t charge for them, even list them as FREE One-Way Links! But Mark, didn’t you say we could earn a bit with this? Yes! Don’t charge a thing for basic listings… set the amount to $0.00. If however the user wants to add certain features like BOLD TEXT or a larger sized font, or maybe even a word that is not listed on the page, well… that’s where the fee comes into play.

Keeping the Directory Relevant!
This one is easy… if your site is about Hybrid Golf Clubs - don’t allow links to sites about Chevy Malibu’s… keep it relevant and focused on your niche market. Period.

Now for the installation….

  1. Downloadthe WordCloud link Directory and extract the zip file into a NEW folder within your website. I like to add a folder named something like: “myniche-links”. In the case of installing it on the Hybrid Golf site, I created a folder called: “golf-links”
  2. Once you have it unzipped and in the correct folder, upload the new folder to your niche site.
  3. Login to your cPanel and navigate to the MySQL link. Create a new database and name it something you wont get confused with others. In my case, “hybridgolflinks”.
  4. Open the /config/ folder and find the file named: /mysql.config.php and complete the database information with what you just created.
  5. In cPanel, click on the new folders for “/admin/parsed/” and “/upload/” writable by clicking on top of the folders and choosing permissions on the right side menu. When the permission menu appears, you want to chmod the directories to ‘777′
  6. Open your website in your browser and navigate to the setup file. In my case, it is located at: www. hybrid-golf-club .com/golf-links/setup/setup.php (Your setup file location will depend on where you uploaded the site and the folder name you chose during the initial stages.
  7. Follow the onscreen instructions… the script will self install all tables to the database.
  8. Once setup is complete - DELETE the entire setup folder!

Now that the script is installed - you can login to your new one-way link directory and set it up for your specific needs. Login at: mysite .com/my-directory-folder/admin/ In my case, it is hybrid-golf-club .com/golf-sites/admin/ . The default username and password are: UN: admin PW: pass . You cannot change the unsername, but I suggest changing the password immediately after your initial login. It is done from the settings link across the top.

Once you have it installed - how do you make it look JUST LIKE your Niche Site?
The method of making this directory look just like your niche site can be used for almost ANY add-on you add to your site, including wordpress! (Just to be clear - modifying a WordPress template is a detailed and lengthy task - not to be taken lightly, but the premise is the same)

  1. Login to your niche store admin and go to the templates section.
  2. Go to the VERY BOTTOMof your header file and insert the following code: <!– endofheader –> (No letter spaces on purpose) Click on Save.
  3. Go to the VERY TOPof your footer.php file and insert the following code: <!– startoffooter –> (No letter spaces on purpose) Click on Save.
  4. Open your website home page in a browser and from the top menu of your web broswer, choose “View/Source” (IE) or “View/Page Source” (FF)
  5. Choose “Edit/Find” (or press the control and F key simultaneously - Ctrl-F) and search for: endofheader
  6. Copy ALLtext from the <!– endof header –> UP to and includingthe <body> (May be <body id=…>) tag. Paste this text into a NEW notepad file and save it as: headercopy.txt (Do not close your original source file)
  7. Scrolling a bit further up this source file, you should see a reference to your stylesheet inside your head section. In my case, it is shown as:

    <link rel=”stylesheet” href=”http://www.hybrid-golf-club.com/themes/green/styles.css” type=”text/css” media=”screen” />

  8. Copy the entire line of text from <link rel… to the closing tag …/> and paste it into a new text file and save it as: stylelink.txt
  9. Return back to your original view/source code document and click anywhere in the screen to remove the blue highlighting from your previous copy command.
  10. Choose “Edit/Find” (or press the control and F key simultaneously - Ctrl-F) and search for: startoffooter
  11. Copy ALL text from the <!– startoffooter –> DOWN to and includingthe </body> tag. Paste this text into a NEW notepad file and save it as: footercopy.txt

You are now done with this section of the process and we need to edit the word cloud header and footer files to match your site.

  1. In your web browser or in your local html editor, navigate and open the header.tpl.php file inside your: /niche-links/template/ folder. In my case, it is at: hybrid-golf-club .com/golf-links/template/.
  2. Open the headercopy.txt text file you just created and highlight/copy ALL text.
  3. In your header.tpl.php file, replace EVERYTHING from the <body> tag DOWN, including the body tag itself.
  4. Scroll up near the top of the file and locate the <link href… tag for the stylesheet. At the END of the line of code, directly AFTER the type=”text/css” />Press enter one time and paste the content of your stylelink.txt file. This is done to call your stylesheet from BANS and make everything look pretty! :-)
  5. Save your header.tpl.php file and close it.
  6. In your web browser or in your local html editor, navigate and open the footer.tpl.php file inside your: /niche-links/template/ folder. In my case, it is at: hybrid-golf-club .com/golf-links/template/.
  7. Copy the first three lines, giving credit to the original developer and paste them into a separate file for future use named: credits.txt

    <p><center>Script Provided by <a href=”http://www.tareeinternet.comInternet</a></center><br>
    <br>

  8. Open the footercopy.txt text file you created in step 11 above and highlight/copy ALL text.
  9. In your footer.tpl.php file, replace EVERYTHING from the <p> tag DOWN, including the body tag itself.
  10. Open your credits.txt file you just created and paste the credits text JUST ABOVE your last </div> tag.
  11. Save the footer.tpl.php file and close it.

At this point, if you have used a local html editor on your own system to make these code changes, you need to upload the files to your web server. (Hosting account) If you edited and saved them through the text editor on the server itself, your changes are done. You should be able to browse to your link cloud… and see the script in action, albeit, empty!

IMPORTANT NOTE
ANYTIME yes, ANY time, you make changes to your site structure… ie: add new MAIN page categories, add new banners, add ANYTHING that modifies the look of your website, you MUST update your header and footer files in your new link directory, otherwise, the two wont match in appearance.

Configuring the Link Cloud in the Administration

Login to your link cloud administration and configure the script to your hearts desire! First stop, the “Settings” link!

  1. Add your paypal information (its how you get paid!)
  2. Add your admin email address
  3. If you have not already done so, change the password. (The login will always be “admin” but you can change the password as you see fit.)
  4. Open links in new window? Your choice…
  5. Base Price - $0
  6. Words Limit - Purely your own preference. On some sites I have used 100, on others , 450, etc. I wouldn’t suggest anything higher than 500 words or phrases.
  7. Options: Set the font size and decoration options to your own preference. Don’t get too crazy with $50 or $100 costs, they wont sell!
  8. Suggested Words - This is where you can start making it worthwhile for buyers… add a $5 fee for including a word you don’t have in your list!
  9. Link Title - This is the alt text or hover text you see when you mouse-over a link. It helps SEO… so why not attach a small fee to have it? $5 is fair, and if you prefer to charge per letter, you can set this to $0, and add .25 per letter or something like that. If you have a flat fee for custom words, make sure you choose $0 for the per character option.
  10. Click submit… walk away!

You also have the ability to pre-populate the directory with words and phrases that you want. Go to the “Words Inventory” link and start adding words to your directory. You can add as many as you want… its your directory! Once you have them added, they will appear as available for linking on your link cloud! If the user doesn’t find the word or phrase they want, well… they are always welcome to suggest one! ($)

A last word about the phrases you allow… make sure you input or allow ONLY long tail phrases! This will make your directory much more attractive to prospects wanting to obtain a one-way link. I try to limit my own sites to 3 words max (although exceptions have been made).

The last and final thing I do to my directory is to open my robots.txt file from the main root of my website and disallow the search engine spiders from following the links. In your robots.txt file, add this simple line:
disallow: /niche-sites/buy/
If you don’t already have a robots.txt file, read the robots file for build a niche store post first.

Video of this install…

videoraw.jpg

Popularity: 13% [?]

If you enjoyed this post, make sure you subscribe to my RSS feed!

Comments

14 Responses to “Adding a Link Cloud Directory to your Build a Niche Store”

  1. Rochelle on March 26th, 2008 4:36 pm

    As Mark stated I tested this out earlier today. It is a pretty complex mod but not hard. I will work on creating my own version of instructions for this soon and will post after I have finished it. It’s a pretty slick mod!

    Rochelle

  2. Noelle on March 26th, 2008 8:15 pm

    I love this idea! Just one thing, and I don’t mean to sound mean…but you mention keeping your keywords relevant to the site..on the Get a Race Track site word cloud, there’s a link for a Family Guy store?? I don’t know much about race cars, but is there a point I’m missing with that?

  3. Mark on March 26th, 2008 8:23 pm

    @ Noelle -

    You are ABSOLUTELY right!! I added that to the directory quite a while ago and did so to help the site get indexed quicker.

    There is even a point in the video when I talk about it for a quick second… :-)

    Mark

  4. Bill on March 26th, 2008 8:36 pm

    You must have a staff.
    Thanks for this mark,

  5. Mark on March 26th, 2008 8:56 pm

    Man… I wish…

    I am in the middle of a LONG post about what to expect from BANS in regard to earnings, how soon, how much, etc.

    My eyeballs are burning! LOL

    The answer is pretty simple… but since I have to qualify it with reasoning, it has grown into a whole story about DollaGreens! LOL

    Stay tuned… I should finish tomorrow!

    Mark

  6. Chuck on March 26th, 2008 10:10 pm

    Mark,

    I would like to mod your mod ;-).

    I have wanted to add a tag cloud to my stores for quite some while now. The weight of the keywords would of course be based on a combination of the number of auctions live and the number of bids.

    Might be an interesting addition to your collection…

    Chuck

  7. James Mann on March 27th, 2008 8:01 am

    Well it seemed like forever but after going through the instructions a couple of time I think I got it to just what you said it would do.

    I tried first on a BANS site that not too many are seeing just yet so if I messed it up royally I wouldn’t freak.

    It went pretty smooth and the only problem I had was trying to keep the cloud from running off the right side of the page into the right column.

    I am sure it’s something simple but I now have a link cloud and I am ready to set it up on my other BANS sites.

    Thanks for all the time you took to make the video and I will jump over to Rochelle’s site and see how her instructions went.

  8. Thrandur on March 29th, 2008 6:57 am

    This is a great little script, Mark!

    I had some trouble getting it to work, since it has not been updated for php 5 which is running on my Hostgator account.

    An error pops up: “Cannot redeclare date-format()”

    I found a workaround. I edited the name of the function in the file indicated to “date-format-php4()”. The side effect of that is the SETTINGS stop giving access to modifications.

    The quick solution for that is to access the database table for settings and make the necessary modifications….

    …anyway - the result is up: http://gps-compare.com/gps-links/

    One thing that I am still wondering about is how to handle the free submissions. As it is now it still goes to PayPal. An easy way to fix that would be great!

  9. Rochelle on April 7th, 2008 4:10 pm

    Well, I have unintentionally put this on the backburner. I have started it, but it is immensely difficult. I was interrupted by a visit from in-laws and now, this week, we are going camping.

    It may be another two weeks before I get to this but I promise I will finish my version of instructions for this.

    Rochelle

  10. Bill on April 18th, 2008 2:28 pm

    Mark the movie is getting a 404.
    Is it going to be back up?
    I was just feeling comfortable enough to try it.
    Thanks

    Bill

  11. Steve on April 27th, 2008 9:37 am

    Mark,

    Absolutely bloody brilliant. Your blood is worth bottling! But…

    … how do we stop the text from running off the right side of the page?

    Also, can you make the video for this a downloadable file. I keep loosing the link two thirds through.

  12. Michael on April 27th, 2008 1:18 pm

    Just out of curiousity, I visited the niche cloud website and it does not appear to have a front page or a way to submit links. Do you happen to know if this is permanent?

  13. Ildiko on June 12th, 2008 3:21 am

    Hi Mark,

    I successfully installed the word clouds script on one of my sites and found only one little thing doesn’t work.
    There is some problem with the color picker js.

    I’ve checked your Hybrid Golf Clubs site and it has the same problem.

    Do you have any suggestion how to fix it?

    Thanks,
    Ildiko

  14. patrick on June 12th, 2008 4:24 pm

    Great mod but I am stuck, When I try to go to my admin I get an error. Here it is, Fatal error: Cannot redeclare date_format() in /home/pjr/public_html/auctionbumps/bumplinks/lib/lib_common.php on line 279.
    Any suggestions on how to fix?

    Thanks,
    patrick

Got something to say?





Subscribe to The Niche Store Builder Site

Subscribe to the Niche Store BuilderDon't miss a single post about Developing your Niche Store or Website! Subscribe today and start Making Money!

Featured Links and Resources

I'm such a Twit for Tweets

Posting tweet...

Top Niche Builder Commentators

Last 10 Comments

Blogroll

Niche Builder Categories