Please help with this error. 

Discussion in 'PHP' started by Eventsleader.com, Mar 31, 2008.

  1. #1
    If you go to www.bakerlayouts.com you will see these marks (  ) on the page, How do I get rid of them.....

    I am very new to this so just let me know if this is not in the right place.

    Thank you
    Chris
     
    Eventsleader.com, Mar 31, 2008 IP
  2. DiscJockey

    DiscJockey Well-Known Member

    Messages:
    1,689
    Likes Received:
    58
    Best Answers:
    0
    Trophy Points:
    100
    #2
    Have you tried to edit the template files and removing them manually?
     
    DiscJockey, Mar 31, 2008 IP
  3. Eventsleader.com

    Eventsleader.com Peon

    Messages:
    37
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I can not find them in the pages.
     
    Eventsleader.com, Mar 31, 2008 IP
  4. Eventsleader.com

    Eventsleader.com Peon

    Messages:
    37
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Bump! Bump!
     
    Eventsleader.com, Apr 1, 2008 IP
  5. mac83

    mac83 Active Member

    Messages:
    237
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    58
    #5
    mac83, Apr 1, 2008 IP
  6. Eventsleader.com

    Eventsleader.com Peon

    Messages:
    37
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Thank you, I will give it a try.
     
    Eventsleader.com, Apr 1, 2008 IP
  7. crazyryan

    crazyryan Well-Known Member

    Messages:
    3,087
    Likes Received:
    165
    Best Answers:
    0
    Trophy Points:
    175
    #7
    I believe it's something to do with the character encoding and maybe (not sure) more specifically UTF-8 (i think). :)
     
    crazyryan, Apr 1, 2008 IP
  8. Eventsleader.com

    Eventsleader.com Peon

    Messages:
    37
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Ok i took a look at the page and see nothing.
    Here is 728x90.php
    <?
    /**
    * 728x90.php - 728x90 Leaderboard Ad
    *
    * @package Scriptalicious MySpace
    * @copyright 2006 Scriptalicious
    * @url http://www.scriptalicious.com/en/Products/MySpace-Script.html
    *
    */
    include('../config.php');
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head><title>{ad_keywords}</title>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <meta http-equiv="Content-Type" charset="windows-1252">
    <meta name="keywords" content="{ad_keywords}">
    <meta name="description" content="{ad_keywords}">
    </HEAD>
    <body bgcolor="FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
    <iframe src="<?php echo $sm['url_base']; ?>ads/728x90_src.php" frameborder="0" scrolling="no" width="728" height="90"></iframe>
    </body>
    </html>

    Here is 728x90_src.php

    <?
    /**
    * 728x90 Leaderboard Ad source
    *
    * @package Scriptalicious MySpace
    * @copyright 2006 Scriptalicious
    * @url http://www.scriptalicious.com/en/Products/MySpace-Script.html
    *
    */
    include('../config.php');
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML><HEAD><TITLE>{ad_keywords}</TITLE>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <meta http-equiv="Content-Type" charset="windows-1252">
    <meta name="keywords" content="{ad_keywords}">
    <meta name="description" content="{ad_keywords}">
    </HEAD>
    <body bgcolor="FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
    <script type="text/javascript"><!--
    google_ad_client = "pub-0033084735879985";
    google_alternate_ad_url = "http://www.servermind.com/as/alt/rp_336x280.html";
    google_ad_width = 728;
    google_ad_height = 90;
    google_ad_format = "728x90_as";
    google_ad_type = "text";
    google_ad_channel ="8416524945";
    google_color_border = "FFFFFF";
    google_color_link = "0066CC";
    google_color_bg = "000000";
    google_color_text = "333333";
    google_color_url = "330033";
    //--></script>
    <script type="text/javascript"
    src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
    </script>
    </body>
    </html>
    Thank you
     
    Eventsleader.com, Apr 1, 2008 IP
  9. elias_sorensen

    elias_sorensen Well-Known Member

    Messages:
    852
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    110
    #9
    Works well in IE 7.0 for me :) But I can see the problem in FF.

    Try to use another character encoding.
    Replace <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    with <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
     
    elias_sorensen, Apr 1, 2008 IP
  10. Eventsleader.com

    Eventsleader.com Peon

    Messages:
    37
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #10
    That did it. Thank you for your help....
    Chris
     
    Eventsleader.com, Apr 1, 2008 IP
  11. elias_sorensen

    elias_sorensen Well-Known Member

    Messages:
    852
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    110
    #11
    You're welcome ;)
     
    elias_sorensen, Apr 1, 2008 IP