How can I download my web pages back into IWeb

I have created a site with about 10 pages photos everything it is still on web. problem is the local files are not on my MacPro, lost them somehow. Is there a way to get them back from the web?

No unfortunately not, as iWeb has no import facility and so is unable to open any html or css files/an already published site.
If you really don't have access to your domain.sites files, which is what you need and these can be found under your User/Library/Application Support/iWeb/domain.sites, then you are look at re-building your site from scratch.
You can use copy and paste to re-create it, but you are still looking at re-building if you don't have that all important domain.sites file.
Also, if you have to re-build, then consider using different software instead of iWeb, as Apple no longer actively supports or develops it.
There are various alternatives such as RapidWeaver, Sandvox, Freeway Express/Pro, Flux 4, WebAcappella 4 and Quick n Easy Website Builder as well as EasyWeb that is in development by Rage Software and Adobe Muse.
You can download free trials of most of these so that you can try before you buy.

Similar Messages

  • How can I download a web page's text only?

    Hello All
    I have some code (below) which can download the html of a web page and this is usually good enough for me. However, sometimes it would just be easier to work with if I could download just the text only of a given page. And sometimes the text that appears on
    the given page is not even available in the html source, I guess because it is the result of some script or other in the html rather than being definied by the html itself.
    What I would like to know is, is there any way I can download the "final text" of a web page rather than its html source? Even if that text is generated by a script in the html? As far as I can see the only way to do this is to load the page in a
    browser control and then get the document text from that - but that's far from ideal.
    And I dare say somebody out there knows better!
    Anyway, here's my existing code:
    Public Function downloadWebPage(ByVal url As String) As String
    Dim txt, ua As String
    Try
    Dim myWebClient As New WebClient()
    ua = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)"
    myWebClient.Headers.Add(HttpRequestHeader.UserAgent, ua)
    myWebClient.Headers("Accept") = "/"
    Dim myStream As Stream = myWebClient.OpenRead(url)
    Dim sr As New StreamReader(myStream)
    txt = sr.ReadToEnd()
    myStream.Close()
    Return txt
    Catch ex As Exception
    End Try
    Return Nothing
    End Function

    A WebBrowsers DocumentText looks like below. The outertext of each HTML element does not necessarily contain all of the text displayed on a WebBrowser Document. Nor does the HTML innertext or anything in the documents code necessarily contain all of the
    text displayed on a WebBrowser Document. Although I suppose the code tells where to display something from somewhere.
    Therefore you would require
    screen scraping the image displayed in a WebBrowser Control in order to collect all of the characters displayed in the image of the WebBrowser Document.
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>What&#39;s My User Agent?</title>
    <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta name="author" content="Bruce Horst" />
    <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
    <link href='http://fonts.googleapis.com/css?family=Raleway:400,700' rel='stylesheet' type='text/css'>
    <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
    <script src="/js/mainjs?v=Ux43t_hse2TjAozL2sHVsnZmOvskdsIEYFzyzeubMjE1"></script>
    <link href="/css/stylecss?v=XWSktfeyFOlaSsdgigf1JDf3zbthc_eTQFU5lbKu2Rs1" rel="stylesheet"/>
    </head>
    <body>
    Code for OuterHTML using WebBrowser
    Option Strict On
    Public Class Form1
    WithEvents WebBrowser1 As New WebBrowser
    Dim WBDocText As New List(Of String)
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Me.Location = New Point(CInt((Screen.PrimaryScreen.WorkingArea.Width / 2) - (Me.Width / 2)), CInt((Screen.PrimaryScreen.WorkingArea.Height / 2) - (Me.Height / 2)))
    Button1.Anchor = AnchorStyles.Top
    RichTextBox1.Anchor = CType(AnchorStyles.Bottom + AnchorStyles.Left + AnchorStyles.Right + AnchorStyles.Top, AnchorStyles)
    End Sub
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    WebBrowser1.Navigate("http://www.whatsmyuseragent.com/", Nothing, Nothing, "User-Agent: Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko)")
    End Sub
    Private Sub WebBrowser1_DocumentCompleted(sender As Object, e As WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
    RichTextBox1.Clear()
    WBDocText.Clear()
    Dim First As Boolean = True
    If WebBrowser1.IsBusy = False Then
    For Each Item As HtmlElement In WebBrowser1.Document.All
    Try
    If First = True Then
    First = False
    WBDocText.Add(Item.OuterText)
    Else
    Dim Contains As Boolean = False
    For i = WBDocText.Count - 1 To 0 Step -1
    If WBDocText(i) = Item.OuterText Then
    Contains = True
    End If
    Next
    If Contains = False Then
    WBDocText.Add(Item.OuterText)
    End If
    End If
    Catch ex As Exception
    End Try
    Next
    If WBDocText.Count > 0 Then
    For Each Item In WBDocText
    Try
    RichTextBox1.AppendText(Item)
    Catch ex As Exception
    End Try
    Next
    End If
    End If
    End Sub
    End Class
    Some text returned
    What's My User Agent?
    Your User Agent String is: Analyze
    Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko)
    (adsbygoogle = window.adsbygoogle || []).push({}); Your IP Address is:
    207.109.140.1
    Client Information:
    JavaScript Enabled:Yes
    Cookies Enabled:Yes
    Device Pixel Ratio:1DevicePixelRation.com
    Screen Resolution:1366 px x 768 pxWhatsMyScreenResolution.com
    Browser Window:250 px x 250 px
    Local Time:9:48 am
    Time Zone:-7 hours
    Recent User Agents Visiting this Page:
    You!! Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko)
    Mozilla/5.0 (compatible; MSIE 10.0; Windows Phone 8.0; Trident/6.0; IEMobile/10.0; ARM; Touch; NOKIA; Lumia 520)
    Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.71 Safari/537.36
    Mozilla/5.0 (compatible; MSIE 10.0; Windows Phone 8.0; Trident/6.0; IEMobile/10.0; ARM; Touch; NOKIA; Lumia 630)
    Mozilla/5.0 (compatible; MSIE 10.0; Windows Phone 8.0; Trident/6.0; IEMobile/10.0; ARM; Touch; NOKIA; Lumia 630)
    curl/7.35.0
    curl/7.35.0
    curl/7.35.0
    curl/7.35.0
    <!-- google_ad_client = "ca-pub-0399362207612216"; /* WMUA LargeRect */ google_ad_slot = "5054480278"; google_ad_width = 336; google_ad_height = 280; //-->
    La vida loca

  • My computer is down, can I import my web folders back into iweb

    I downloaded my index.html and the folder with all the content in it back to my desktop on another computer. How can I get my iweb site back up on line in Iweb 08 using these two folders. I don't have a copy of my domain sites files. Thanks

    Welcome to the Apple Discussions. Unfortunately no. iWeb does not have the capability of importing previously published files. However, Chapter 2.3 of the iWeb FAQ.org site has tips on using some of the existing image, audio and/or video files in the published site in the reconstruction of the site.
    Might be time to consider a backup strategy and an external HD. At the very least you could use a flash drive and backup the domain file there after each use along with some other of your most important files.
    OT

  • How can I "expire" a web page (prevent BACK button access)

    How can I "expire" a web page ?
    I know some sites will display the following message if we click on the
    BACK button in your browser.
    Warning: Page has Expired The page you requested was created using
    information you submitted in a form. This page is no longer available. As a
    security precaution, Internet Explorer does not automatically resubmit your
    information for you.
    To resubmit your information and view this Web page, click the Refresh
    button.
    How do I implement this feature??

    U want to disable back button click
    if yes i think
    javascript:window.history.forward(1);

  • How can I print a web page to a hard copy with Adobe?

    How can I print a web page to a hard copy with Adobe? When I print this particular page in the usual way it prints only the text of that page, not the photo that's also part of that page.

    I have Adobe SendNow, but I can buy another Adobe product if it will solve my web page printing problem.

  • How do I get my web pages back to original size? My fonts are all too large and keep reverting after I change them back!

    How do I get my web pages back to original size? My fonts are all too large and keep reverting after I change them back!

    That has not worked. I do it and still it reverts. Isn't there a way to tell Firefox to just go back to default settings?

  • Can we download a web page using SOA?

    Hi,
    We have a requirement to download a web page whether html or xml format by using SOA middleware.Is it possible with this? Have anyone tried with this earlier? Any suggestions regarding this will be of great help.
    Thanks,
    SOA Team

    Hello Iyanu_IO,
    Thank you for answering my question "can I download a web page as a PDF".
    I downloaded and installed the add-on and it works really well.
    Regards
    Paul_Abrahams

  • HT4972 How can I zoom the web page only vertically or horizontally ,i.e.,wThen I want to read the web page can I enlarge the page so that the font only increases size ?

    How can I zoom the web page only vertically or horizontally ,i.e.,wThen I want to read the web page can I enlarge the page so that the font only increases size ?

    You can't.  (Fonts increase in size like everything else, not in height alone).

  • How can I upload my web page to the internet?

    How can I upload  my web page to the internet. When I click on "publish" it automatically takes me to mobileme - which is no longer accepting members..

    http://financialbin.com/2011/06/13/steve-jobs-confirms-discontinuation-of-iweb-i n-icloud-transition/
    I don't think you can upload pages from iWeb anymore.
    Information about the MobileMe transition

  • How can you restore ALL your photos back into your iphone after changing your icloud plan to 20GB?!? It ruined my photos and videos, and I don't even know if I have them anymore!!!

    Okay. I recently changed my icloud storage plan to 20GB, for $0.99 a month, to have more room in my phone. After that, I realized a lot of my videos were acting up and wouldn't play. I honestly don't know what I did, nor that I can remember, but I tried to play around a little with my phone to see if anything would work again. Then I ended up storing more than HALF of my photos and videos in my icloud storage, and now I can't seem to get them back into my regular iphone stream! I can't see ANY of the pictures/videos stored in icloud, but it tells me that I have 377 photos and 16 videos stored in icloud, and 2.2GB are used, and I could only see 33 photos, and 8 videos in my phone! I want to know how I could UNDO all this, and put EVERYTHING back in my iphone storage, and OFF of icloud! icloud confuses me a lot. I'll just stick with 5GB. HELPP PLEASE!!!
    And also, I want to know WHYYYYY I have to keep downloading my videos before playing them!

    Felixecoga wrote:
    My computer is now almost 3 years old and never had any maintenance or any software cleaning whatsoever.
    That's fine.
    It takes forever to shut down and to star up (compared to when it was new with snow leopard) .. Some programs are now running slow (iMovie, Photoshop) and very often it just doesn’t respond so i have to turn it off the hard way loosing what I was working on.
    Have you tested in a fresh user account, or in Safe Mode ?
    A clean install is rarely necessary, and may not even solve the problem. If you plan to do a clean install and migrate, you defeat the purpose of a clean install.
    If you do a clean install you'll also need to replace your iLife apps from the disks that shipped with your Mac, they're on Disk 2.

  • How can I import an ibook file back into iBook Author?

    I exported an ebook from iBook Author thinking it is the equivalent of saving the file.
    I did not save the file, I only exported it and than exited the program.
    My active file is vannished.
    I need to make some adjustments to the ebook, but can not bring it back up.
    Is there a way that I can re-import the iBook file back into iBook Author?
    When I open iBook Author and try to open the exported file the program does not recognise the ibook file...
    Thanks for your help!

    Check for previous versions of that book in iBA....even if not saved.
    You can dig into the .ibooks file by changing the suffix to zip, but you'll have to manually extract what you can from assets you find. Please only do this with your own books.

  • How do i get hosted website files back into iWeb after they were lost off iWeb?

    Lost all website files from my iWeb program.  Possible I updated a newer non compatible iWeb version?  At any rate........have website files back on my desktop and have no idea how to get them back into iWeb so I can modify.  Any help will be greatly appreciated!

    You can't.  iWeb has no import capability.  Search your hard drive for a file named Domian.sites2.  It normally resides in your Users/Home/Library/Application Support/iWeb folder. If you use Time Machine you can go back in it to find the latest copy of that file.
    However,
    NOTE: In Lion and Mountain Lion the Home/Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    If you can't find it you'll have to start a new website.  You can open the files from the website in your browser and copy/drag photos from the existing website pages into a new or blank iWeb page.  Text should be selected and copied and then pastes into the new webpage.  No need to add a text box first.
    OT

  • Download My Deleted Site Back Into iWeb from .Mac?

    I accidentally deleted my website from my computer but it's hosted on .Mac, is there a way to download it back into iWeb? That would be too easy....

    If you're managing multiple sites you might consider iWebSites. I use iWebSites to manage multiple sites.. It lets me create multiple sites and multiple domain files.
    If you have multiple sites in one domain file here's the workflow I used to split them into individual site files with iWebSites. Be sure to make a backup copy of your Domain.sites files before starting the splitting process.
    This lets me edit several sites and only republish the one I want. I don't open iWeb directly but always thru iWebSites.
    Do you Twango?

  • How can I save a web page without creating a dozen or more tiny files, which is worse than Internet Explorer?

    When I try to save a Firefox web page, I get about a dozen tiny files with funny names cluttering up my documents folder, and making it hard to find anything. This reminds me of problems I used to have with Internet Explorer more than ten years ago. But at least, IE was kind enough to gather all of these files in a single folder, named "files". Firefox dumps them all into my documents folder. Messy.
    Years ago, I discovered Opera, which offered a file format that combined the original html code with the other files into one file: an internet archive, with the extension mht instead of htm. I used Opera for years, but recently became aware of the advantages of Firefox.
    A few days ago, I downloaded the latest version of Firefox, and installed it. I have been evaluating it ever since. It looks good; I have figured out (more or less) how bookmarks work, and I'm getting used to the taskbars.
    But when I try to save a page, I still get a deluge of tiny files cluttering up the target folder. Firefox doesn't save pages in archive form, but only in the old scattered form. Of course, I could simply save only the html. Maybe that's the best thing, but it loses a lot.
    The chaos of junky files cluttering up my target folder is enough to send me back to Opera, despite its limitations.

    This extension allows for web pages to saved on MHT format. <br />
    https://addons.mozilla.org/en-US/firefox/addon/8051

  • How can I open a web page that is not compatible with safari?

    Hi all
    I get the following message when I try to go to a certain web site:
    http://www.sia.homeoffice.gov.uk/Pages/licensing-rolh.aspx click on the "GO TO THE REGISTER" button
    Please note: clicking the button above will transfer you to our secure server, which will open in a new window. You must be using Internet Explorer 6, 7 or 8, or Netscape 7.02 for the new site to display properly. You can return to this site by closing the new window.
    I have looked at Internet Explorer and Netscape and both seem to be out of date with our IOS.
    How can I access this page?

    Try downloading another browser, Firefox for example. Open the link in Firefox and once the page opens copy the link and paste it in safari address bar. That works for me.
    Still trying to find out why we have to do this though since it works just fine in Safari once you had it opened in another browser.
    Hope that helps you!

Maybe you are looking for