How To Replicate Techchuck AutoBlog

i had finishing setup all of my sites like techchuck :D

also some little modification for a little keyword spamming :D

from $0.5/day became
Today's Earnings: $4.25
 
i just like the position of widget on techchuck....erm...hope its neat :D
 
Last edited:
You're not, read one page back. It's Alexa was about 10k (maybe lower) if i remember correctly but it got penalized.

It works, my replica has 8 sitelinks and ranking front page for some 200+ million result keywords and getting several thousand visits a day. The site runs on autopilot, i just built some backlinks to kick it off and now it's getting natural links because people think it's real.

If you don't think it's a good starting point for an auto blog, show us what you have that's better?

what about mashget.com? 386,000 pages index and its 128k alexa, no penalized there.

Im not saying this isnt a working autoblog, but im just would hate to waste time building it if its just going to get deinexed.
 
what about mashget.com? 386,000 pages index and its 128k alexa, no penalized there.

Im not saying this isnt a working autoblog, but im just would hate to waste time building it if its just going to get deinexed.

from my side techchuck not getting indexed
 
what about mashget.com? 386,000 pages index and its 128k alexa, no penalized there.

Im not saying this isnt a working autoblog, but im just would hate to waste time building it if its just going to get deinexed.

If your scared of getting penalized, try maybe whitehatworld.com? If your pushing out autoblogs of course one will take a hit for the team occasionally and get banned it's all part of the game.

Mashget is not penalized? How did you work that out?

It ranks about #30 for "Mashget" when it used to be #1 with sitelinks and if you want to use Alexa for a metric then here:

3090cnm.jpg


Looks penalized to me no, both sites crashed at the start of July with classic -30 symptoms.

I mentioned why i believed it was penalized, hint this thread (of course Google reads here) and TechChuck was appearing as trackbacks directly under the posts on every major tech site in the internet.

Of course the Google techs read sites like Mashable, TechChrunch, LifeHacker, VentureBeat, EnGadget etc. Hardly under the radar stuff.
 
I wonder is it better to use onlywire or sociable?
 
I haven't read all the thread, but I have some question about this techchuck replica autoblog...
Did any of you using rewrite plugin? which one is better , use the rewrite plugin or not?
 
For that youtube video bar insert this code between the " " ex: executeList : ["Insert code here"]

This will display related videos for the first tag on your post.

PHP:
<?php $posttags = get_the_tags(); 
$count=0; if ($posttags) 
{ foreach($posttags as $tag) 
{ $count++; if (1 == $count) 
{ echo $tag->name . ' '; } } } ?>
You can also download their css and js scripts and modify the bar/player abit.
http://tech.ccortez.com/?p=577

is there a way to make the videobar use the post title instead of the post tags??

any help will be apreciated from one of you php savvy guys :tee:
 
is there a way to make the videobar use the post title instead of the post tags??

any help will be apreciated from one of you php savvy guys :tee:

Use this code instead of the tags one to use the title
Code:
<?php the_title(); ?>
 
thanks for this great tutorial, i can make an autoblog now. you can have a look on mine at thepapercrafts dot info. one thing that im curious is that why adsense ads won't appear on my blog? is it maybe because the content is too short or maybe because its niche? but sometimes it appears tough, but very rare. im using all in one adsense and YPN.

sorry for my bad english...
 
Somebody help pleasee..

I try to make a blog that looklike mashget and the only thing still in chaos is the div content which is display the latest posts title from each category.
I want to insert it as div content, and i want to make all category list..

(let say may categories are:news,money,game)
so in the main body become like this:


News:
title post 1 (0nclick-link to title page post 1 of news category)
title post 2 (onclick-link to title page post 2 of news category)
title post 3 (onclick-link to title page post 3 of news category)
read more(link to news category page)


Money:
title post 1
title post 2
title post 3
read more(link to money category page)


Game:
title post 1
title post 2
title post 3
read more(link to game category page)


Pls some advise.
 
oh ok got it..now move to make the list look nicer..here is the code:

<?php
//for each category, show 3 posts
$cat_args=array(
'orderby' => 'name',
'order' => 'ASC'
);
$categories=get_categories($cat_args);
foreach($categories as $category) {
$args=array(
'showposts' => 3,
'category__in' => array($category->term_id),
'caller_get_posts'=>1
);
$posts=get_posts($args);
if ($posts) {
echo '<p>Category: <a href="' . get_category_link( $category->term_id ) . '"

title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' .

$category->name.'</a> </p> ';
foreach($posts as $post) {
setup_postdata($post); ?>
<p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to

<?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
<?php
} // foreach($posts
} // if ($posts
} // foreach($categories
?>


Just insert this code into your index.php ..on the content after <div id="content> or if you want to list just some of your categories, put this code below (pls note that u need to install "List Latest Posts Titles" plugin before, you can download it on wp homepage :

<div id="content" class="clearfix">
<div class="block" id="forex">
<h2 class="block-title">Forex</h2>
<ul>
<?php get_latest_posts("Forex", 5); ?>
</ul>
</div>

<div class="block" id="entertainment">
<h2 class="block-title">Entertainment</h2>
<ul id="entertainment">
<?php get_latest_posts("Entertainment", 5); ?>
</ul>
</div>


</div><!-- /post-nav -->

above is the example how to list Forex and Entertaiment category, if you want to list the other, just do the same thing and change the category name. And if you want to change how many posts title foe each category, you can change the value after the category name.("Entertainment", 5) <-- means list 5 posts title from entertaiment category.
 
Code:
Hi All,

I'm a noob and have been pouring through this post and its threads since 3 days 
and my head is throbbing, so please excuse me if this has been covered already.  
Anyway, I have a question:-

Supposing I was to use site x's RSS feeds and my visitors clicked on one of my 
links, the title of my post for example, is it possible to transparently (with 
anonym.to, you always see this redirection) fake my referrer to be 
www.google.com, so site x would think that his vistor came from there and 
so that my visitors would be none the 
wiser? I did some googling and could not find any easy solutions.
Thx in advance,
DAve

search on BHW for "Double Meta Refresh"

this will blank out the referer
 
Hi,
If someone have a setup Techchuck please PM me

Thanks!
 
Actually, that is a good question, its well and good to replicate this site, but what would you actually do with it? Ideas please :)
 
Are there any really good examples of replica sites made up? I have been working for a while on a template, however some things just aren't quite right. Also what do you see the differences in by posting the entire article to posting just a snippet with a link back?
 
Hi all, first post, however been a long time reader of this thread, shame I wasn't been able to follow it from the start :P
I've actually started my own 'test' autoblog (yes only for testing out the theme as I want to know how to code my own) and I've ran into 2 problems so far, with which I hope you can help me with:
(my url is hxxp://createbacklinks.info)

  1. The homepage is currently ok, however if you click on any single post the sidebar is pushed down to the bottom. Is this because of an extra opening tag which isn't closed? I've checked but couldn't find the problem. (the problem isn't occuring in /category either so it's the single post.php
  2. Secondly, I want to use more tags than just 1 like the one provided by the OP's theme setup. I've tried different codes from wordpress.org etc to fetch the posts's tags, but no success.
If you ran into the same problems/solutions, could you share them - thanks in advance.
 
i want to ask the adsense price of http://hiderefer.org/?http://techchuck.com/ is very low or not ,as it is a autoblog? this is the issue which i am concerned about...................
 
Back
Top