Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 04-21-2010, 03:23 PM   #1
camperjohn64
Confirmed User
 
Industry Role:
Join Date: Feb 2005
Location: Los Angeles
Posts: 1,531
Getting images linked in Google

I have probably about 200,000 images, spread across 10 domains over 5 years, and have never been able to get one of them index in google.

The only images I can get indexed are from stupid little websites that I made for friends (startdancinsd.com for example)

Can anyone else here that is successfully getting their images into google offer tips?

I use PHP to server my images, therefore I can only think it must be something with the headers...
__________________
www.gimmiegirlproductions.com
camperjohn64 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-21-2010, 03:26 PM   #2
Agent 488
Registered User
 
Industry Role:
Join Date: Feb 2006
Posts: 22,511
like in google image search?

just make sure your image and alt tags match your keywords?
Agent 488 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-21-2010, 03:29 PM   #3
GrouchyAdmin
Now choke yourself!
 
GrouchyAdmin's Avatar
 
Industry Role:
Join Date: Apr 2006
Posts: 12,085
Quote:
Originally Posted by camperjohn64 View Post
I use PHP to server my images, therefore I can only think it must be something with the headers...
Dingdingding.

How are you doing this? If you don't support 304, it'll never get linked. Using fpassthru() and readfile() type of shit is neat, but make sure you support HTTP/1.1.
__________________
GrouchyAdmin is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-21-2010, 05:58 PM   #4
camperjohn64
Confirmed User
 
Industry Role:
Join Date: Feb 2005
Location: Los Angeles
Posts: 1,531
Ok I will research the 304. Is this for HTML files also?

At the moment I am only doing this:
Code:
            header("HTTP/1.1 200 OK");
            header("Status: 200 OK");
            header("Pragma: public");
            header("Cache-control: public");
            header("Accept-Ranges: bytes");
            header('Last-Modified: Sat, 03 Mar 1973 09:46:40 GMT');
            header('Expires: Wed, 18 May 2033 03:33:20 GMT');
            header("Content-Length: " . strlen($content));
            header("Content-Type: $content_type");
            header("Connection: close");
            
            echo $content;
__________________
www.gimmiegirlproductions.com
camperjohn64 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-21-2010, 06:33 PM   #5
fatfoo
ICQ:649699063
 
Industry Role:
Join Date: Mar 2003
Posts: 27,763
Quote:
Originally Posted by Agent 488 View Post
like in google image search?

just make sure your image and alt tags match your keywords?
I am guessing he is talking about Google Images.
__________________
Send me an email: [email protected]
fatfoo is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-21-2010, 06:48 PM   #6
V_RocKs
Damn Right I Kiss Ass!
 
Industry Role:
Join Date: Dec 2003
Location: Cowtown, USA
Posts: 32,409
Pretty f'ing simple...

Have text near image with keywords you want. Name image keywords you want. Have a link near image with keyword you want. Title page with keywords. Alt tag keywords...

If that doesn't work, google is on to you.
V_RocKs is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-21-2010, 06:50 PM   #7
alias
aliasx
 
alias's Avatar
 
Join Date: Apr 2001
Posts: 19,010
Alt tags and image naming.
__________________
https://porncorporation.com
alias is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-21-2010, 07:23 PM   #8
jackknoff
Confirmed User
 
Join Date: Feb 2010
Posts: 545
Have you submitted your site itself to google? You can do so here

http://www.google.com/addurl/

Spanx!
Jack
jackknoff is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-21-2010, 07:51 PM   #9
camperjohn64
Confirmed User
 
Industry Role:
Join Date: Feb 2005
Location: Los Angeles
Posts: 1,531
Done all those things. Google images: 0 links.

I think it must be the 304 header issue.
__________________
www.gimmiegirlproductions.com
camperjohn64 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-21-2010, 07:57 PM   #10
GrouchyAdmin
Now choke yourself!
 
GrouchyAdmin's Avatar
 
Industry Role:
Join Date: Apr 2006
Posts: 12,085
Quote:
Originally Posted by camperjohn64 View Post
Ok I will research the 304. Is this for HTML files also?

At the moment I am only doing this:
Code:
            header("HTTP/1.1 200 OK");
            header("Status: 200 OK");
            header("Pragma: public");
            header("Cache-control: public");
            header("Accept-Ranges: bytes");
            header('Last-Modified: Sat, 03 Mar 1973 09:46:40 GMT');
            header('Expires: Wed, 18 May 2033 03:33:20 GMT');
            header("Content-Length: " . strlen($content));
            header("Content-Type: $content_type");
            header("Connection: close");
            
            echo $content;
I'm pretty sure that did piss them off. You're using 2 different forms of 'no cache', but the checksum of the file is always the same. You should be using eTags and sending 304 (not modified since) for them to pick it up. If you've not already been marked rogue.
__________________
GrouchyAdmin is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-22-2010, 10:15 AM   #11
camperjohn64
Confirmed User
 
Industry Role:
Join Date: Feb 2005
Location: Los Angeles
Posts: 1,531
Checking my apache logs, I see the first access to a regular image is done with a 200, then a second access is a 304.

Is there way I can get a dump of the headers from firefox so I can reproduce this?
__________________
www.gimmiegirlproductions.com
camperjohn64 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-22-2010, 10:33 AM   #12
M0nk
Confirmed User
 
M0nk's Avatar
 
Industry Role:
Join Date: Feb 2007
Location: uruguay
Posts: 3,502
place a text near to your image that has the propper keywords and its done!
__________________
No! I donīt work for SPACash anymore so stop asking.

ICQ: 458651805
M0nk is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-22-2010, 11:03 AM   #13
MediaGuy
Confirmed User
 
MediaGuy's Avatar
 
Industry Role:
Join Date: Sep 2004
Location: Montrealquebecanada
Posts: 5,500
Do you have sitemaps for your site/s?

http://www.xml-sitemaps.com/

:D
__________________

YOU Are Industry News!
Press Releases: pr[at]payoutmag.com
Facebook: Payout Magazine! Facebook: MIKEB!
ICQ: 248843947
Skype: Mediaguy1
MediaGuy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-22-2010, 11:20 AM   #14
seeandsee
Check SIG!
 
seeandsee's Avatar
 
Industry Role:
Join Date: Mar 2006
Location: Europe (Skype: gojkoas)
Posts: 50,945
Quote:
Originally Posted by camperjohn64 View Post
I have probably about 200,000 images, spread across 10 domains over 5 years, and have never been able to get one of them index in google.

The only images I can get indexed are from stupid little websites that I made for friends (startdancinsd.com for example)

Can anyone else here that is successfully getting their images into google offer tips?

I use PHP to server my images, therefore I can only think it must be something with the headers...
get google image indexer
__________________
BUY MY SIG - 50$/Year

Contact here
seeandsee is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-22-2010, 05:05 PM   #15
GrouchyAdmin
Now choke yourself!
 
GrouchyAdmin's Avatar
 
Industry Role:
Join Date: Apr 2006
Posts: 12,085
Quote:
Originally Posted by camperjohn64 View Post
Checking my apache logs, I see the first access to a regular image is done with a 200, then a second access is a 304.

Is there way I can get a dump of the headers from firefox so I can reproduce this?
Yeah. LiveHeaders.
__________________
GrouchyAdmin is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-22-2010, 10:19 PM   #16
camperjohn64
Confirmed User
 
Industry Role:
Join Date: Feb 2005
Location: Los Angeles
Posts: 1,531
So I installed LiveHeaders, and tried to get it to show the 304:

https://gfy.com/skins/gfy/gfy_lady.jpg

The lady gives me a response of 200 every time.

Does anyone else see the same 200? Can you find a wesite that returns 304 for an image?

Here is an image that I am serving up with PHP:

http://www.photofight.com/flashgames/b/beerdude.jpg

What would you change in those headers?
__________________
www.gimmiegirlproductions.com
camperjohn64 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-28-2010, 10:57 AM   #17
camperjohn64
Confirmed User
 
Industry Role:
Join Date: Feb 2005
Location: Los Angeles
Posts: 1,531
Wow instant results!!!

- I added the eTag to images
- modified the "Make PHP visible" option in php.ini (removes the "Powered by X-PHP..." in headers
- Took at look at other headers on other images and made mine look identical to them.

Only one week later, instant results in getting images indexed:

Ok it's not much, but it's better than 0 images! I didn't think they would show up so fast!

http://images.google.com/images?um=1...art=0&imgtbs=s
__________________
www.gimmiegirlproductions.com
camperjohn64 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright Đ 2000- Jelsoft Enterprises Limited.