Browser shows only codes instead of graphics

Hi,
I've got a problem
When I test out (f12) my design, the window browser showed
only html and my style sheet. Normally, I would see my graphics.
Does this have anything to do with MYSQL and APACHE on ? I am
using Wamp and dreamweaver cs

Post a link to the site if you hope to have someone figure it
out..
gary
"RunRunforest" <[email protected]> wrote in
message
news:gb8ld2$jc1$[email protected]..
> Hi,
>
> I've got a problem
>
> When I test out (f12) my design, the window browser
showed only html and
> my
> style sheet. Normally, I would see my graphics.
>
> Does this have anything to do with MYSQL and APACHE on ?
I am using Wamp
> and
> dreamweaver cs
>
>
>

Similar Messages

  • Browser shows only 19 items

    Anybody having problems with the browser only showing 19 items? Yes, I have more than 19 items. When I disclose a bin that has more items, the browser shows only 19 items starting from the top down. No, scrolling down is not working. Yes, I have expanded the browser to full screen height, the only result being 19 items with a lot of empty browser beneath.
    Very frustrating, I can't figure out what the deal is. Have trashed prefs. Have the latest updates. Problem replicates with other projects.
    I need to see what's in my browser. I consider this a major bug.

    I know this thread is over two months old, but I'm having the same problem.
    I have been capturing 63-minute DV tapes in their full form, then breaking them into subclips as an easier way to log and capture (at least for what I'm doing).
    I placed 94 markers on the latest tape with the intention of breaking it into 94 subclips, but my browser will only scroll down to the Marker 64. At least it's not 19, but I need to be able to have access to the other 30 markers so I can turn them into subclips. This seems like a bug.
    64 isn't some kind of magic number, is it?

  • Why is my browser showing only http and not https

    Why is my browser showing only http and not https//

    Western (ISO 8859-1) is the default encoding in Firefox.<br />
    That web page doesn't specify an encoding and the server doesn't send one either, so the default in Firefox is used.<br />
    If you get those diamonds then you either have a wrong encoding set or there is a problem with the (Verdana) font that is used.

  • Preview in browser shows html code

    Can't get DW to display my design, I go to "preview in
    browser" and it goes to the browser and shows the html code
    instead. Can someone help me fix that?

    <%@LANGUAGE="JAVASCRIPT" CODEPAGE="65001"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- TemplateEndEditable -->
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <style type="text/css">
    <!--
    body {
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    background: #666666;
    margin: 0; /* it's good practice to zero the margin and
    padding of the body element to account for differing browser
    defaults */
    padding: 0;
    text-align: center; /* this centers the container in IE 5*
    browsers. The text is then set to the left aligned default in the
    #container selector */
    color: #000000;
    /* Tips for Elastic layouts
    1. Since the elastic layouts overall sizing is based on the
    user's default fonts size, they are more unpredictable. Used
    correctly, they are also more accessible for those that need larger
    fonts size since the line length remains proportionate.
    2. Sizing of divs in this layout are based on the 100% font
    size in the body element. If you decrease the text size overall by
    using a font-size: 80% on the body element or the #container,
    remember that the entire layout will downsize proportionately. You
    may want to increase the widths of the various divs to compensate
    for this.
    3. If font sizing is changed in differing amounts on each div
    instead of on the overall design (ie: #sidebar1 is given a 70% font
    size and #mainContent is given an 85% font size), this will
    proportionately change each of the divs overall size. You may want
    to adjust based on your final font sizing.
    .twoColElsLtHdr #container {
    width: 46em; /* this width will create a container that will
    fit in an 800px browser window if text is left at browser default
    font sizes */
    background: #FFFFFF;
    margin: 0 auto; /* the auto margins (in conjunction with a
    width) center the page */
    border: 1px solid #000000;
    text-align: left; /* this overrides the text-align: center
    on the body element. */
    .twoColElsLtHdr #header {
    background: #DDDDDD;
    padding: 0 10px; /* this padding matches the left alignment
    of the elements in the divs that appear beneath it. If an image is
    used in the #header instead of text, you may want to remove the
    padding. */
    .twoColElsLtHdr #header h1 {
    margin: 0; /* zeroing the margin of the last element in the
    #header div will avoid margin collapse - an unexplainable space
    between divs. If the div has a border around it, this is not
    necessary as that also avoids the margin collapse */
    padding: 10px 0; /* using padding instead of margin will
    allow you to keep the element away from the edges of the div */
    /* Tips for sidebar1:
    1. Be aware that if you set a font-size value on this div,
    the overall width of the div will be adjusted accordingly.
    2. Since we are working in ems, it's best not to use padding
    on the sidebar itself. It will be added to the width for standards
    compliant browsers creating an unknown actual width.
    3. Space between the side of the div and the elements within
    it can be created by placing a left and right margin on those
    elements as seen in the ".twoColElsLtHdr #sidebar1 p" rule.
    .twoColElsLtHdr #sidebar1 {
    float: left;
    width: 12em; /* since this element is floated, a width must
    be given */
    background: #EBEBEB; /* the background color will be
    displayed for the length of the content in the column, but no
    further */
    padding: 15px 0; /* top and bottom padding create visual
    space within this div */
    .twoColElsLtHdr #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {
    margin-left: 10px; /* the left and right margin should be
    given to every element that will be placed in the side columns */
    margin-right: 10px;
    /* Tips for mainContent:
    1. If you give this #mainContent div a font-size value
    different than the #sidebar1 div, the margins of the #mainContent
    div will be based on its font-size and the width of the #sidebar1
    div will be based on its font-size. You may wish to adjust the
    values of these divs.
    2. The space between the mainContent and sidebar1 is created
    with the left margin on the mainContent div. No matter how much
    content the sidebar1 div contains, the column space will remain.
    You can remove this left margin if you want the #mainContent div's
    text to fill the #sidebar1 space when the content in #sidebar1
    ends.
    3. To avoid float drop, you may need to test to determine the
    approximate maximum image/element size since this layout is based
    on the user's font sizing combined with the values you set.
    However, if the user has their browser font size set lower than
    normal, less space will be available in the #mainContent div than
    you may see on testing.
    4. In the Internet Explorer Conditional Comment below, the
    zoom property is used to give the mainContent "hasLayout." This
    avoids several IE-specific bugs that may occur.
    .twoColElsLtHdr #mainContent {
    margin: 0 1.5em 0 13em; /* the right margin can be given in
    ems or pixels. It creates the space down the right side of the
    page. */
    .twoColElsLtHdr #footer {
    padding: 0 10px; /* this padding matches the left alignment
    of the elements in the divs that appear above it. */
    background:#DDDDDD;
    .twoColElsLtHdr #footer p {
    margin: 0; /* zeroing the margins of the first element in
    the footer will avoid the possibility of margin collapse - a space
    between divs */
    padding: 10px 0; /* padding on this element will create
    space, just as the the margin would have, without the margin
    collapse issue */
    /* Miscellaneous classes for reuse */
    .fltrt { /* this class can be used to float an element right
    in your page. The floated element must precede the element it
    should be next to on the page. */
    float: right;
    margin-left: 8px;
    .fltlft { /* this class can be used to float an element left
    in your page */
    float: left;
    margin-right: 8px;
    .clearfloat { /* this class should be placed on a div or
    break element and should be the final element before the close of a
    container that should fully contain a float */
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
    -->
    </style><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional
    comment */
    .twoColElsLtHdr #sidebar1 { padding-top: 30px; }
    .twoColElsLtHdr #mainContent { zoom: 1; padding-top: 15px; }
    /* the above proprietary zoom property gives IE the hasLayout
    it needs to avoid several bugs */
    </style>
    <![endif]--></head>
    <body class="twoColElsLtHdr">
    <div id="container">
    <div id="header">
    <h1><img src="../MASTHEAD.jpg" width="720"
    height="269" /></h1>
    <!-- end #header --></div>
    <div id="sidebar1">
    <blockquote>
    <pre> </pre>
    </blockquote>
    <h3>Landscaping</h3>
    <p><strong>Lawn Care</strong></p>
    <p><strong>Chemical
    Services</strong></p>
    <p><strong>Tree
    Services</strong></p>
    <p><strong>Retaining
    Walls</strong></p>
    <p><strong>Water
    Gardens</strong></p>
    <p><strong>Special
    Projects</strong></p>
    <p> </p>
    <!-- end #sidebar1 --></div>
    <div id="mainContent">
    <h1> GET THE EDGE</h1>
    <p>Custom Edges Enterprises gives you the edge when it
    comes to landscape design, implementation and
    maintenance.</p>
    <p>Residential and commercial properties thrive under
    the supervision and attention of Custom Edges
    Enterpirses.</p>
    <!-- end #mainContent --></div>
    <!-- This clearing element should immediately follow the
    #mainContent div in order to force the #container div to contain
    all child floats --><br class="clearfloat" />
    <div id="footer">
    <p>Footer</p>
    <!-- end #footer --></div>
    <!-- end #container --></div>
    </body>
    </html>

  • Satellite Pro A200 - Shows only 3GB instead 4GB RAM

    Hi,
    2 years ago I got a Satellite Pro A200 as a business notebook and it runs with XP SP2, later with SP3. With 2 GB it shows 2 GB of memory in Windows - and I know it has a Radeon 7500 with 256MB of individual graphic memory, and it has no shared memory.
    I upgraded it to 4 GB, but Windows shows exactly 3 GB. BIOS shows 4 GB and the ATI system monitor shows 4 GB. I know that 4 GB is not possible in XP 32 bit, only on Windows 2003 R2 32 bit or Vista - but on desktop systems I have seen values between 3.3 and 3.7 GB.
    So where is the memory? It looks like a bug - the memory chips have both 2 GB I have verified this. Because it is a company notebook I can't just upgrade to XP 64 bit :-(
    In the BIOS are no options - first I thought it's the graphic card, but mine has independant graphics with own memory so the computer comes up with 2048 MB or 4096 after the upgrade.
    Shared memory would show about 1900 MB of RAM to the OS like my private EEEpc.

    > I upgraded it to 4 GB, but Windows shows exactly 3 GB. BIOS shows 4 GB and the ATI system monitor shows 4 GB. I know that 4 GB is not possible in XP 32 bit, only on Windows 2003 R2 32 bit or Vista - but on desktop systems I have seen values between 3.3 and 3.7 GB.
    First of all 32bit OS (no matter if its XP, Win 2003 R2, Vista or Win 7) will not recognize 4GB RAM but only 3.2GB (and not 3.7GB)
    I have no idea where you looked for available RAM but you should run DXDIAG in RUN.
    Then you should get some details and also the available RAM.
    Secondly the graphic card supports Local cache (256MB) and HyperMemory.
    HyperMemory of the graphic card depends on the available main RAM memory.
    For example the unit supports 1024MB RAM (1GB) then the hyper memory would be 256MB this part of RAM would be shared with graphic card!
    This is the reason why the only 3GB are shown...
    PS: regarding such comments and a tip:
    > hey man please think before you answer.
    This is a community and all people here try to help each other so be always thankful for all kind of answers

  • Design not showing only code

    Hello, I have Dreamweaver showing both the code and design
    view. However, when I type in the code and want to see the design
    in split screen, only the code is showing in the design window. I
    am using a table to add some images. For my table I know have a
    greeen outline of the table that shows the layout, which I did not
    have last time I did a table. Not sure what is going on. Thanks for
    any help.

    take a look in the dw menu-->View-->Table View
    Which one has a checkmark next to it?
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Why does Thunderbird 31.1.2 see .url files as text documents? As a result, opening with any browser shows only text that are properties of the .url.

    I have an email with .url attachments. When I click on them I get a messages similar to this:
    You have chosen to open: Test.url
    which is: Text Document (5.0KB)
    from: mailbox://
    What should Thunderbird do with this file?
    If I select "Open with Firefox" I get a local page open up in Firefox with the address:
    file:///C:/Users/Scott/AppData/Local/Temp/Test.url-1.txt
    and the contents of this page:
    [InternetShortcut]
    URL=http://www.vrbo.com/xxxxxx
    IDList=
    IconFile=http://resources.vrbo.com/resources/xxxxx/images/favicon.ico
    IconIndex=1
    [{000214A0-0000-0000-C000-000000000046}]
    Prop3=19,2
    If I choose to save the .url file to the desktop it opens correctly in Firefox.
    Can someone assist me with this?
    Anyone???

    This issue can be caused by an old bitmap version of the Helvetica or Geneva font or (bitmap) fonts that Firefox can't display in that size.
    Firefox can't display some old bitmap fonts in a larger size and displays gibberish instead.
    You can test that by zooming out (View > Zoom > Zoom Out, Ctrl -) to make the text smaller.
    Uninstall (remove) all variants of that not working font to make Firefox use another font or see if you can find a True type version that doesn't show the problem.
    There have also been fonts with a Chinese name reported that identify themselves as Helvetica, so check that as well.
    Use this test to see if the Helvetica font is causing it (Copy & Paste the code in the location bar and press Enter):
    <pre><nowiki>data:text/html,
    Helvetica<br><font face="Helvetica" size="25">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</font><br>
    Helvetica Neue<br><font face="Helvetica Neue" size="25">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</font>
    </nowiki></pre>
    You should reset the network.http prefs that show user set on the about:config page.<br />
    Not all websites support http pipelining and if they do not then you can have issues with images or other problems.
    See also http://kb.mozillazine.org/Images_or_animations_do_not_load#First_steps

  • Address Field in Browse Shows only main web address

    The main URL address in the browser URL window shows all the time no matter which sub page it is on it stays the same. In other words no addresses shows except the one where the index page is locate, the sub folder address do not show.

    Ok I know what you mean.
    The reason is you are using Frames and the way it works is that each new link opens in the same frame without telling you which page is loaded.
    The only way around this is to re-design the site using HTML/CSS or even TABLES if you are new to web-creation.
    You may not know this but frames are a depracated technology and the standards setters have stopped developing it any further.  I suggest read this article:
    <http://www.useit.com/alertbox/9612.html>
    hth

  • Iframe shows only code - Help, please!

    I'm on OS X 10.4.5 and have designed a website that uses iframes (this is a must as there is a lot of content and I do not want the page bigger than the set size, so I need a way to scroll the content within the page size (955x600). I use Firefox for myself (and it looks great) but the person I'm doing the site for uses Safari. When he sees it, needless to say, it isn't going to look right. All it's displaying is the code for the iframe page as if I'm viewing the source for the page (within the iframe on the main page). Have they fixed the problem with iframes in Safari? And if so, what do I need to make it work in both browsers? Or is there another design tactic I can use instead of iframes?
    Any help or suggestions are very appreciated.
    Thanks!
    Mac mini   Mac OS X (10.4.5)  

    I actually found my error. It wasn't code within the file but I had saved it as a .php file (based on a file I found at another website that used it for their iframe) and when I changed it to .html it worked! But thanks, again, for your advice because it caused me to research iframes and I found they were all using .html/.htm files to call on.

  • Preview in IE explorer shows only code and not page

    Hello, whenever I try to preview my page in IE I am unable to view it. All I see is the HTML code. I am using Dreamweaver CS 5.
    Any help would be much appreciated

    Can you provide a link to this page?

  • File Browser showing only folders?

    I'm very new to Motion 3 (Leopard), so hopefully this is a simple question. Looking at the "File Browser Stack" at the bottom of the file browser, all I see is folders, never any other filetype. How come? I've tried both list and icon mode. Am I crazy? Missing something. I definitely tried looking in the manual.
    Thanks for any help you can give.

    Did you try opening the folders?

  • DreamweaverCS3 template(two column liquid) views fine in firefox but in IExplorer I don't get the design only code?  How do I fix this?

    Dreamweaver CS3 template two column liquid views fine in firefox but in Iexplorer I don't get the design only code? How do I fix this?

    random guess- what file extension have you saved the file with.
    second random guess- there may be an unclosed html comment
    third- what do you mean by "I don't get the design only code"
    Do you mean the browser shows the code, or the browser shows nothing, or ???
    for a better reply, please provide a link to the uploaded page please.

  • Auto-index only shows 9 values instead of 91

    I'm pretty new to LabVIEW and am trying to show a cluster of 91 values pulled from a text file.  Just for a test run without using actual values passed, I created a text file with the numbers ranging from 1-91 (1 number per line up to 91).  When I let it auto index and try to unbundle it after transforming it from an array to a cluster, it only shows 9 values instead of 91.  Do you happen to know how I can overcome this issue?
    I have attached the basic files.
    Solved!
    Go to Solution.
    Attachments:
    For Loop Problem.vi ‏7 KB
    SMA.txt ‏1 KB

    STigmata08 wrote:
    Thank you very much, I had no idea that you could select a cluster size from the transformation.  I am converting it to a cluster because I thought that it would be the best form to insert the data into different parts of a word template.  I am trying to build an auto reporting tool for a test sequence.
    You need to set thee cluster size, because clusters are static structures and the size needs to be known at compile time. This also makes them useless for your problem.
    To extract all lines from a file, you could use Spreadsheed string to array with a 1D string array as type and linefeet as delimiter. No need for FOR loops and complicated code. Also your sequence structure has no purpose because execution order is fully determined by dataflow anyway. Why is it there? Don't clutter the diagram with useless constructs!
    Here's what you could do. You can get any element, array subsets, etc. using array tools. These are scalable and you don't need to know beforehand how many line are in the file.
    Here's a quick draft (LV8.6)... 
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    For Loop ProblemMOD.vi ‏8 KB
    ArrayNoCluster.PNG ‏9 KB

  • I created a signature ID and customized the signature; however, when I go to sign it only shows the name layout or graphic image? How do I go back to using the certificate?

    Dear Forum
    I was using Adobe version XI and the signature feature disappeared from the menu. Now I downloaded Acrobat Reader DC. Using the menu and instructions I created a signature ID and customized the signature; however, when I go to sign a document it only shows the name layout or graphic image? How do I go back to using the certificate that I created?
    Any help would be greatly appreciated.
    Regards
    Carlos

    Firefox works fine on Windows 2000 SP4 for me.
    Any chance you have a dial-up connection that uses a web accelerator to speed the loading of content?

  • I had to restore my iPhone 4s and now my recent calls show only phone numbers instead of the contact's name.  How can I restore the names to my recent calls list?

    I had to restore my iPhone 4s and now my recent calls show only phone numbers instead of the contact's name.  How can I restore the names to my recent calls list?

    Are the contact details in your contacts app, the phone app uses the contact app to put names against telephone numbers.

Maybe you are looking for

  • Error while adding a second template to the same data definition

    Hi, I am quite new to XML Publisher. I am developing a report using XML Publisher. I have added one template to the Data Definition. When I tried to add another Template(with different name as previous, to the same concurrent program and application)

  • GETTING ERROR RELATED TO TASK LIST IN ORDER CREATION USING BAPI_ALM_ORDER_M

    hi all , I am using bapi_alm_order_maintain  to create a new work order . i am passing  task list group and task list counter in IT_TASK_list tables . on execution it is showing an error message "  PLEASE PROVIDE THE MANDATORY TASK LIST DURING WORK O

  • Importing FrameMaker Projects in RoboHelp

    Hi, I currently have FrameMaker 6.0 and a trial version of RoboHelp HTML 8.  I want to import FrameMaker files (.fm and .book) but get the error message "This operation cannot be completed without FrameMaker. Please instrall FrameMaker and try again"

  • Validating XML via XSD

    Dear Experts, I have this code which validates my xml to xsd: SchemaFactory factory = SchemaFactory.newInstance(XML_SCHEMA_LANG); Schema schema = factory.newSchema(new StreamSource("" + this.getClass().getResource(xsd))); System.out.println("Validati

  • Message Filters - Gmail Spam arriving in message inbox despite filters being applied on BB

    Hi I have just bought an 8520 and most things are going well apart from message filters.  I have a number of email addresses logged as Spam in my Gmail account., and some of them are clearly not arriving in my BB message inbox which is good. However