Link from another website

I want to use the iWeb blog software, but I have a website that does not use iWeb. Can I link the iWeb blog from my website?
Thanks!

I am assuming that your web site is hosted by another host, and that you also have a MobileMe account with Apple. If taht's the case, here's what I would do:
1. Create a an iWeb web site with just your Blog page in it, then publish it to MobileMe.
2. Create a "Blog page" in your other web site's navigation menu and link it to your index.html file which iWeb uploaded to MobileMe.
If I'm not mistaken, that ought to work.

Similar Messages

  • If I try and follow a link from another website to open another I get awclick.php (GIF Image 1x1) pixels in a new tab instead of the web page I want.

    I was trying to open a website as a link from another website and I get a new tab that says
    awclick.php(GIF Image 1x1 pixels)
    I can open the website without clicking on a link to it by just typing in the address but as this is a cash back site I am linking from it doesn't help!

    You're welcome

  • When I open a link from another website ForeFox puts a messagge at the top of the new link saying that it has blocked the websiste from transferring me to a new

    When I open a link for another website Firefox opens a new tab but puts a line on the top of the new page saying that Firefox has blocked the website from transferring me to another page.
    I have to press ALLOW before Firefox will open the new page.
    How can I solve this problem.
    Many thanks in advance.

    hello betth007, in order to get effective help, please open a new question at https://support.mozilla.org/en-US/questions/new instead and include a bit more details about your issue (what kind of error message are you getting, etc.). thank you!

  • Will not load sites linked from another website--have cleared cache, cookies, history, restarted, checked in Safe Mode--still does not work.

    Some sites load fine. But some sites will not load when linked from another web site, or, occasionally, even from my bookmarks. I went through troubleshooting routine--cleared cache and cookies, history, checked in Safe Mode for extensions, etc., but still will not work in Safe Mode. No other problems with computer or browser.

    What happens when you click the link that does not open up the new page? Is it a blank page? Does this also happen if you Shift Click the link?
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/viruses/disinfection/5350 Anti-Rootkit Utility - TDSSKiller]
    * [http://general-changelog-team.fr/en/downloads/viewdownload/20-outils-de-xplode/2-adwcleaner AdwCleaner] (for more info, see this [http://www.bleepingcomputer.com/download/adwcleaner/ alternate AdwCleaner download page])
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Optimize photo links from another website??

    I have a client that has two websites.  I want to use all the photos from her other website to make thumbnails.  There are huge amounts of photos, so I have just linked the photos from her present site.  Does anyone know if it's possible to optimize them, so the page full of thumbnails is faster to load?  Is there some sort of Javascript for that?  I'm guessing not, but am very hopeful!
    Thanks in advance!

    Hey Nancy
    Maybe it would just be easier to give you these details...
    The site that the pictures are from:  http://blog.carmichaelphoto.com
    Thumbnails are embedded into: http://elopeinbanff.ca/indexNew.php
    Photos have been uploaded to Blogger by the client. 
    The Elope in Banff server is fast enough, but the more thumbnails that are added, the more it slows down the "special effects" that the page has (the opening of the gallery tab, itself).  And yes, the site is all on one page, so that gets a tad bulky too, but it wasn't that big a deal till I added the thumbs.

  • When I click on an active link from another application, it opens the firefox application, but won't open open the page - it just opens Firefox or takes me to Firefox. No new tab or window is opened and the link is not displayed.

    When I click on an active link from another application, it opens the firefox application, but won't open open the page - it just opens Firefox or takes me to Firefox. No new tab or window is opened and the link is not displayed.

    Firefox sent an email to me to confirm that I had asked the above question. The email had a link to click. When I clicked it from Firefox, nothing happened. Then I opened IE, signed into Comcast, opened the email, clicked the link, and it brought me here.

  • Display from another website

    Hello all,
    I need to display a page from another website in my jsp. I'm using Sitemesh to build the header, footer and layout of the page, but I need to bring a page from another website to display in the body. I have searched the internet and haven't found any good posts/articles/tutorials/ect. on the subject. Could someone please point me in the right directions.
    Thanks,

    Use a tool that gets data from a URL then sets a JSTL tag. You can use the tag then to place the new content. Please only do this if the site belongs to you. This will be frowned at if not.
    Simple class to get a URL
    package uk.co.classfinance.curl;
    import java.io.DataInputStream;
    import java.io.DataOutputStream;
    import java.io.IOException;
    import java.io.UnsupportedEncodingException;
    import java.net.URL;
    import java.net.URLConnection;
    import java.net.URLEncoder;
    * Grabs data from an URL after passing parameters in a POST or GET request
    * @author Garry Taylor
    public class WebFetch {
         private String Url;
         private String Method;
         private String Response;
         private String PostData;
         public WebFetch() {
              this.PostData = "";
              this.Method = "POST";
         public void setUrl( String value) {
              this.Url = value;
         public void setMethod( String value) {
              this.Method = value;
         public String getUrl() {
              return this.Url;
         public String getMethod() {
              return this.Method;
         public String getResponse() {
              return this.Response;
         public void setPost(String name, String value) {
              String prefix = "";
              if( this.PostData.equals("") ){
                   prefix = "";
              } else {
                   prefix = "&";
              try {
                   this.PostData += prefix + name + "=" + URLEncoder.encode (value, "UTF-8" );
              } catch (UnsupportedEncodingException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
         public String getRequest() throws IOException {
              URL url;
              URLConnection urlConn;
              DataOutputStream printout;
              DataInputStream input;
              // URL of CGI-Bin script.
              url = new URL (this.Url);
              // URL connection channel.
              urlConn = url.openConnection();
              // Let the run-time system (RTS) know that we want input.
              urlConn.setDoInput (true);
              // Let the RTS know that we want to do output.
              urlConn.setDoOutput (true);
              // No caching, we want the real thing.
              urlConn.setUseCaches (false);
              // Specify the content type.
              urlConn.setRequestProperty
              ("Content-Type", "application/x-www-form-urlencoded");
              // Send POST output.
              printout = new DataOutputStream (urlConn.getOutputStream ());
              String content = this.PostData;
              printout.writeBytes (content);
              printout.flush ();
              printout.close ();
              // Get response data.
              input = new DataInputStream (urlConn.getInputStream ());
              String str = "";
              String result = "";
              while (null != ((str = input.readLine()))) {
              System.out.println (str);
              //textArea.appendText (str + "\n");
                   result += str + System.getProperty ( "line.separator" );
              input.close ();
              return result;
    }

  • Why is there no option for a Black ipod anymore/ I've seen the option on other websites, but this website no longer has it. And if I get the Black iPod Touch from another website, will it be old and IOS 6, because the option went away long before IOS 7

    I want a Black iPod Touch Fifth Generation, however I do not see an option for it. I have seen the option before, but it is no longer there, just like the option for a White iPod Touch. I still see the option for a Black iPod on other websites, such as Amazon. I wonder if it will not be updated and slower if I buy it from another websites that sell a Black version, because I think Apple might have eliminated that option for the iPod Touch Fifth Generation.

    No there is the option for a black iPod touch 5th Generation. However, they call it Space Gray now. It provides a black front screen and a slightly gray colored aluminum on the back.

  • How to access a page from another website in to the portlet

    Hai,
    I need this specific requirement. In a portlet that is written in jsp, i need to access another page which is running in another server.I will explain what is my requirement clearly.. In a portlet, i have to acess a page from another site, and i have to pass a parameter directly. If i use URL-Based Portlet with passing parameters, It ask the user to enter the parameter and submit the page.. But what my need is, i have to pass the parameter directly. what i am planning is in a new tab, i will add a portlet, where i need to access the another website page..when the user opens that tab, it directly shows that website..... How do i proceed...
    Can anybody help me.. Its URGENT....
    If possible send me the code..
    my mail id: [email protected]
    Thanks in advance
    damodar

    Damodar,
    To include an existing JSP page as a portlet have a look in the PDK section http://portalcenter.oracle.com there is lots useful information. The two things you might find most relevant is a paper on creating java portlets. This paper has a section on turning an existing JSP page into a portlet
    http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/ARTICLES/HOW.TO.BUILD.A.JAVA.PORTLET.USING.PDK.JAVA.V2.HTML
    and to pass parameters and events
    http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/ARTICLES/OVERVIEW.PARAMETERS.EVENTS.HTML
    Hope this helps,
    Candace

  • Named Anchor linking from another document

    I made a Named Anchor and linked from some text in another document.  Great.  Worked just fine.  The only thing is it doesn't display the named anchor at the top of the page.
    In other words the footer is at the bottom of the page and the named anchor in the middle of the page...  not at the top.  Like a #top would be.
    Anyway to get it to the top of the page?  Do I just need more content under it?
    Much appreciated!

    Thanks for the help.  I had no luck trying it out.
    If possible, at:  artdesignsneed.com/joeldoctor
    Under menu choice "Treatment" then choose "TFP"....  the first sentence has  ..."Borderline PD developed..."
    I wanted to link Borderline PD to:
    Menu choice: Disorders...  choose Personality...  go down to "Cluster B" and there's Borderline PD.
    The link worked but the named anchor "Borderline PD" is in the middle of the page.
    Cheers if you can help.
    If not, I'm going in the right direction.
    Much appreciated.

  • How to link from another page directly to a photo within a Spry gallery?

    I have created a page that has a photo gallery using Donald's tutorial to make a spry photo gallery. I have a need to link to a specific photo in that gallery from another page. I have seen the discussions on how to do this with tabbed panels etc.. but wondering how to do it in this context.

    Add default slide to the constructor and use a similar process to http://foundationphp.com/tutorials/spry_url_utils.php
    var ImageSlideShow = new Spry.Widget.ImageSlideShow("#ImageSlideShow", {
        defaultSlide: 2,
        widgetID: "ImageSlideShow",
        injectionType: "replace",
        autoPlay: true,
        displayInterval: 4000,
        transitionDuration: 2000,
        componentOrder: ["view", "controls"],
        plugIns: [ Spry.Widget.ImageSlideShow.PanAndZoomPlugin ]
    Gramps

  • Can you link to another website in iWeb?

    Hi everyone,
    Is there a way in iWeb to use a page to navigate to another website i.e. Blogger?
    Many thanks!

    I'm sure it can be done in iWeb :
    Add a link to the navbar
    <script language="JavaScript" type="text/javascript">
    <!--
    theNavUL = parent.document.getElementById('widget0-navbar-list');
    theLiVar = '<li class="noncurrent-page"><a href="home.html">Home</></li>';
    // At the beginning
    theNavUL.innerHTML = theLiVar + theNavUL.innerHTML;
    // At the end
    theNavUL.innerHTML += theLiVar;
    // -->
    </script>
    Or use the method on this page :
         http://www.wyodor.net/mfi/global/
    Or use this code :
    <script language="JavaScript" type="text/javascript">
    <!--
    theNavUL = parent.document.getElementById("widget0-navbar-list");
    TheLi = parent.document.createElement("li")
    TheLi.innerHTML = "<a href='Tuinproject.html'>More</a>";
    TheLi.className = "noncurrent-page";
    theNavUL.appendChild(TheLi);
    // -->
    </script>
    See it here :
         http://www.wyodor.net/mfi/ipad/Welcome.html
    More custom menus here :
         http://www.wyodor.net/mfi/

  • Including a file from another website on a Mac (PHP)

    I'm working on a Mac, and my websites are in a folder at the
    following
    location...
    MacIntosh HD > Users > MyName > Sites
    Let's say I'm working on a page on a website named Beta...
    HD > Users > MyName > Sites > Beta
    ...and I want to include a file from a different website,
    Alpha...
    HD > Users > MyName > Sites > Beta
    This is what the include looks like on my PC, though it isn't
    directed
    to another website:
    $BaseINC = $_SERVER["DOCUMENT_ROOT"];
    include ($BaseINC."/a1/inc/footer/index.php");
    Can anyone tell me how to modify this code so that it
    includes HD >
    Users > MyName > Sites > Alpha > a1 > inc >
    footer > index.php on a page
    in Sites > Beta? (I'm just focused on doing this locally;
    I know how to
    include files across websites online.)
    I assume it would look something like this
    include ("Alpha/a1/inc/footer/index.php");
    Thanks.

    > Can anyone tell me how to modify this code so that it
    includes HD >
    > Users > MyName > Sites > Alpha > a1 > inc
    > footer > index.php on a page
    > in Sites > Beta? (I'm just focused on doing this
    locally; I know how to
    > include files across websites online.)
    Includes are a web server functionality. As such, you'll need
    to place your
    folders inside the default APACHE folders (assuming Apache is
    the web server
    you are running on your mac).
    Secondly, SSIs crossing sites is typically not supported on
    any web server
    AFAIK. Your example would be grabbing a file from a different
    FOLDER,
    though...not specifically a different site (ie, it's own root
    directory on
    the server).
    -Darrel

  • Firefox wont open webpage when linked from another program

    When linking from other programs, a new firefox window will open, but displaying a blank page instead of loading the page. I checked for firefox being the default web browser, but I cant figure out what other options may be important. It actually started happening when upgrading to Ubuntu Natty, did not happen when using ff 4.0.1 on maverick. Any Ideas? Thanks for the help.

    First and foremost, please update Firefox to '''3.6.17''' by clicking '''Help'''| '''Check For Updates'''.
    The reason for this is because there was a security breach at Comodo which is an SSL certificate provider recently whereby a number of fraudulent certificates were inadvertently issued. These allow a hacker to impersonate any site including online banking and the Firefox version you're running at the moment will not warn you that the site is a fake. The fraudulent certificates were blacklisted in v3.6.17 and beyond.<br><br>
    See also: http://blogs.comodo.com/it-security/data-security/the-recent-ra-compromise/<br><br>
    As regards your problem, you may have a corrupt '''places.sqlite''' file.
    Please see: http://kb.mozillazine.org/Locked_or_damaged_places.sqlite<br><br>
    and [[Error loading web sites]]

  • How do you add a link to another website in you PDF using LiveCycle?

    Can you add a link in your PDF in livecycle that opens a new window that that takes you to a predetermined website?

    There may be simpler ways, but this is how I made my button.
    Add the button.On the Object palette>Field page change appearnce of button to have no outline and no fill. Highlight the text and on the Font and paragraph palettes choose the correct look for your text (blue and underlined plus anything else you want) and change the text to what you want the link to say.
    Then to add the URL, open your script editor (Window>Script editor) & choose "Langauge:Javascript" and "Run at:Client".
    With the button chosen, choose the CLICK event (from drop down list, beside "Show") add the script:
    app.launchURL("http://AND THIS IS WHERE YOU ADD YOUR OWN URL")
    Hope that is helpful

Maybe you are looking for

  • Family Sharing and Device is already associated with an Apple ID

    I apparently have no idea how Family Sharing works. I have had an Apple ID for as long as they have existed. As my daughters grew up and got iPods and iPhones, they always use this ID for iTunes. Now with Family Share we thought they could each have

  • My computer crashed. how do i restore my content from my phone back to my computer

    how do i restore my content from my phone to my itunes on a new computer

  • ITunes Freezes on Launch

    Everytime I try to open iTunes, it opens and is completely unresponsive. I cannot click anything or use it in anyway without it slowing down my computer. I need to use the task manager to close it. I already tried repairing it and uninstalling/reinst

  • Missing the Personalizations while uploading from 11i to R12

    Hi, I am working on the Upgrade project . We are upgrading the Oracle applications from 11.5.10.2 to 12.1.2 . So i am uploading the all personalizations from 11i to R12. I created the ldt file from 11i and and tried to upload in R12. But some of the

  • Enhancement in MM03

    Hi, In MRP view - General Data of MM03 i want to add a field just below ABC indicator. Please tell me how i should do this as this is the first assignment i am doing on enhancements. Regards, Darpana.