Images not showing up!! Running late... what else is new...

I am using CS4 on a Mac
I made a simple page with two images. Neither shows up when I upload the files.
I have a site:
     KathrynCecelia.com
A folder for the site
     kathryncecelia
Inside that folder is a another folder
     images
Inside that folder is the index.html page
It shows up fine in DW. I test and it says no errors.
Issue:
     No images show up on the internet's published version. And now it would seem I've screwed around so much I get an error page for even my main page. <sigh> I am also attaching screen shots of when I try to upload. I get errors when trying to post the images.
Code for page follows.
<!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" />
<title>Welcome to Kathryn Cecelia's Website</title>
<style type="text/css">
<!--
body,td,th {
font-family: Verdana, Geneva, sans-serif;
font-size: 14px;
color: #FFF;
body {
background-color: #000;
font-family: Verdana, Geneva, sans-serif;
font-size: 14px;
font-style: normal;
font-weight: normal;
color: #FFF;
width: 1250px;
left: 20px;
right: 20px;
position: relative;
a:link {
color: #C00;
a:visited {
color: #FFC;
.emphasis_by_size {
font-size: 16px;
font-style: italic;
font-weight: normal;
font-variant: small-caps;
-->
</style></head>
<body bgcolor="#000000" text="#FFFFFF" link="#CC0000">
<p><img src="kathryncecelia/Images/kcw_title.png" alt="Kathryn Cecelia Whitacre" width="586" height="162" hspace="100" />
</p>
<p> </p>
<p> </p>
<p>My website is not built yet, but I'm working on it. For the time being I'd like to hit a few points so that you know you're at the right place.</p>
<p>I am participating in the Art in the WorkPlace event for the City of Tacoma. I will be holding classes in my studio for a limited number of participants. These classes have a small materials fee attached to them that needs to be paid in cash of the correct denominations.</p>
<p>My studio is the back of our home in the basement area. To attend you must <span class="emphasis_by_size">use the alley entrance</span> so parking is closer on North Warner between N. 29 and 30th. RSVP to: 253.307.2602 or by email to: <a href="mailto:[email protected]">[email protected]</a></p>
<p>November 1:   2-4pm RSVP required           $5 cash limited  to 6</p>
<p> <span class="emphasis_by_size">Introduction to Beginning Bookbinding </span><br />
  You will fold pages to make a single signature soft cover book. There will be examples of many types of bookbinding and if time and skill allow we may make an additional item. I will provide all the tools, but if you have an exacto with a #11 blade, a large needle to sew with, any fabric you'd like to use for the cover, such as holiday prints or something special; a quote or text that you'd like in your book. I have many quote books, so don't worry about finding something before you come, if you don't have anything. The book can also be left blank.</p>
<p>November 21:<span class="emphasis_by_size"> Open Studio</span> 2-4 pm light refreshments<br />
  Visit my studio to see the range of work I do... from lettering arts; beading and jewelry to sandblasting and fused glass. I'd love to talk with you about a project you'd like my help with.</p>
<p>November 22: Two Different Classes<br />
  1-3 pm<span class="emphasis_by_size"> Kelitc Knots</span>: learn how to make a keltic knot, this will be the basics unless there's time for more. No Fee.<br />
  3-5 pm<span class="emphasis_by_size"> Blind Embossing</span>: learn how to make your own templates and create beautiful designs on your paper projects. Fee: $2 per stencil &amp; 1 pc hot press paper</p>
<p>I look forward to meeting you. My studio is <span class="emphasis_by_size">A2Z</span>, because I work in a wide range of mediums... from Aluminum oxide in sandblasting to Zaffre a colorant used in blue enamel. However, when I came up with the name I had in mind two parts A... action and ability with one part zen.</p>
<p> </p>
<p><img src="kathryncecelia/Images/tenshoblkbkgrnd.png" alt="Neuvo Monogram of initials KCW" width="90" height="141" hspace="450" /></p>
</body>
</html>

When I go to the URL you posted, everything looks fine in IE6 and FF3.5 on Win.
I see both of these images as expected.
http://kathryncecelia.com/images/kcw_title.png
http://kathryncecelia.com/images/tenshoblkbkgrnd.png
Try refreshing your browser.
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
www.alt-web.com/
www.twitter.com/altweb
www.alt-web.blogspot.com

Similar Messages

  • BLOB image not shows in JSP page!!

    Hi Dear all,
    I had tried to configure how to show BLOB image to jsp page . The code are works fine and servlet works ok but image can not show only. can you help me that what need to be added. Please help me.
    Can any experts help me? BLOB image not shows in JSP page. I am using ADF11g/DB 10gR2.
    My as Code follows:
    _1. Servlet Config_
        <servlet>
            <servlet-name>images</servlet-name>
            <servlet-class>his.model.ClsImage</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>images</servlet-name>
            <url-pattern>/render_images</url-pattern>
        </servlet-mapping>
      3. class code
    package his.model;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Iterator;
    import java.util.Map;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import oracle.jbo.ApplicationModule;
    import oracle.jbo.Row;
    import oracle.jbo.ViewObject;
    import oracle.jbo.client.Configuration;
    import oracle.jbo.domain.BlobDomain;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    public class ClsImage extends HttpServlet
      //private static final Log LOG = LogFactory.getLog(ImageServlet.class);
      private static final Log LOG = LogFactory.getLog(ClsImage.class);
      public void init(ServletConfig config)
        throws ServletException
        super.init(config);
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response)
        throws ServletException, IOException
        System.out.println("GET---From servlet============= !!!");
        String appModuleName = "his.model.ModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleName");
        String appModuleConfig = "TempModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleConfig");
        String voQuery ="select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = 'P1000000000006'" ;// 'P1000000000006' this.getServletConfig().getInitParameter("ImageViewObjectQuery");
        String mimeType = "jpg";//this.getServletConfig().getInitParameter("gif");
        //?IMAGE_NO='P1000000000006'
        //TODO: throw exception if mandatory parameter not set
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName, appModuleConfig);
          ViewObject vo =  am.createViewObjectFromQueryStmt("TempView2", voQuery);
        Map paramMap = request.getParameterMap();
        Iterator paramValues = paramMap.values().iterator();
        int i=0;
        while (paramValues.hasNext())
          // Only one value for a parameter is expected.
          // TODO: If more then 1 parameter is supplied make sure the value is bound to the right bind  
          // variable in the query! Maybe use named variables instead.
          String[] paramValue = (String[])paramValues.next();
          vo.setWhereClauseParam(i, paramValue[0]);
          i++;
       System.out.println("before run============= !!!");
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        System.out.println("after run============= !!!");
        Row product = vo.first();
        //System.out.println("============"+(BlobDomain)product.getAttribute(0));
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null)
          System.out.println("onside product============= !!!");
           // We assume the Blob to be the first a field
           image = (BlobDomain) product.getAttribute(0);
           //System.out.println("onside  run product============= !!!"+image.toString() +"======="+image );
           // Check if there are more fields returned. If so, the second one
           // is considered to hold the mime type
           if ( product.getAttributeCount()> 1 )
              mimeType = (String)product.getAttribute(1);       
        else
          //LOG.warn("No row found to get image from !!!");
          LOG.warn("No row found to get image from !!!");
          return;
        System.out.println("Set Image============= !!!");
        // Set the content-type. Only images are taken into account
        response.setContentType("image/"+ mimeType+ "; charset=windows-1252");
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[4096];
        int nread;
        while ((nread = is.read(buffer)) != -1)
          os.write(buffer, 0, nread);
          //System.out.println("Set Image============= loop!!!"+(is.read(buffer)));
        os.close();
        // Remove the temporary viewobject
        vo.remove();
        // Release the appModule
        Configuration.releaseRootApplicationModule(am, false);
    } 3 . Jsp Tag
    <af:image source="/render_images" shortDesc="Item"/>  Thanks.
    zakir
    ====
    Edited by: Zakir Hossain on Apr 23, 2009 11:19 AM

    Hi here is solution,
    later I will put a project for this solution, right now I am really busy with ADF implementation.
    core changes is to solve my problem:
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        }All code as below:
    Servlet Code*
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response) throws ServletException,
                                                             IOException {
        String appModuleName =
          "his.model.ModuleAssetMgt";
        String appModuleConfig =
          "TempModuleAssetMgt";
      String imgno = request.getParameter("imgno");
        if (imgno == null || imgno.equals(""))
          return;
        String voQuery =
          "select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = '" + imgno + "'";
        String mimeType = "gif";
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName,
                                                    appModuleConfig);
        am.clearVOCaches("TempView2", true);
        ViewObject vo = null;
        String s;
          vo = am.createViewObjectFromQueryStmt("TempView2", voQuery);
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        Row product = vo.first();
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null) {
          // We assume the Blob to be the first a field
          image = (BlobDomain)product.getAttribute(0);
          // Check if there are more fields returned. If so, the second one
          // is considered to hold the mime type
          if (product.getAttributeCount() > 1) {
            mimeType = (String)product.getAttribute(1);
        } else {
          LOG.warn("No row found to get image from !!!");
          return;
        // Set the content-type. Only images are taken into account
        response.setContentType("image/" + mimeType);
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        is.close();
        os.close();
        // Release the appModule
    Configuration.releaseRootApplicationModule(am, true);
    }Jsp Tag
    <h:graphicImage url="/render_images?imgno=#{bindings.ImageNo.inputValue}"
                                                        height="168" width="224"/>

  • Images not showing up to upload (lightroom5)

    I just installed lightroom 5 onto my new laptop, I was half way through editing a shoot on my old laptop but it is having issues and running supper slow so i transfered the unedited and edited jpg images to my new laptop and saved them in a folder called "pics" in that folder is the "untitled export" folder of edited images that I had done on my old laptop. when I go into lightroom and click add folder I went to the "pics" folder and the only thing in there is the "untitled export" file of edited images the unedited images are not showing up at all. what am I doing wrong?

    when I go into lightroom and click add folder I went to the "pics" folder and the only thing in there is the "untitled export" file of edited images the unedited images are not showing up at all. what am I doing wrong?
    Click "Add folder"? Does this mean clicking on the + sign in the Folder Panel and then selecting "Add folder" from the dropdown menu? Or does this mean something else?
    If so, that's not the way to get the photos into Lightroom. You must use Import.

  • Another Images not Showing up thread

    I know there are multiple threads out there about images not showing up on the login page of application express, and I have browsed most of them without success.
    My images folder is in:
    C:\oracle\product\10.1.0\db_1\Apache\Apache\images\
    My dads.conf file has specified:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images\"
    Address of missing image in I.E. is:
    http://<host>:7777/i/htmldb/apex_logo.gif
    When I ran @apexins I specified /i/ for the virtual images directory.
    I am running Oracle Database 10gR2, with Oracle HTTP Server that came with the Oracle Database 10g Companion CD Release 2.
    I am using APEX 3.2.
    When I try to go to
    http://<host>:7777/i/
    I get:
    You don't have permission to access /i/ on this server.
    I also cannot login to APEX. When I type my username/password and click the Login button, it does nothing (nothing loads, nothing changes... nothing happens). I don't know if this is related?
    Thank you,
    ~Tom

    I found the problem -
    In my dads.conf file I had:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images\"
    When I really needed:
    Alias /i/ "C:\oracle\product\10.1.0\db_1\Apache\Apache\images/"
    Note the end slash after images changed from backslash to forward.
    Silly me.

  • Images not showing in the jlabel/jbutton

    Hello all,
    I've a package in which my cards directory is located along with all my src files and compiled classes. All my images ****.gif files are inside this directory.
    Then I've following the icon object.
    protected static JLabel lblDeck;The following code is used to get the image.
      String imgPath;
         imgPath = isImageExists("imgBG1.gif");
              if (imgPath == "")
              {     // If the image of Card Deck(imgDeck) is not Found
                   lblDeck = new JLabel();
                   lblDeck.setBackground(new Color(0, 64, 128));
                   lblDeck.setOpaque(true);
                   flagImgDeckFound = false;
              } else {
                   // If the image of Card Deck is Found
                   imgDeck     = new ImageIcon(imgPath);
                   lblDeck = new JLabel(imgDeck);
    // Check if the image exists else return "";
      protected String isImageExists(String imgName) {
              java.net.URL imgURL = getClass().getResource("cards/" + imgName);
             if (imgURL != null)
             {     return (imgURL.toString());     }
             else
                  JOptionPane.showMessageDialog(null, "File not Found: " + imgURL);
                  return "";
         }I'm still unable to get the image in the jlabel!
    When i checked the path, it is exactly returning the path of the file.
    But its neither loading the image into the jlabel nor is it returning "".
    This is just the label part i've other jbuttons also. Even they are not displaying any images.

    aLkeshP wrote:
    can everyone see this thread?
    YES FER-CHRISE-SAKE.
    Just how many times do you intend posting the same identical question?
    images not showing in the jlabel/jbutton
    Problem in imageicon
    iconImage on JButton & JLabel
    Re: images not showing in the jlabel/jbutton

  • Likely bug with external editing (in CS5 not CS6 beta) and edited image not showing back up in LR

    I have come across something strange today that I've not seen before. I'm running LR 4.0 under Win7 64-bit. I usually use Photoshop CS6 beta as my external editor, but invoke CS5 when I have to use some tools that don't support the beta. Here is the scenario:
    * I have CS5 open
    * I externally edit an image in CS5 and Save it from CS5 when I'm done
    * The edited image does not show up in LR
    * I close LR and reopen it
    * There is the edited image!
    I have duplicated this many times this evening. I don't think I've seen it when I've used CS6 beta.

    Something strange is going on because I had the behavior reported of edited image not showing up after using another filter, Nik Silver Efex Pro 2.

  • Crystal Report Images Not Showing - JSP inside /WEB-INF folder

    Hi Experts,
    I am using Crystal report for Eclipse and also using Struts2 and tiles framework combination.
    The problem is when viewing the report all I've got is red X on all images and the graph image also not showing. This is when I use tiles and my jsp is inside the web-inf folder.
    This is my struts link: href="s:url value='/report/reportOpen.action?report=1'
    I've checked that the path to the viewer generated HTML is not correct. see code below.
    src="../../../crystalreportviewers/js/crviewerinclude.js"
    But when I test to access a simple jsp viewer that resides on the web root folder, this works fine but of course this is not what I want to have. I need to have my banner and menus on top of the report page (using tiles)
    This is my jsp link: href="s:url value='/ReportViewer.jsp?report=1'
    Viewer generated HTML below.
    src="crystalreportviewers/js/crviewerinclude.js"
    This might be a common problem and that you can share to me your solution.
    Note: I removed the script tags because I can't submit this entry.
    Thank you  in advance,
    Regards,
    Rulix Batistil
    Crystal Report Images Not Showing - JSP inside /WEB-INF folder

    Hi Saravana,
    After a few experimentation from your idea i was able to figure out the problem and now it is working.
    I don't have to copy the folder to where my jsp resides but still maintains it in the root location:  web/crystalreportviewers
    The changes should always be in web.xml.
    1st: change the crystal_image_uri value to ../crystalreportviewers
    2nd: change crystal_image_use_relative value to "web"
    Change to "web" instead of webapp because that is what I named my web root folder.
    <context-param>
              <param-name>crystal_image_uri</param-name>
              <param-value>../crystalreportviewers</param-value>
         </context-param>
         <context-param>
              <param-name>crystal_image_use_relative</param-name>
              <param-value>web</param-value>
         </context-param>
    Thank you. You showed me the way on how to solve the 3 day problem.
    BTW, my next problem is when clicking on any buttons prev/next/print/export, I got this error HTTP Status 404.
    Well, at least for now I can view my initial report.  I just need to figure out the next issue and with the help of the great people here in the forum.
    Thanks a lot.
    Regards,
    Rulix
    Edited by: Rulix Batistil on Nov 26, 2008 7:27 AM

  • Images not showing up...

    Hi, I think i've missed something really simple here, but i'm too tired to see it. AND IT HAS TO BE DONE!
    can anyone take a look at my code and tell me what i'm doing wrong. The buttons are showing up and the threads work but no images. why?
    import java.awt.*;
    import java.applet.Applet;
    import java.awt.event.*;
    import java.applet.AudioClip;
    public class BotDance extends Applet implements ActionListener {
    JimmyPanel jimmy = new JimmyPanel();
    Button walkButton = new Button("Jimmy Walk");
    Button danceButton = new Button("Dance Jimmy");
    public BotDance() {
    setSize(450,350);
    Panel pane = new Panel();
    BorderLayout border = new BorderLayout();
    pane.setLayout(border);
    pane.add(jimmy, "Center");//adding images to pane
    pane.setBackground(Color.black);
    Panel buttonPanel = new Panel();
    walkButton.addActionListener(this);
    buttonPanel.add(walkButton);
    danceButton.addActionListener(this);
    danceButton.setEnabled(false);
    buttonPanel.add(danceButton);
    pane.add(buttonPanel, "South");//adding buttons to pane
    this.add(pane);
    this.setVisible(true);
    public void actionPerformed(ActionEvent ae) {
    if(ae.getActionCommand() == "Jimmy Walk"){
    jimmy.startAnimation();
    jimmy.setpace = true;
    walkButton.setEnabled(false);
    danceButton.setEnabled(true);
    else if(ae.getActionCommand() == "Dance Jimmy") {
    jimmy.setpace = false;
    jimmy.startAnimation();
    walkButton.setEnabled(true);
    danceButton.setEnabled(false);
    class JimmyPanel extends Panel implements Runnable {
    private Thread runner;
    Image walk[] = new Image[9];
    Image dance[] = new Image[10];
    int current=0;
    boolean setpace = false;
    JimmyPanel() {
    super();
    Toolkit kit = Toolkit.getDefaultToolkit();
    for (int i =0; i <walk.length; i++) {
    walk[i] = kit.getImage("jimmy" + i + ".gif");
    for(int i =0; i < dance.length; i++) {
    dance[i] = kit.getImage("dance" + i + ".gif");
    void startAnimation() {
    if(runner == null) {
    runner = new Thread(this);
    runner.start();
    void stopAnimation() {
    if(runner == null) {
    runner = null;
    public void run() {
    Thread thisThread = Thread.currentThread();
    while(runner == thisThread) {
    if(setpace == true) {
    walkpic();
    repaint();
    } else
    dancepic();
    repaint();
    try {
    Thread.sleep(150);
    } catch (InterruptedException ie) {}
    public void paint(Graphics g) {
    super.paint(g);
    if(setpace == true) {
    g.drawImage(walk[current],90,50,this);
    } else {
    g.drawImage(dance[current],90,50,this);
    public void walkpic() {
    if(++current == walk.length)
    current =1;
    repaint();
    public void dancepic() {
    if(++current == dance.length)
    current =1;
    repaint();

    I'm not sure about this, but is toolkit.getImage() for applets?
    You can use the getImage() method of the Applet class itself and have a look...

  • Alias icons in disk images - not showing correctly

    Hi,
    I already posted about this problem on Macworld Forums, so far no answers. Maybe here I'll get some.
    The problem is:
    whenever I download an app from the Internet, it mostly comes as a disk image. And it's OK if the DMG file contains only app and "read me" file. But more often it contains the alias to /Applications folder.
    That's the problem:
    the icon for that alias does not show properly, it always generates some icon with another icon above it. Issuing "Get Info" (Cmd-I) command, and tabbing to the icon, then deleting that annoying icon, restoring to the default one, does not work.
    Any ideas what should I do?
    Thank you.
    iMac SE Graphite   Mac OS X (10.3.9)  

    Hi Sanjin
    So it is more than only disk images but a system wide problem, in that case, a general approach is needed.
    I suggest you run Repair Disk on your start up drive, from your install DVD.
    The startup drive can only be repaired from another drive. Simply loading the install disk is not sufficient. You have to boot from the install disk.
    To do this: Insert the Install Disk 1 into the drive and then select Restart, then continue to hold down the C key until the Apple logo appears.
    This will take you to the installation software, but you do not want to install.
    Select your language, then go up to the top menu bar to Utilities and navigate to the Disk Utilities application.
    Select the start up drive, then follow the instructions in the First Aid pane where you can click on Repair Disk.
    If it finds errors, repeat the process until it reports no errors.
    After these repairs, quit the application, and restart normally.
    Once restarted normally run Repair Permissions. from the Disk Utility application found on your hard drive in Application/Utilities.
    regards roam

  • Thumbnail images not showing up in my Spry slideshow

    Hello - Everything seems to be working in my Spry slideshow. However, my thumbnail images are not showing up in Live view or browser. The images are all in the correct folder. Here is what the script looks like:
    <ul id="ImageSlideShow" title="Our Products">
            <li><a href="images/ss_penny.jpg" title="All Things Pennies"><img src="images/ss_penny_thumb.jpg" alt="" /></a></li>
            <li><a href="images/ss_rides.jpg" title="Children's Kiosks"><img src="images/ss_rides_thumb.jpg" alt="" /></a></li>
            <li><a href="images/ss_ireality.jpg" title="Simulators"><img src="images/ss_ireality_thumb.jpg" alt="" /></a></li>
            <li><a href="images/ss_carousels.jpg" title="Carousels"><img src="images/ss_carousels_thumb.jpg" alt="" /></a></li>
            <li><a href="images/ss_candy.jpg" title="Candy Kiosks"><img src="images/ss_candy_thumb.jpg" alt="" /></a></li>
         </ul>
          <script type="text/javascript">
    Is there something I'm missing?
    Thank you

    There is nothing wrong with the markup that you have shown, hence the problem will be located somwhere else.
    Gramps

  • Edited images not showing up in iphoto

    when I edit images in photoshop elements and save them they do not show up in iphoto. I am saving them as tiffs.

    I am saving them as tiffs.
    But what were they?
    If there is a format change - from jpeg to tiff, from Raw to something else - then you need to save the files to the desktop first and then import them as new files.
    Regards
    TD

  • Image not showing up in HTML page

    I am running tomcat and in WEB-INF I have a simple HTML page that has is trying to show an image, but it doesn't show up.
    Under WEB-INF I have:
    mypage.html
    images/logo.png
    <html>
    <head>
    <link REL="SHORTCUT ICON" HREF="images/logo.png">
    </head>
    <body>
        <img src="images/logo.png">Hello World!
    </body>
    </html>The image does not show up when I try and view it from tomcat (i.e. http://localhost:8080/mypage.html)
    But it does show up if I just open up the HTML file with IE or Firefox.
    Any ideas what I am missing?

    The page is invoked via a Servlet Filter. So I have mapped in my web.xml:
    <error-page>
    <error-code>401</error-code>
    <location>foo.html</location>
    </error-page>
    In my servlet filter I have something like:
    HttpServletResponse response = (HttpServletResponse) resp;
    response.sendError(HttpServletResponse.SC_UNAUTHORIZED);..i have to check tomorrow when i am with the server again to see what the direct URL is to the image. Theoretically I'd assume:
    http://localhost/myapp/images/logo.png
    have to double check though

  • Linked images not showing

    Hi,
    We're running Illustrator CS4 across a suite of 12 Macs on OS X 10.6.8.  Over the last couple of weeks, several accounts have been hit with the same problem, that linking an image in an Illustrator document will not show the images, but just a bounding box.  The link information is correct, but I've found no way of getting the image to show, aside from embedding it.  Furthermore, saving a document in this state will cause Illustrator to crash when trying to reopen the document.
    We use network accounts for the Macs, so all installs are local on each machine, but users access their profile directly from our server.  Therefore, all links reference a location on our network and not the local drive.  However, there does not seem to be anything wrong with the installs as the issue is with accounts and not the individual client.  Once the issue occurs for a user, it occurs on any Mac they log into, while unaffected users can use any Mac without issue.
    Our network has run in this state for a year now and the problem has only surfaced recently.  I've tried clearing user's preference files relating to Illustrator, but this has had no effect.  It's also random when creating a new user on the network, as some will have the issue and others not, despite all being created with the same set of default preferences.
    If anyone has come across anything similar, or has any idea of what to look at with this, I'd be very grateful for some help. 
    Thanks,
    Simon

    Hi Steve,
    Thanks for the response.  First of all, you'll have to excuse me if I get a few points wrong, as I'm not too familiar with Illustrator.  However, in answer to your questions;
    The layers panel is showing "<Linked File>" next to an empty white box.
    Turning off preview does show the boxes you describe.
    I've no idea how to go about checking if an image is beyond the mask bounds.  However, I've used the same image for testing across accounts and it displays fine on those that aren't having this issue.
    Also, in the top left corner of Illustrator, the name os the linked image does display and the options available when clicking that do seem correct and working.  Relinking from there does nothing, but I can open the image for editing etc.  None of this helps in getting the image to display though.
    As for the server side, we have always used a Mac server at the same version as the clients. 
    Thanks,
    Simon

  • Certain image not showing in email

    This issue happened using Firefox 14.0.1 in Windows7
    I have an email that loads several images from a specific website.
    All the images load except the company's logo. At first I thought it might be yahoo mail issue. However I tried opening same email in hotmail, it does not show up as well.
    I've tried all the solutions that firefox provided ( deleting cache, check media blocked, exceptions etc ) and it still not working. I've even re-installed Firefox.
    This problem only appeared on Windows7. I've the same version of Firefox in Mac and it's showing the logo.

    '''Try the Firefox SafeMode''' to see how it works there. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    * You can open the Firefox 4.0+ SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    '''''If it is good in the Firefox SafeMode''''', your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes
    ''When you figure out what is causing that, please let us know. It might help other user's who have that problem.''

  • Image not showing for podcast

    Hello, I can't seem to get my image to show in my podcast. Everything else checks out OK. prettygoodgig uses Wordpress and feedburner. The image shows on the feedburner site. It has been about 3 weeks and still does not show in itunes.
    I have tried changing the name and location of the image but have had no luck.
    Here is the xml code for the podcast up to the first episode:
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?>
    <?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?>
    <rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
    <channel>
    <title>pretty good gig podcast</title>
    <link>http://prettygoodgig.com/wordpress</link>
    <description>Interviews and conversations with musical people.</description>
    <lastBuildDate>Tue, 25 May 2010 14:10:11 +0000</lastBuildDate>
    <generator>http://wordpress.org/?v=2.9.2</generator>
    <language>en</language>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/prettygoodgig/idai" />
    <feedburner:info uri="prettygoodgig/idai" />
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" />
    <media:copyright>copyright 2010</media:copyright>
    <media:thumbnail url="http://prettygoodgig.com/images/ituneslogo.jpg" />
    <media:keywords>musicians,singer,songwriter,recording,music,marketing,music,care er,performing,gigs</media:keywords>
    <media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Music</media:category>
    <itunes:owner>
    <itunes:email>[email protected]</itunes:email>
    <itunes:name>Bill Kahler</itunes:name>
    </itunes:owner>
    <itunes:author>Bill Kahler</itunes:author>
    <itunes:explicit>no</itunes:explicit>
    <itunes:image href="http://prettygoodgig.com/images/ituneslogo.jpg" />
    <itunes:keywords>musicians,singer,songwriter,recording,music,marketing,music,car eer,performing,gigs</itunes:keywords>
    <itunes:subtitle>Conversations and interviews with musical people</itunes:subtitle>
    <itunes:summary>This is a podcast where we talk to musicians about their experiences and share stories and advice, etc. We will also be talking to engineers about the recording process, production, gear etc. Other potential podcasts will feature subjects like teaching, buying a guitar, theory, inspiration etc.</itunes:summary>
    <itunes:category text="Music" />
    Thanks,
    billkahler
    prettygoodgig.com

    iTunes is not using the Feedburner-generated feed (which appears to be what you quoted: I can't examine the original because you haven't quoted the URL): it is using the Wordpress-generated feed which presumably you also submitted to Feedburner. This feed does not contain an 'itunes:image' tag, which is why there is no image in the Store.
    No amount of messing about with the Feedburner feed xml is going to affect the Store. You need to either a) add the appropriate tags to the Wordpress feed at the URL quoted above, or b) put a redirecting tag into that feed so that iTunes will transfer its attention from that to the Feedburner feed - the method is described here:
    http://www.apple.com/itunes/podcasts/specs.html#changing
    Be extremely careful if you choose option 'b': if you make an error in the URL for the feed you are redirecting to you will *not be able to get iTunes back to the correct feed*; and once you are using Feedburner's feed you will not be able to get at it to redirect away from it should you ever wish to do so in future. You should also make absolutely sure that the Feedburner feed is OK - check it at
    http://www.feedvalidator.org

  • Bkacground/CSS images not showing

    Since earlier this month I have been having problems with DW.
    I'm sure it's something I did since I'm sort of new to this but
    here it goes. I'm using DW MX by the way.
    I run a small diecast site and DW has always been my editing
    program and its worked fine until now. My site uses CSS and usually
    DW would load all the necessary image files like the menus,
    background images and icons, etc. My actual diecast photos and a
    few of the menu buttons are hosted at Imageshack and most of them
    display correctly in DW, but everything thats on the server hosted
    by Byethost doesn't show. It also doesn't correctly display the
    layout of the CSS I chose, but rather it looks like a plain
    unorganized page. I thought the problem might have been that DW
    doesn't actually display the images from the server, but rather
    from the local disk instead. The local folder these files were in
    might have been moved to somewhere else on th disk? I have tried
    everything I could think of but nothing has worked. Any help is
    very much appreciated!
    Justin

    > DW won't display any content that is not available
    locally.
    Sure will - it handles images, css, js, and applets with
    external links.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Nick Barling" <[email protected]> wrote in
    message
    news:[email protected]...
    > This sounds like a file/folder management problem. DW
    won't display any
    > content that is not available locally. To see content
    that is only
    > available
    > at the server you need to view your page from within a
    browser.
    >
    > If you have content stored locally and it is not visible
    then you need to
    > check the file path to each piece of content that is not
    showing. Check
    > that
    > you are using document - relative links and not root
    relative links.
    > Check the
    > location and content of your local folders; they should
    not have moved on
    > your
    > local disk unless you moved them. As it is unlikely that
    you moved the
    > file
    > locations without knowing it I suspect the problem is
    one of relative
    > paths.
    >
    > Look at your local file structure in the DW site local
    view and then check
    > your remote view file structure, you may find the
    problem there.
    >
    > The CSS style sheet, which I assume is an external style
    sheet attached
    > the
    > your html page will only be visible locally if you have
    linked it
    > correctly to
    > the html page it is styling. View the page locally and
    check that the CSS
    > style sheet is linked/referenced corectly in the file
    structure. If your
    > page
    > shows CSS styling when viewed locally but does not show
    remotely, ie when
    > viewed in a browser via the url address with the page
    served from the
    > server,
    > then check that you have uploaded the CSS style sheet to
    the correct
    > location.
    >

Maybe you are looking for