autoblog on blogspot.com

you can use a PHP script and have it running on your own server
good luck with it
 
i wrote myself a program that scrapes content from a site and sends an email to blogspot, 200 visits/day, really nice mothod :)
 
I was looking for a method to autoblog on blogspot.com for about 5 hours now, and now I found one. I see that there are lots of people looking for an autoblog method for blogspot.com thats why I'm sharing this method with you.
So... here it goes:
1.Create a blog on blogspot.com
2.Create an e-mail acount on gmail
3.Enable e-mail posting to your blogspot.com blog
4.Forward all e-mails to your e-mail posting adress
5.Go to feedmyinbox.com and subscribe to all the feeds you want
That's all, a very easy method to auto post on blogspot.com blogs.
The only isue is that it will not be unique content.
Hit the thanks button if you like this method and you find it usefull :D

i did all these steps but didn't get any new post on my blog!!!
i have taken url from ezine's news feed!!
is that the method?!!!
or i did something wrong?!
 
what u mean?
i did all these steps! but still didn't get a single new post which needs to be automatically created on my blog!
but it didn't working!
 
would anyone be interested in me developing a script/site where that would forward emails but translated.

i.e. you signup at the site and associate

xxx -> gmailfor@utoblogging

then use feed to email either via the filter or not to send to

xxx.en-se-ru-en@mysite

so anything sent to that will be translated from english to swedish to russian then back to english again and forwarded to the email you specified when you signed up.

is there any call for such a site, email translation redirection effectively
 
Ok, I'm new to autoblogging but I have seen a lot of websites using this method for autoblogging with blogger. I have followed everything, but the rss just forwarded all of the article...including the feedmyinbox.com logo and unsubscribe link...in short, it's really forwarding the exact email...check my autoblog here hxxp://3moneyfinder.blogspot.com/. I haven't read all of this thread if someone asking this problem too. Can anyone help me out?

Btw, if you want to find a related rss feed, it's pretty easy. You can google using ?keyword support:blogspot.com?. change keyword with the niche that you want. It will give you lots of blogspot according to your keyword and you can just copy the location of rss. ;)

PS: and it's quite hard to edit those posts since it contains html codes. It will look ugly if it's not properly edited :(
 
Last edited:
Or you can use http://www.uniquearticlewizard.com/email_plugin.html and get targeted content as well.
The problem is Google don't like the duplicate content very much and won't index your auto blogspot blog.

I have several autoblogs on Blogger using
nothing but duplicate content. They work
just great for me.

Google ain't the only game in town, but
even so, many of my pages indexed in G!

HTH

Glenn
 
if you use feedmyinbox, you have to click the verification link they send you the blogger email address you told them to use.
Once you have activated the rss to email feeds, they will appear in your blog. (mine is set to post every 24 hours )


what u mean?
i did all these steps! but still didn't get a single new post which needs to be automatically created on my blog!
but it didn't working!
 
it's not work dude,.. on every page that post on your blogger always show up subscribe page,... that suck
 
1.my blog is banned
2.my adsense is banned
3.in feed, they just give us 3-5 line of their post then they put their link under the mail
 
im not into the autoblog thing. there are better options to invest time into
 
im not into the autoblog thing. there are better options to invest time into

because of that, it's called autoblog :) just invest some little time first and lets the blog do the rest ... PM me if someone have good script for autobloging
 
why not setup a wordpress blog with a rewriting plugin on it and pull the feeds to it and rewrite them, then the use the feed generated by it and there you go u have your own feed rewriter. :D

Nice ideas which Rewriting plugin are you recommending? Thanks
 
Use Xfruits instead of Feedmyinbox. Xfruits feeds are written with divs, ids, and classes. So for an autoblog on Blogger that works, use Xfruits. Just Google "xfruits" I can't post links yet.

edit: I forgot to mention. go to Design, then Html, now download your template for backup. Now check the box "Expand widget Templates" I use Ctrl-f to search for the areas I want to go to because these templates are quite long. It's just a quick way to navigate the template.

So here's what you do...

Code:
[B]Look for this:[/B]
/* Content
----------------------------------------------- */
In the content section put this at the bottom:

(The reason for .list_items_summary is that xfruits 
puts a long numbered list of the rss feeds items above 
the post.  This makes it ugly, and wastes a lot of space on your page)

[COLOR=Red].list_items_summary {
width: 500px;
height: 4px;
background: url(my_header_image.gif);
padding-top: 100px;
overflow: hidden;
}[/COLOR]

* The [COLOR=Red]background: url(my_header_image.gif);[/COLOR] line in the above code is optional.  
I don't use it just cause I could never find an image that worked in that spot, 
that looked good. You can take that line out if you choose.


(With these feeds you end up getting a few titles for each item.  
the snippet of code below cleans this up)

[COLOR=Red]div h3, .title #item {
display: none;
}[/COLOR]

Don't worry about the next sections move on to Posts.

[B]Now look for this:[/B]
/* Posts
----------------------------------------------- */

You are going to want to make sure that all images fit,
and keep their aspect ratio. So look for something like 
this piece of code below

[COLOR=SeaGreen].post-body img {
padding: 8px;
background: #ffffff;
border: 1px solid #71b463;
-moz-box-shadow: 0 0 20px rgba(0, 0, 0, .2);
-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .2);
box-shadow: 0 0 20px rgba(0, 0, 0, .2);
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}[/COLOR]

And place this code right under the above code.
 
[COLOR=Red].text img {
max-width: 500px;
height: auto !important;
width: expression(this.width > 500 ? 500: true);
}[/COLOR]

This .text img code makes all images no wider than 500 pixels,
and sets the appropriate height to keep the aspect ratio.  You can 
set the number to what ever you want.  On some of my blogs I 
set it to 480 pixels.  This code works wonders.

Right below .text img code, put this:

[COLOR=Red].logo {
margin-top:-65px;
visibility: hidden;
}
[/COLOR] 
This .logo code gets rid of the Xfruits logo, 
and the margin-top:-65px; fixes a big gap 
from the .list_items_summary code 

Now!  This is what everyone's been waiting for. 
How to get the damned unsubscribe link out of there.

Look for this code:

[COLOR=SeaGreen].post-footer {
margin: 1.5em 0 0;[/COLOR]

now put this below it

[COLOR=Red].unsub {
visibility:hidden;
}[/COLOR]
And that's pretty much it. There are a few others, but the ones I lised are the most important.

Now you can let your xfruits feeds through without too much worry.

See Feemyinbox publishes its feeds with tables. You can't easily override any of that with CSS in the way that it's done here.

But with Xfruits, you can use what I've shown you in Blogger, and it works great!

I hope you all liked this post. Just experiment all layout have their defferences, so you may have to tweak the code I showed you.

For the most part my blogs work in all browsers. I have some issues with IE, but I figure if people want standards compliant browsing they will just switch to a different browser all-together.

If you would like to see examples of my work, just pm me. My blogs are in the Adult, and Warez niches mostly, but I have others that are clean by comparison.

If you decide to use this method, and need some help, just pm me. I'd be glad to help.

Peace All, and have a Happy New Year :)
 
Last edited:
Back
Top