Slashdot Mirror


Finding an Ad Management System?

aagha asks: "I'm working for a very small, three-person startup in Athens, Greece (with a dwindling budget), trying to create the first real, full-featured tourism website for this country. While we have our home-grown Java-based Content Management System up and running and our site working fairly smoothly, we're having one heck of a time finding an ad management system to to work with our system. We have URL's which contain params to build our pages dynamically and we can't find a solution to work with our JSP's to serve ads targeted by category and or article. I know that I'm not the only person writing software for a JSP site (uhhh, or am I?). I'm curious to know what others have done to meet their advertisement serving needs."

4 of 30 comments (clear)

  1. Params - noooooooo by DrSkwid · · Score: 5, Insightful

    not search engine friendly

    spider :
    http://website/makepage.x?page=1 : ok
    http://website/makepage.x?page=2 : skipping - repeat
    http://website/makepage.x?page=3 : skipping - repeat
    http://website/makepage.x?page=4 : skipping - repeat

    --
    There are places where the networks are not touching,and there are places where they are-Boeing's Lori Gunter
  2. maybee by Anonymous Coward · · Score: 3, Insightful
    SELECT * FROM ads_live WHERE page_id=[page_ref] OR cat_id=[category_ref];

    joined with the ads table of course ;)

  3. try looking at web pages by DrSkwid · · Score: 5, Insightful

    mostly people seem to use javascript these days

    That way the pages themselves can be cached / static and the ads rotate themselves.
    This also helps with tracking as the script that generates the javascript can log the ads.

    Generating traffic via search engines is important.
    Your URL scheme is an important consideration.
    I use mod_perl to take the url and set environment variables which then tell the page generation code which page to generate. Similar to having a query string but my pages are called comething nice like

    http://www.thebigchoice.com/Graduate_Jobs/Teleco mm unications/Nutts_Corner/

    rather than

    http://www.thebigchoice.com/jobsearch.php?discip li neID=5&region=7

    --
    There are places where the networks are not touching,and there are places where they are-Boeing's Lori Gunter
  4. What ever you find by Anonymous Coward · · Score: 2, Insightful

    *please* make sure that the ad management system silently manages to remove popups, and limits all animations to at most one iteration. May hurt your advertising, but will please your users.