Greenguy's Board


Go Back   Greenguy's Board > Blogs and Blogging
Register FAQ Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 2006-06-27, 07:25 PM   #1
walrus
Oh no, I'm sweating like Roger Ebert
 
walrus's Avatar
 
Join Date: May 2005
Location: Los Angeles
Posts: 1,773
Send a message via ICQ to walrus Send a message via Yahoo to walrus
Quote:
Originally Posted by Useless Warrior
Of course, this would also disclude you the opportunity of getting your affiliate coded posts into Technorati and the like.
Since your not tagging your posts, this would be a fairly minor loss as only the categories would get translated anyway.
__________________
Naked Girlfriend Porn TGP
free partner account
walrus is offline   Reply With Quote
Old 2006-06-27, 07:33 PM   #2
Useless
Certified Nice Person
 
Useless's Avatar
 
Join Date: Oct 2003
Location: Dirty Undies, NY
Posts: 11,268
Send a message via ICQ to Useless
That hurts.
__________________
Click here to purchase a bridge I'm selling.
Useless is offline   Reply With Quote
Old 2006-06-27, 09:44 PM   #3
Useless
Certified Nice Person
 
Useless's Avatar
 
Join Date: Oct 2003
Location: Dirty Undies, NY
Posts: 11,268
Send a message via ICQ to Useless
Quote:
Originally Posted by walrus
Since your not tagging your posts, this would be a fairly minor loss as only the categories would get translated anyway.
Walrus, my journey to learn more about his tagging voodoo has lead me back to one of your threads. Am I to understand that tagging is nothing more than adding rel="tag" within my anchor tags? So <a href="somelink.com" rel="tag">my linked text</a> would 'tag' the words I've chose to link? If that's so, I'll go hardcode that into our system right now.

Please help me make sense of this stuff.
__________________
Click here to purchase a bridge I'm selling.
Useless is offline   Reply With Quote
Old 2006-07-08, 11:49 AM   #4
walrus
Oh no, I'm sweating like Roger Ebert
 
walrus's Avatar
 
Join Date: May 2005
Location: Los Angeles
Posts: 1,773
Send a message via ICQ to walrus Send a message via Yahoo to walrus
Quote:
Originally Posted by walrus
I haven't actually had a chance to try this....hopefully I will soon.
Well, I finally got my lazy ass in gear and did this and honestly I think it turned out pretty cool. Not only am I adding the feed to a page....I've added the chicklets so that people can subscribe directly to the feeds themselves. If interested, you can check it out here
__________________
Naked Girlfriend Porn TGP
free partner account
walrus is offline   Reply With Quote
Old 2006-06-28, 01:28 AM   #5
Jel
I'm the only guy in the world who has to wake up to have a nightmare
 
Jel's Avatar
 
Join Date: Feb 2004
Location: London, United Kingdom
Posts: 1,895
Quote:
Originally Posted by RawAlex
I just want to add this: Pornpig's intention is to aggregate UNIQUE blogs into a format that drives you traffic, views, and exposure for your unique work. When your blog becomes mostly someone else's work, I can no longer aggregate the content, because the risk of duplication (and see here) is a bit overwhelming, even in small numbers.

Jel, for the moment Ihave disabled your feed into the blog and removed the obvious duplicate posts from the front page of the site. If your blog returns to a unique situation, I don't have a problem re-adding it, but I cannot aggregate blogs that are pre-aggregated other source material in this manner.

Anyone else interested or want to discuss it, email alex@monolithnet.com
Hi Alex,

I see totally where you're coming from and that's no problem at all. Looking at the other posts and trying to work out how I can get around it. Just recently woke here so a little foggy in the brain right now lol.
Jel is offline   Reply With Quote
Old 2006-06-28, 12:00 AM   #6
Chop Smith
Eighteen 'til I Die
 
Chop Smith's Avatar
 
Join Date: Apr 2003
Location: Mississippi
Posts: 2,168
Send a message via ICQ to Chop Smith
Damn, I have got to quit reading this thread or I will post some mushy crap about how much this board and its members have meant to me and the 'staff's" little program.
__________________
Chop Smith is offline   Reply With Quote
Old 2006-06-28, 07:54 AM   #7
Simon
That which does not kill us, will try, try again.
 
Simon's Avatar
 
Join Date: Aug 2003
Location: Conch Republic
Posts: 5,150
Send a message via ICQ to Simon Send a message via AIM to Simon Send a message via Yahoo to Simon
Could someone hit me up later on icq about what needs to be changed in the quicktags.js to make the tagging work automatically? (Or maybe it's worth posting here for others too.)

Working on new mantra:
"If it's not worth automating, it's not worth doing again."
__________________
"If you're happy and you know it, think again." -- Guru Pitka
Simon is offline   Reply With Quote
Old 2006-06-28, 08:30 AM   #8
Useless
Certified Nice Person
 
Useless's Avatar
 
Join Date: Oct 2003
Location: Dirty Undies, NY
Posts: 11,268
Send a message via ICQ to Useless
Quote:
Originally Posted by Simon
Could someone hit me up later on icq about what needs to be changed in the quicktags.js to make the tagging work automatically? (Or maybe it's worth posting here for others too.)
For sure. I'll tell you, but don't tell the rest of these clowns. Okay? Quicktags.js is used for writing/editing posts when you are NOT using that crappy Visual Rich Editor, but I'm unsure if it's used if you are using the VRE.

Open -
wp-includes/js/quicktags.js

Look for (pretty much at the end of the file)-
Code:
function edInsertLink(myField, i, defaultValue) {
	if (!defaultValue) {
		defaultValue = 'http://';
	}
	if (!edCheckOpenTags(i)) {
		var URL = prompt('Enter the URL' ,defaultValue);
		if (URL) {
			edButtons[i].tagStart = '<a href="' + URL + '">';
			edInsertTag(myField, i);
		}
	}
	else {
		edInsertTag(myField, i);
	}
}
Change -
edButtons[i].tagStart = '<a href="' + URL + '">';
to-
edButtons[i].tagStart = '<a href="' + URL + '" rel="tag">';

Coincidentally, this is also where you could add a mouseover into your anchors, if you wished, because that is the code that inserts the linking structure when you hit the "link" button.
__________________
Click here to purchase a bridge I'm selling.
Useless is offline   Reply With Quote
Old 2006-06-28, 11:06 AM   #9
oast
With $10,000, we'd be millionaires! We could buy all kinds of useful things like ... love!
 
oast's Avatar
 
Join Date: May 2004
Location: UK
Posts: 316
Quote:
Originally Posted by Useless Warrior
Code:
function edInsertLink(myField, i, defaultValue) {
	if (!defaultValue) {
		defaultValue = 'http://';
	}
	if (!edCheckOpenTags(i)) {
		var URL = prompt('Enter the URL' ,defaultValue);
		if (URL) {
			edButtons[i].tagStart = '<a href="' + URL + '">';
			edInsertTag(myField, i);
		}
	}
	else {
		edInsertTag(myField, i);
	}
}
Change -
edButtons[i].tagStart = '<a href="' + URL + '">';
to-
edButtons[i].tagStart = '<a href="' + URL + '" rel="tag">';
If, like me, you use different 'rels' for different types of link, you could prompt for the rel to use:
Code:
function edInsertLink(myField, i, defaultValue) {
	if (!defaultValue) {
		defaultValue = 'http://';
	}
	if (!edCheckOpenTags(i)) {
		var URL = prompt('Enter the URL' ,defaultValue);
		var REL = prompt('Enter the rel' ,'external');
		if (URL) {
			edButtons[i].tagStart = '<a href="' + URL + '" rel="' + REL + '">';
			edInsertTag(myField, i);
		}
	}
	else {
		edInsertTag(myField, i);
	}
}
Substitute 'external' for the rel you use most often.
__________________
Playboy Webmasters - The name says it all! $35 per signup or 60% revshare.
oast is offline   Reply With Quote
Old 2006-06-30, 07:35 PM   #10
dr_montelbaun
Rock stars ... is there anything they don't know?
 
Join Date: Jun 2006
Posts: 10
Just thought I'd jump in with $.02 on the duplicate content issue. Search Engines are sure to recognize duplicate content across multiple sites and will penalize for it. So to deal with that you'll need to either a) not care about search engines or b) make your own mods to the aggregated content as it comes in.

Obviously option 2 foils the hands-off approach, which isn't very attractive. But it is still a lot easier than coming up with all that new content out of whole cloth.
__________________
Dr. Montelbaun
The Internet is for Porn
http://www.internetisforporn.com
dr_montelbaun is offline   Reply With Quote
Old 2006-06-30, 10:08 PM   #11
oast
With $10,000, we'd be millionaires! We could buy all kinds of useful things like ... love!
 
oast's Avatar
 
Join Date: May 2004
Location: UK
Posts: 316
Duplicate content is bound to happen... there are 8+ billion webpages out there! Same as all the major news sites use 3 or 4 main sources for their content.
As long as a few 'original' posts are also included on the pages, I don't see a problem... maybe I'm wrong.
__________________
Playboy Webmasters - The name says it all! $35 per signup or 60% revshare.
oast is offline   Reply With Quote
Old 2006-06-30, 11:05 PM   #12
docholly
Nothing funnier than the ridiculous faces you people make mid-coitus
 
docholly's Avatar
 
Join Date: Aug 2003
Location: Sin-City USA
Posts: 4,973
Send a message via ICQ to docholly Send a message via Yahoo to docholly
and since all blogs have different keywords and unique names it not going to really be that much of an issue we don't think..

if some one was searching for "x-rated nudes" they might find an entry on Simon's blog but they could also find the same entry when searching for "foxy nudes" might end up at Sue's.

there are so many variables and like oast said, lots of news feeds go everywhere every day, and as long as there is some other relevant text with in the blog it won't be the same.

But then again the way google has acted stranger things have happened.
__________________
Support Indie Porn Sites

OMGoddess
You know you need some Bling!!

Last edited by docholly; 2006-06-30 at 11:30 PM.. Reason: so i can wave at UW, Chop, Tart, Celtic
docholly is offline   Reply With Quote
Old 2006-06-30, 11:26 PM   #13
walrus
Oh no, I'm sweating like Roger Ebert
 
walrus's Avatar
 
Join Date: May 2005
Location: Los Angeles
Posts: 1,773
Send a message via ICQ to walrus Send a message via Yahoo to walrus
I sure the hell ain't no SE guru but this topic has been popping up a bit lately so I thought I might want to look into it a bit. Especially since I use RSS feeds in a couple of places, including sponsor feeds and I also have my feeds published a number of places. So, a SE penalty would really hurt.

My conclusion is that there definately is a duplicate content penalty. That having been said, I also believe that the content duplication has to be on a fairly large scale in order to take affect and I've decided that it probably isn't the type of penalty that is going to kill you in the long run anyway.

According to James D Brausch, the self proclaimed founder of the term "Duplicate Content Penalty", if you were to submit an article to 300 sites, it would take Google about 6 weeks to see it and then react to it. But I'm not so sure I would consider what happens next a penalty. According to Mr. Brausch, you would then see the following "In order to show you the most relevant results, we have omitted some entries very similar to the 16 already displayed. If you like, you can repeat the search with the omitted results included."

If it's my content, I don't see a penalty here as long as all my links and affiliate codes are left in tact and if they are not well that's a whole different story since it moves it from a duplicate content penalty to content theft. So even if I don't end up in one of the top 16 slots before Google cuts off the listing, I still can be pretty content that my post is still getting exposure and that I have sites higher in the SERP's than me linking to my content, thus improving my overall positioning within Google.

Now if I'm using someone else's content and don't figure into the top 16, then I guess a small penalty has been imposed but looking at the time frame, 6 weeks, I doubt that will hurt much and from everything I can tell, it has no adverse affects on anything else having to do with my site. At least, I've yet to find any concrete proof that it does.

In fact, the whole myth aspect of this is probably rooted in the fact that it does take such a high number of iterances of the content being copied that it is un-noticable to the honest webmaster who used a few feeds here and there. The only place where you might need to be careful is with using sponsor feeds or creating a blog from nothing other than sponsor feeds. These could easily start to fall within that category and if that is the only content on your blog, work to strangle it to just the few visitors you can get from link trades and directory submittals.
__________________
Naked Girlfriend Porn TGP
free partner account
walrus is offline   Reply With Quote
Old 2006-07-01, 12:27 AM   #14
Useless
Certified Nice Person
 
Useless's Avatar
 
Join Date: Oct 2003
Location: Dirty Undies, NY
Posts: 11,268
Send a message via ICQ to Useless
My understanding of the situaton is that in order to be penalized for duplicate content, page B would have to have many similarities to page A. Simply aggregating other peoples' posts and allowing them to mix with your own, on your unique site, shouldn't even bring you close to a penatly. With the popularity of RSS feeds being used on, and pulled from major mainstream sites, I get the sense that very few people who are "in the know" are worried about being penalized. Articles and blog posts have been republished across this mighty web for a considerable period now. If Google viewed the re-use of some content as duplicate, we would have known by now.

Also, blogs are not static - or at least they shouldn't be. Blog content is always updating and changing. You'd be hard pressed to convince me that the average blog would need to worry about the dupe penatly.
__________________
Click here to purchase a bridge I'm selling.
Useless is offline   Reply With Quote
Old 2006-07-01, 02:25 AM   #15
dr_montelbaun
Rock stars ... is there anything they don't know?
 
Join Date: Jun 2006
Posts: 10
Well, these things are definitely true if one takes the page as a whole. But the SEs know how to tease out the content of individual posts in a blog and treat them each as a single unit. They also know how to tell the difference between syndicated content (i.e. AP/Reuters stories on CNN, Yahoo, MSN, etc) and duplicate content that is published as if it is original content.

That being said -- I don't think there'd be a serious penalty for the duplication, like losing PR or something, so much as Google wouldn't index your syndicated post in the same way that it would index an original post. I think Walrus found some good info on how this would play out. If you do something to make the syndicated post your own (like CNN, Yahoo, MSN etc often do with AP/Reuters stories) then you may be able to get the SEs to treat your version as original content.
__________________
Dr. Montelbaun
The Internet is for Porn
http://www.internetisforporn.com
dr_montelbaun is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 09:09 PM.


Mark Read
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc