1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

FREEBS - Free Book Store Release

Discussion in 'Products & Tools' started by noppid, Apr 13, 2005.

  1. Bulldog San

    Bulldog San Peon

    Messages:
    195
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #41
    Bulldog San, Apr 15, 2005 IP
  2. noppid

    noppid gunnin' for the quota

    Messages:
    4,246
    Likes Received:
    232
    Best Answers:
    0
    Trophy Points:
    135
    #42
    Nice job!

    FREEBS - Free Book Store 1.06 is posted. With 1.06 you can run the p3.php script multiple times giving it an override keyword, limit, and start page to populate your books database. I got my computer book store over 4K books in like 3 keywords.

    The new start page parameter allows those with php in safe mode and those with limited memory to populate their databases in small chunks that their server can handle. Now everyone can have a book store with a little effort.

    Upgrades are painless, just replace the specified php files and you're done.
    Thanks
     
    noppid, Apr 15, 2005 IP
  3. noppid

    noppid gunnin' for the quota

    Messages:
    4,246
    Likes Received:
    232
    Best Answers:
    0
    Trophy Points:
    135
    #43
    p3.php has become too powerful. You can and if you're like me, you're trying to popluate the database with as many books as possible. Keep the Amazon TOS in mind when doing so. That's on you.

    However this has brought up another issue. Book List pages with hundreds of books. These pages have too many links and they are well over 50k and even 100K in some cases. This is not good search engine food IMO.

    So, we have pagination. Check my FREEBS book stores for the example and let's hear some feedback.

    Thanks
     
    noppid, Apr 15, 2005 IP
  4. mizt

    mizt Active Member

    Messages:
    772
    Likes Received:
    39
    Best Answers:
    0
    Trophy Points:
    70
    #44

    Sounds like a very good mod. I may end up editing my list anyway to look less spammy by removing the ISBN and AS of Date. Anyway seems I'm having a hell of a time getting goolge to suck this site up. I did have freebie on the domain previously maybe that turned google off. O well I'm going to make on more book store and then check back on them in 8 months =).
     
    mizt, Apr 15, 2005 IP
  5. noppid

    noppid gunnin' for the quota

    Messages:
    4,246
    Likes Received:
    232
    Best Answers:
    0
    Trophy Points:
    135
    #45
    Yep, we're in vigin territory here where google is concerned. We'll have to see how it plays out. But in the webmaster guide, it's pretty obvious that hundreds of links and pages over 50K can be ignored. So this is where I'm taking FREEBS.

    I think we're on the right track.
     
    noppid, Apr 15, 2005 IP
  6. mnemtsas

    mnemtsas Super Dud

    Messages:
    497
    Likes Received:
    40
    Best Answers:
    0
    Trophy Points:
    0
    #46
    Well Google indexed the index.php file within 48 hrs, but still hasn't gone deeper than that. I'm interested to see how long it takes.
     
    mnemtsas, Apr 16, 2005 IP
  7. Blogmaster

    Blogmaster Blood Type Dating Affiliate Manager

    Messages:
    25,924
    Likes Received:
    1,354
    Best Answers:
    0
    Trophy Points:
    380
    #47
    Blogmaster, Apr 16, 2005 IP
  8. noppid

    noppid gunnin' for the quota

    Messages:
    4,246
    Likes Received:
    232
    Best Answers:
    0
    Trophy Points:
    135
    #48

    How do you guys catch this stuff?
     
    noppid, Apr 16, 2005 IP
  9. Blogmaster

    Blogmaster Blood Type Dating Affiliate Manager

    Messages:
    25,924
    Likes Received:
    1,354
    Best Answers:
    0
    Trophy Points:
    380
    #49
    try having incoming links from other sites to individual pages as well :cool:
     
    Blogmaster, Apr 16, 2005 IP
  10. kyle422

    kyle422 Peon

    Messages:
    290
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #50
    I added this code to all my pages
    <?php
    
    if(eregi("googlebot",$HTTP_USER_AGENT))
    
        {
    
    $crawl = gethostbyaddr($_SERVER["REMOTE_ADDR"]);
    
    if(eregi("64.",$REMOTE_ADDR))
    
    { $crawler = "Refresh GoogleBot"; }
    
    if(eregi("216.",$REMOTE_ADDR))
    
    { $crawler = "Google Deep Crawler"; }
    
    else
    
    { $crawler = "Unknown Crawler"; }
    
    
    
    if ($QUERY_STRING != "")
    
    {$url = "http://".$SERVER_NAME.$PHP_SELF.'?'.$QUERY_STRING;}
    
    else
    
    {$url = "http://".$SERVER_NAME.$PHP_SELF;}
    
    $today = date("F j, Y, g:i a");
    
    mail("youremail@youraddress.com", "Googlebot detected on $SERVER_NAME", " $today \n Googlebot IP Address: $REMOTE_ADDR \n Googlebot Domain: $crawl \n Crawler Type: $crawler \n Url Visited: $url");
    
    }
    ?> 
    PHP:
     
    kyle422, Apr 16, 2005 IP
  11. noppid

    noppid gunnin' for the quota

    Messages:
    4,246
    Likes Received:
    232
    Best Answers:
    0
    Trophy Points:
    135
    #51
    That's nice. I have a hit counter I wrote that does similar and adds the info to a database. I just didn't add it to FREEBS. Thanks for sharing your idea, that's cool.
     
    noppid, Apr 16, 2005 IP
  12. noppid

    noppid gunnin' for the quota

    Messages:
    4,246
    Likes Received:
    232
    Best Answers:
    0
    Trophy Points:
    135
    #52
    noppid, Apr 16, 2005 IP
  13. mizt

    mizt Active Member

    Messages:
    772
    Likes Received:
    39
    Best Answers:
    0
    Trophy Points:
    70
    #53
    mizt, Apr 16, 2005 IP
  14. noppid

    noppid gunnin' for the quota

    Messages:
    4,246
    Likes Received:
    232
    Best Answers:
    0
    Trophy Points:
    135
    #54
    I'm working on that one, the index URL has a page number too with pagination.

    http://www._your_books_.com/books/index.php?key=h&p=2

    That is not going as easily. I never did this before.
     
    noppid, Apr 16, 2005 IP
  15. noppid

    noppid gunnin' for the quota

    Messages:
    4,246
    Likes Received:
    232
    Best Answers:
    0
    Trophy Points:
    135
    #55
    Got the index working in html too, have a look and let me know whatcha think.

    Thanks.
     
    noppid, Apr 16, 2005 IP
  16. sagetips

    sagetips Peon

    Messages:
    239
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #56
    mnemtsas -

    Could you expand on how you did this? I'm not a CSS expert. Did you do it via php includes? I'd like to get my new bookstore

    http://www.sagetips.com/FREEBS Release 1.07/index.php

    to fit in better with my site.

    Thanks
     
    sagetips, Apr 16, 2005 IP
  17. Bulldog San

    Bulldog San Peon

    Messages:
    195
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #57
    I've added one and increased the number of books in two others in the last 10 minutes. Deleted a couple of testing bookshops. Down to only 4 now.

    Can't wait to see them indexed.
     
    Bulldog San, Apr 16, 2005 IP
  18. noppid

    noppid gunnin' for the quota

    Messages:
    4,246
    Likes Received:
    232
    Best Answers:
    0
    Trophy Points:
    135
    #58
    noppid, Apr 16, 2005 IP
  19. kyle422

    kyle422 Peon

    Messages:
    290
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #59
    Great noppid. Seems spider friendly. :)
     
    kyle422, Apr 16, 2005 IP
  20. noppid

    noppid gunnin' for the quota

    Messages:
    4,246
    Likes Received:
    232
    Best Answers:
    0
    Trophy Points:
    135
    #60
    Yeah, when it revisits, it will find the index changed to point to all html files. ;)
     
    noppid, Apr 16, 2005 IP