Trouble with HTML snippet

An HTML snippet does not work once published to a website although it does work in the "view published site" option. Error message "Not Found URL requested". I use iWeb for my website and Firezilla to publish to www. Any solutions please?

This could be caused by the file in question not being uploaded to the server or an error in the URL.
You need to use your FTP app to have a look at the files on the server to see if the appropriate one is actually there and in the correct place.

Similar Messages

  • Having trouble with html snippets and movies in iweb 09

    Hi I have built a site iweb2.0.4 and recently moved it onto my new machine with iweb 09 on. Basically I have been putting in videos that I have exported for web out of Quicktime. In the past I have simply added an html snippet code like this in <iframe src="http://evileducation.org/stammuraifinalcomp/ReadMe.html" style="width: 340px; height: 285px"; scrolling="no" controller="true" frameborder="0"></iframe>
    I edit the ReadMe.html based on a tutorial I saw and it loads the movie after pressing the "Click to play" button. Now in 09 when I put the code in to the snippet it just shows a Quicktime symbol with a question mark. if you check the link below you can see the videos with the best I have managed to do so far which is get the new movies on but they both autoplay (I have linked in this instance to the 4kb .mov in each folder rather than the readme.html.). I don't want to just drag a video in I would like the options to view on phone or on computer etc and not for them to autoplay. Is there a new/ different way to do this now. Surely it shouldn't be this hard to get the export for web in Quicktime and iWeb to work together? The frustrating thing is if you check the link below the old movies work fine still it's just the 2 new ones. Soz for the long one!
    http://evileducation.org/eviltwin_education_2010/movies_made_by_youngpeople.html

    Less cryptic :
    MAKE THE TWO MOVIES THE SAME AS THE OTHER EIGHT.
    Here are some pages for your convenience you can study and nim :
    http://www.wyodor.net/iFrame/
    http://www.wyodor.net/MoreEmbed/
    [Using the iWeb HTML Snippet|http://www.wyodor.net/blog/archives/2009/07/entry_213.html]
    http://www.apple.com/quicktime/pro/tutorials.html
    You may have to learn HTML/CSS/JavaScript.
    for the young people with disabilities that made
    Keep the emotions out of the equation.

  • Zoomify embedding with HTML Snippet?

    Can you use Zoomify with HTML Snippet in iWeb '08? I can't seem to make it work.

    I have placed a Zoomify an my site and there i explaned how to do this
    1.If you are ready in Photoshop and have exported the file you’ll find a web-page with the name filename.html and a map that’s called filename_img. Open the HTML page with software like Taco HTML Edit. (Freeware)
    2.Select al the code and copy it.
    3.Go to the web-page in iWeb where you want Zoomify, choose webwidget and paste in the HTML.
    4.Publish your site.
    5.If finished, open your iDisk and open the map with your page name (path iDisk(your name)/web/your site name/your page name)
    6.Copy the map filename_img to the map called as the page name. This can take some time
    Take a look on this page: http://web.mac.com/guy.beckers1/mediainbelgium/Home.html

  • Adding Statcounter code with HTML Snippet

    On an earlier thread, someone posted a message that they could add the Statcounter code using an HTML Snippet. Does anyone know how to do that (and make sure it gets put in the right location)?
    Thanks,

    You can add statcounter using HTML Snippet.
    but if you need statcounter to track different pages then HTML Snippet will give you bad results.
    Because when you add statcounter code or any code for that matter, iweb adds the code to another page aka widget(#)_markup.html and links these pages to you target pages by way of iframe element. (unless iweb'09 does thing differently, but I doubt it)
    example: let say you have twenty pages and add statcounter to each of them, you will see the results point to widget(#)_markup pages and not your page URL.
    You came get away with all that if you know javascript (statcounter code is javascript).
    I've been doing this for years, here is my example: http://home.cyclosaurus.com/Welcome.html
    scroll all the way to the bottom, see that iweb look-a-like hit counter? it's a statcounter!
    So, how are you with javascript?

  • Problem with html snippet

    I have been using iWeb for a long time now, it's been fine up until recently. Everytime I try to add HTML Snippet to my site, it inserts the box on to my webpage, but fails to load in the edit box where you can paste your HTML in.
    How would I rectify this?

    Try the troubleshooting steps under "Fix iWeb" here...
    http://www.iwebformusicians.com/iWeb/iWeb-Tips.html

  • Trouble with html  and Foreca meteo maps

    hey,...
    here is the situation ,...
    i try to display this type of address with "<mx:HTML >"
    http://srv.foreca.com/foreca_com/loader20.swf?lang=FR&mode=world&continent=Europe 
    i have remplaced the "&" by "&#0038;"
    but with no result
    it is possible to display this type  of address,...??
    i supposed "yes "
    but can you tell me how please,...
    thanks in advance,...

    i have remplaced the different special charactere...
    and i have no more error in the debug,...
    but the html page  dont display  the map
    only a "error " message
    "No Content Available"
    My question is
    is it possible to display a foreca weather map ????

  • Trouble with HTML

    Hello,
    I want to write a guestbook - applet for my website.
    The applet contains a JTextPane and supports formatted
    text like italic, bold etc.
    So, when the user clicks some button, I want to update
    a special html-file called guestlog.
    Here I want to insert the formatted text from the Textpane
    directly after the BODY-Tag.
    My problem is that I didn't find out how to do that!
    Is it possible to convert the Text from the textpane to HTML
    and keep its format?
    Codesamples are welcome!
    Thanks in advance,
    Markus

    Ok, here is what I already have (it's not very much!)
    Important is method update().
    My problem is that I just don't know how to insert code
    after the Body-tag.
    The code below creates a new BODY tag at the wrong place
    (inside of <Head>).
    I also tried to iterate through the document and retrieve
    the Position of <Body> what also didn't work.
    (Element.getStartOffset() returnd a value of 3 what I can't
    apply to the HTML-file)
    import javax.swing.text.html.*;
    import javax.swing.text.*;
    import java.net.*;
    import java.io.*;
    import javax.swing.JTextPane;
    import javax.swing.text.html.parser.*;
    public class HTMLUpdator {
    //Document with new text from JTextPane
    HTMLDocument textDoc;
    //Document with existing Text from "guestlog.htm"
    HTMLDocument doc;
    JTextPane textpane;
    URL base;
    HTMLEditorKit kit;
    public HTMLUpdator(URL base) {
    //Place of "guestlog.htm"
    this.base = base;
    public void update(){
    try{
    //Construct a reader to load "guestlog.htm"
    Reader rd = getReader(base.toString());
    //Read guestlog.htm into doc;
    kit.read(rd, doc,0);
    System.out.println("Content of guestlog.htm: " + doc.getText(0,doc.getLength()));
    System.out.println("Content of JTextPane: "+ textDoc.getText(0,textDoc.getLength()));
    //Insert new text from JTextPane into doc
    kit.insertHTML(doc,doc.getStartPosition().getOffset(),
    "<p>" + textDoc.getText(0,textDoc.getLength()) + "</p>", 0,0,HTML.Tag.BODY);
    //Write doc back to disk as "guestlog.htm"
    File f = new File("guestlog.htm");
         try {
              FileOutputStream fstrm = new FileOutputStream(f);
    kit.write(fstrm,doc,0,doc.getLength());
         } catch (IOException io) {System.out.println(io.toString());};
    } catch (Exception e) {
    e.printStackTrace();
    public void setJTextPane(JTextPane in){
    this.textpane = in;
    this.textDoc = (HTMLDocument)in.getDocument();
    this.kit = new HTMLEditorKit();
    this.doc = (HTMLDocument)kit.createDefaultDocument();
    static Reader getReader(String uri) throws IOException {
    if (uri.startsWith("http:")|| uri.startsWith("file:")) {
    // Retrieve from Internet.
         URLConnection conn = new URL(uri).openConnection();
    return new InputStreamReader(conn.getInputStream());
    } else {
    // Retrieve from file.
         return new FileReader(uri);
    The Created HTML-Code looks like follows
    (look at the wrong body tag inside head):
    <html>
    <head>
    <body>
    <p>
    "Text from JTextPane"
    </p>
    </body>
    <title>G�stebuch </title>
    </head>
    <body bgcolor="#000000" text="#FFFFCC" link="#FF9900" alink="#669933" background="_themes/artsy/arttilea.jpg" vlink="#999900">
    </body>
    </html>
    Help is very appreciated!
    Greetings,
    Markus

  • PSE9 - having trouble with "html email sender verification" page

    We have just purchased the PSE9. This is our first venture into a photoshop program. We are wanting to send some of our pictures to friends via email. Just after we push the "share" button, to create an attachment for the email, we get this page "html email sender verification." It contains in the first blank, our email address (given), a button "resend email", and a blank entitled " Sender verification."  Below this box are the words:
    "If this email address is not correct, or you would like to use a different e mail client, you can change your email settings by clicking Cancel and then choosing
    Edit ->Preferences->sharing."
    At the bottom right are two buttons, "OK" and "Cancel"
    When we put in our email address into the "Sender verification" box,  and press "OK" the next window is entitled "HTML Email Sender Verification" .  The only words on the page for us are  in red and they say:
    "Your email could not be sent because an unkown error has occurred. Please try again."
    Then we have the option of pushing the "OK" or "Cancel" button.
    Can anyone help us get beyond this obstacle?
    THANKS!!

    You need to enter the email id in preferences. Once you put it, you will receive a verification code. You need to put this verificaiton code in the sender verification window. This is required if you are using Adobe email service. You can change the email provider from sharing preferences.

  • Trouble with html on copyright page

    I was wondering if anyone had the time to take a look at the source code on my copyright page. I have been using this page for years, and adjusting it when the need arises. I recently made some changes and, when I generate the project in RH6, I get an error message saying a Runtime Error has occurred.
    I've played with the code all day today, to no avail. Perhaps I should call support? I'm not sure how to proceed. . .
    Regards,
    Sharon

    I'm going to answer this to the best of my abilities.
    First of all, I did import the source file, not the output file, into another project, though I repeated that exercise again to be sure that is what I had in fact done. With that clarified, I proceeded to take out the text as recommended by Willam. I did begin to realize that all my source files have this code.
    After generating, I viewed the output files in both Firefox and IE6. In Firefox, I had no problems; In IE, the error remained. I decided to debug in IE, and (not being a programmer), I can only surmise that my results were that something was wrong with IE! I upgraded to IE8, and all went swimmingly from then on.
    If someone can explain this more clearly, that would be terrific. . .in the meantime, thank you all for your help, as always.
    Have a wonderful weekend.
    Regards,
    Sharon

  • Problems with drop down menu in html snippet

    Hi all,
    I am trying to use a form with a drop down menu so the user can jump directly to the corresponding page. I am using the code generated by http://javascript.internet.com/generators/drop-down-menu.html, and it works correctly when I test it in the "Show me the drop down menu" option on their page.
    This is the html code:
    <!-- ONE STEP TO INSTALL PULLDOWN MENU:
    1. Paste the code into the BODY of your HTML document -->
    <!-- STEP ONE: Copy this code into the BODY of your HTML document -->
    <BODY>
    <!-- Original: Ricocheting ([email protected]) -->
    <!-- Web Site: <a class="jive-link-external-small" href="http://free.prohosting.com/~ric">http://free.prohosting.com/~ric</a> -->
    <!-- This script and many more are available free online at -->
    <!-- The JavaScript Source!! <a class="jive-link-external-small" href="http://javascript.internet.com">http://javascript.internet.com</a> -->
    <form name="jump">
    <select name="menu" onChange="location=document.jump.menu.options[document.jump.menu.selectedIndex] .value;" value="GO">
    <option value="">select genre</option>
    <option value="http://www.mygaragebandstudio.com/blues_rock.html">blues/rock</option>
    <option value="http://www.mygaragebandstudio.com/cinematic.html">cinematic</option>
    <option value="http://www.mygaragebandstudio.com/country.html">country</option>
    <option value="http://www.mygaragebandstudio.com/electronic.html">electronic</option>
    <option value="http://www.mygaragebandstudio.com/experimental.html">experimental/new age</option>
    <option value="http://www.mygaragebandstudio.com/jazz.html">jazz</option>
    <option value="http://www.mygaragebandstudio.com/latin.html">latin</option>
    <option value="http://www.mygaragebandstudio.com/orchestral.html">orchestral</option>
    <option value="http://www.mygaragebandstudio.com/urban.html">urban</option>
    <option value="http://www.mygaragebandstudio.com/world.html">world</option>
    </select>
    </form>
    When I paste this code into an html snippet in iWeb, my page does not work correctly after publishing to a folder. The jump to location doesn't open its corresponding page. Instead, it defaults to the same page that has the drop down menu, only the menu doesn't appear any more. Instead, I get a "hole" where the drop down menu used to be.
    This is my URL: http://www.mygaragebandstudio.com/jingles.html
    I examined the code of the page with the html snippet generated by iWeb, and to my surprise I couldn't even find the html code of the form with the drop down menu. Where is it?
    Please help!
    null

    Manuel wrote:
    Green Star for you!
    JSYK,
    You didn't actually give PressWeb the green star by marking his post as the post that solved your question. You merely marked the question as answered but never actually marked PressWeb's post as being the post that answered your question, which will in effect reward PressWeb with the green star as seen by a green star appearing in the header for his post. I only mention this because you have incorrectly mentioned rewarding PressWeb with a green star.
    Hope that helps.

  • HTML Snippet with containing SWF file covers a PNG button I created

    Is there a way to place a PNG picture with a hyperlink over a flash intro? Here's the link to my website: www.recklesswear.com. The enter button had to be placed below the HTML snippet box because it covered the button. I want to have the button higher up on the page. I've brought the "enter" button to the front and sent everything else to the back. Still not working. Thank you.

    Welcome to the Apple Discussions. Snippets take priority and always end up on top. So you'll either have to put the button below or somewhere else or try what Chuck suggested, incorporate the hyperlink in the flash intro.
    Happy Holidays

  • Trouble with "Share This" snippet

    I am having strange problems with my HTML snippets for "Share This". I am working in iWeb 09, and have just created this (my first iWeb) site. Also, I am publishing to FTP - not Mobileme.
    It works fine on several of my pages, but on others it moves over text and/or does not work at all after publishing.
    I have added the "twit this" snippet to every page and it works perfectly. I don't understand why some are working and other are not.
    Any suggestions?

    I have BTMM enabled on all machines that I wish to be able to connect to and i have the enabled the same user on each machine, i.e. I am logged in to Machine 1 with user = 'user1' with password = 'user1pw'.
    I also have enable 'user1' on Machine 2.

  • How to send an html snippet with swf flash under other layers in iWeb?

    I like designing websites on iweb but face problems regarding flash.
    When i embedd a swf in an HTML snippet...the snippet automatically postions itself at the topmost layer. Even if you send it behind lets say a box or any shape, or a link ..on publishing it , it comes right back up when seen on other browsers like firefox or chrome. But strangely on my mac browser - safari- it works just fine.
    Links in a flash swf banner when placed in iWeb (inside an html snippet ) opens other linked pages within the frame of the html snippet itself...and not as a seperate page.
    I'm not a programmer so i wouldnt understand complicated stuff... but i knw how to copy paste codes inside a snippet and edit the sizes.
    I need help fast?
    Thanks in Advance!!
    Anshuman

    When i embedd a swf in an HTML snippet...the snippet automatically postions itself at the topmost layer. Even if you send it behind lets say a box or any shape, or a link ..on publishing it , it comes right back up when seen on other browsers like firefox or chrome. But strangely on my mac browser - safari- it works just fine.
    That's how browsers behave.
    Links in a flash swf banner when placed in iWeb (inside an html snippet ) opens other linked pages within the frame of the html snippet itself...and not as a seperate page.
    Use the target attribute : target="_top" or target="_blank" in the <a href> element.
    I'm not a programmer so i wouldnt understand complicated stuff... but i knw how to copy paste codes inside a snippet and edit the sizes.
    Pasting custom code in a HTML Snippet and make it work is your responsibility. And if you're not a programmer, start learning and become one. Before you know you're the resident technology expert in this forum.

  • Html snippets with style

    I'm trying to do a (for now) simple form in iweb using the html snippets tool.  The text in the non-form parts of my page use white Calibri of various sizes ("I'm using the "Darkroom" page template).  The static text in my form looks like Times and is black.  So my question:  How do I get the static text in my form to assume the same style(s) as in the rest of the page?
    I'd like to avoid having to redo the form every time that page gets updated so that's why I'm not hand hacking the html, although this may turn out to be the better way to go.
    TIA,
    eric

    What's the code you're using in the HTML snippet. Post it here using the Quote button. Then we can see if font attributes can be added to it.
    Is this a Form Action type of form? See this demo page for examples: Embedding Forms
    OT

  • HTML Snippets move around in different browsers

    I added an HTML Snippet (Skype button) and a Google map to a web site designed with iWeb. Both of these items move up or down in different browsers (Safari, Firefox, Internet Explorer). Is there any way to lock the position of these widgets, so they don't move? The page with these problems can be found at: http://www.follow-your-nose.com/fyn/Contact.html

    I have the same trouble, the strange thing is that out of 3 pages it works fine on 1, on the other 2 pages the HTML snippet moves up or down depending on the browser type.
    So why does it work on this 1 page ?
    Another problem I have is that links to recommend another site sometimes format themselves. I make them White Pink Grey, so in iWeb they work fine, but when published some of them suddenly being back to the original colors.
    Another problem I have is that some Amazon Ads do not work in the HTML snippets, why the **** is that ?
    iWeb *****, all that work for this not satisfying result.
    thanks for any help you might give me....
    the main concerned site is www.hongkong-experience.net you can see the problems on the what to do page, here the snippet moves as well as on the same page in german, it the french version it doesnt ??
    http://www.hongkong-experience.net/Whatto_see_and_do_in_HongKong.html
    http://www.hongkong-experience.net/Wastun_und_sehen_in_HongKong.html
    http://www.hongkong-experience.net/Quoifaire_et_voir_a_HongKong.html
    and here the links color themselves http://www.hongkong-experience.net/Bienvenuesur_notre_Guide_de_Voyage_de_HongKong.html
    thanks again for any feedback which might help me.
    Tom

Maybe you are looking for

  • How to keep bookmarks in a divided PDF?

    When I divide a PDF with the superior bookmarks I loose the bookmarks. Is there a possibilty to keep them? Schöne Grüße vom Bodensee Brigitte

  • I need suggestions for parental controls applications for the iTouch!

    I bought my sons new 4th generation 8gb iPod iTouches for Christmas. I want to restrict Internet websites and usage since they are only 13 y/o. Someone suggested a free application that apparently is great.....but I cannot remember the name of it! Pl

  • Security:090802 PKI Credential Mapper has got an LDAP exception

    Weblogic Server 10.3, Oracle Service Bus, Red Hat Enterprise, AD integration, PKI infrastructure. I have the small erorr message that somewhere exists LDAP error, but cant understand how to read full text of exception or another additional informatio

  • HP Pavilion dv6-6135dx USB 3.0 Problems

    Recently bought this laptop, I like it, it works great. I reformatted pretty much the day I got this laptop. However, I cannot get 2 USB ports on the left side of the laptop to work, I'm assuming these are the USB 3.0 ports. The two USB ports on the

  • Error in Releasing Billing Documnt

    ZI7  is the Account Key for Condition type  Tax in Pricing Procedure 1005570664 000000 Posting keys for account determination for transaction ZI7 do not exist         Long txt             Detail              Diagnosis                  The posting key