Application Development Issues with Browsers

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Application Development Issues with Browsers

    Hey people,

    I'm in grave need of help. I just created an entire site using dreamweaver MX

    [url]www.mpactaccess.com[/url]

    however, here are the issues I'm running into:
    1) I can't view this site in FireFox and my Safari, I can view it in IE
    2) When you are able to view it, in the url and other pages alike instead of
    displaying "www.mpactaccess.com" it displays something like
    "www.mpactaccess.com/charles/index.html", thats my name I have no idea why it
    is displaying that?

    What a mess, I need to fix this asap. I appreciate any input.

    CK

    FiltreD Guest

  2. Similar Questions and Discussions

    1. Application Development Advice
      We have been using Flash for the last couple of years to develop small applications and presentations used for project reporting. Most of our...
    2. Download Issues With Different Browsers
      I'm using a simple, simple download example app to fetch a file from a tomcat server. It seems to work fine on Mozilla fireFox, but when I use it...
    3. Ebook application development
      Would Macromedia Director be the best tool for an ebook application which contains text and multimedia content as well as complex searching...
    4. Netscape will cease development for new browsers.
      From Eric Meyer's http://www.meyerweb.com/ is the following announcement:It's true: Netscape is no longer a viable entity. I'll leave it to others to...
    5. Web enabled application development
      I am trying to convert a GUI based windows application developed in C++ into the same web enabled application. My questions are: 1. .NET proveds...
  3. #2

    Default Re: Application Development Issues with Browsers

    You have this code on your page that is causing both the fireworks issue and
    the IE issue. There is a javascript sitting under the body tag that is
    telling the page to redirect to the /charles/index.htm page.



    --
    Regards

    Paul Whitham
    Macromedia Certified Professional for Dreamweaver MX2004
    Valleybiz Internet Design
    [url]www.valleybiz.net[/url]

    Team Macromedia Volunteer for Ultradev/Dreamweaver MX
    [url]www.macromedia.com/support/forums/team_macromedia[/url]

    "FiltreD" <webforumsuser@macromedia.com> wrote in message
    news:d732rc$b89$1@forums.macromedia.com...
    > Hey people,
    >
    > I'm in grave need of help. I just created an entire site using
    dreamweaver MX
    >
    > [url]www.mpactaccess.com[/url]
    >
    > however, here are the issues I'm running into:
    > 1) I can't view this site in FireFox and my Safari, I can view it in IE
    > 2) When you are able to view it, in the url and other pages alike instead
    of
    > displaying "www.mpactaccess.com" it displays something like
    > "www.mpactaccess.com/charles/index.html", thats my name I have no idea why
    it
    > is displaying that?
    >
    > What a mess, I need to fix this asap. I appreciate any input.
    >
    > CK
    >

    Paul Whitham TMM Guest

  4. #3

    Default Re: Application Development Issues with Browsers

    Paul,

    Thank you for your help, however I'm looking at the index page code, and I cannot find the code in the body tag that is redirecting the browser?
    FiltreD Guest

  5. #4

    Default Re: Application Development Issues with Browsers

    <SCRIPT LANGUAGE="JavaScript"><!--
    var timeID= window.setInterval("moveTo();", 1);

    function moveTo()
    {
    window.clearInterval(timeID);
    document.URL= "Charles/index.html";
    }
    //--></SCRIPT>


    Originally posted by: FiltreD
    Paul,

    Thank you for your help, however I'm looking at the index page code, and I
    cannot find the code in the body tag that is redirecting the browser?



    CarlGrint Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139