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.

adsense not showing up

Discussion in 'Placement / Reviews / Examples' started by Voro, Jun 18, 2007.

  1. #1
    www.rapidfind.org/ad

    i got the code in there but its just a blank white square...

    what to do?

    Voro
     
    Voro, Jun 18, 2007 IP
  2. patwa

    patwa Peon

    Messages:
    61
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    First make sure the code is in fact working. Paste the code exactly as it's provided into a completely blank page, in between the <bodhy> and </body> tags. If that shows up, then we know it's working and can move onto the next step. If not there's a fault in the code or you're missing something out.

    I always put my code in a table cell, and put comments around it so that I know where it is. Further more, I use an include to enter it into the site, that way I know it's the right code, and it cuts down on mistakes. Take a look at www.patwanet.co.uk and look at the source. You see where the included file is? It's where the <head> and <body> tags repeat themselves. That page is actually an .shtml file, and I'm using the <!--#include virtual=""--> syntax to include the code. The included file is a standard .html file with the code in it (as I mentioned above for your 'test') and wrapped in a table.

    Hope this help.

    H.
     
    patwa, Jun 18, 2007 IP
  3. xAlexKimx

    xAlexKimx Well-Known Member

    Messages:
    547
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    158
    #3
    re-check the code if there's missing...
     
    xAlexKimx, Jun 18, 2007 IP
  4. Voro

    Voro Active Member

    Messages:
    146
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    83
    #4
    i copied it exactly from the adsense site
     
    Voro, Jun 18, 2007 IP
  5. Voro

    Voro Active Member

    Messages:
    146
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    83
    #5
    like whats going on, i changed it to www.rapidfind.org/ad.html and when i open it in front page, it works in the preview...
     
    Voro, Jun 18, 2007 IP
  6. Voro

    Voro Active Member

    Messages:
    146
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    83
    #6
    hmm when i put it on another site it works... whats going on?
     
    Voro, Jun 18, 2007 IP
  7. patwa

    patwa Peon

    Messages:
    61
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    The only reason I advised you to use an include is that I was having problems with the ads not showing up - they would show at the top but not at the bottom. Using the include solved the problem, how and why i don't know, Google don't either, maybe it was a syntax issue between Windows and Unix or something crazy like that.

    H.
     
    patwa, Jun 18, 2007 IP
  8. trichnosis

    trichnosis Prominent Member

    Messages:
    13,785
    Likes Received:
    333
    Best Answers:
    0
    Trophy Points:
    300
    #8
    i only see

    "Not Found


    The requested URL was not found on this server."

    is your site active?
     
    trichnosis, Jun 18, 2007 IP
  9. Dzuster

    Dzuster Banned

    Messages:
    1,103
    Likes Received:
    57
    Best Answers:
    0
    Trophy Points:
    0
    #9
    Why the pages are NOT FOUND?
    dead link mate..
     
    Dzuster, Jun 18, 2007 IP
  10. Voro

    Voro Active Member

    Messages:
    146
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    83
    #10
    Voro, Jun 18, 2007 IP
  11. PaulW43

    PaulW43 Banned

    Messages:
    40
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #11
    For starters your page layout is incorrectly coded. Where is your <Body> tag to indicate the startn of the body copy of the page. You also have no closed </head>.

    You should have at least two sections to every page, the Header which is indicated by <head> and closed by </head>. This includes your Doctype, Page Title, Meta Tags etc. After the closed Header tag then you should have your body tages - <body> and closed </body>. This section has all your visible text etc. Try doing this and putting the adsense code into the body of the page. Should work.
     
    PaulW43, Jun 18, 2007 IP
  12. Voro

    Voro Active Member

    Messages:
    146
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    83
    #12
    i think it has something to do with the domain cuz i uploaded this very same page to a differnt domain and it works perfectly, i have switched to bidadvertiser since it works perfectly..
     
    Voro, Jun 18, 2007 IP
  13. patwa

    patwa Peon

    Messages:
    61
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #13
    By include we mean a document which is physically separate from the main webpage but which appears in it by means of an include statement. You're 'including' the contents of this second document into your web page.

    This is beneficial as it avoids repetition. If you use the same code on many pages, such as your Google code, you don't have to keep copying and pasting the whole code, you just include the one document into each page. It also means that if you ever want to change the code, you only change it in that one document and it's changed in every web page where it's included.

    This is the technique which is used with navigation bars on big websites, it's the same bar on each page, but the code for the bar is not copied on each page, it's just written in one document and an include statement imports it into the pages. Then, if say you wanted to add a link to the navigation bar, you'd just add that link to the separate document containing just the bar, and it would automatically appear on all the pages.

    Have a look at PHP includes in Google, if you're using shtml pages and you've got access to your .htaccess file in your website's directory, you can use shtml virtual includes as well. there are other types of includes too, just depends on what code base you're using. Renaming your pages from .html to .shtml is probably the easiest, then add a line into your .htaccess file so the webserver recognises the pages and use the virtual include statement to bring your Google code into the main pages of your site.

    H.
     
    patwa, Jun 18, 2007 IP