Downloaded site from ftp can i reopen in iweb to edit

I have compleatly reformated my computer,
updated to OS lion and re installed all software...
My iweb folder doesn't exist, I probably deleted it,
However I have downloaded my site from my ftp client,
and am trying to re-open the site to edit in iweb...
is this possible?

James ~ Welcome to the Support Communities. No, it's not possible to open published files in iWeb. Only iWeb's Domain file can be opened in iWeb — the Domain file is usually located here:

Similar Messages

  • [HELP] Download file from FTP server

    hi,
    I want to write a java program that can download and upload files from ftp server. Currently I only manage to upload a file to ftp server but i cant download file from ftp server. Here is the source code that only allow user to upload file. Anyone can give me some guidelines so that my program can download and also upload file? thx.
    import java.io.*;
    import java.net.*;
    public class FTPUpload {
    private static final int CTRLPORT = 21;
    private static Socket ctrlSocket;
    private static PrintWriter ctrlOutput;
    private static BufferedReader ctrlInput;
    private static byte[] localHostAddress;
    public final static String DIR = "C:\\zip\\";
    public static void main(String[] args) {
    try {
    String host = "192.168.1.1";
    String loginName = "testuser";
    String password = "password";
    String dirName = "/home/testuser";
    String fileName = "hello.zip";
    ctrlSocket = new Socket(host, CTRLPORT);
    localHostAddress = ctrlSocket.getLocalAddress().getAddress();
    ctrlOutput = new PrintWriter(ctrlSocket.getOutputStream());
    ctrlInput = new BufferedReader(new InputStreamReader(ctrlSocket.getInputStream()));
    ctrlOutput.println("USER " + loginName);
    ctrlOutput.flush();
    ctrlOutput.println("PASS " + password);
    ctrlOutput.flush();
    ctrlOutput.println("CWD " + dirName);
    ctrlOutput.flush();
    ctrlOutput.println("TYPE I");
    ctrlOutput.flush();
    FileInputStream fis = new FileInputStream(DIR + fileName);
    Socket dataSocket = dataConnection("STOR " + fileName);
    OutputStream outstr = dataSocket.getOutputStream();
    int n;
    byte[] buff = new byte[1024];
    while ((n = fis.read(buff)) > 0) {
    outstr.write(buff,0,n);
    dataSocket.close();
    fis.close();
    ctrlOutput.close();
    ctrlInput.close();
    ctrlSocket.close();
    }catch (Exception e) {
    e.printStackTrace();
    private static Socket dataConnection(String ctrlcmd)
    throws IOException,UnknownHostException {
    String cmd = "PORT ";
    ServerSocket serverDataSocket = new ServerSocket(0,1);
    for (int i=0;i<4;i++) {
    cmd = cmd + (localHostAddress[i] & 0xff) + ",";
    cmd = cmd + (((serverDataSocket.getLocalPort())/256) & 0xff)
    + ","
    + (serverDataSocket.getLocalPort() & 0xff);
    ctrlOutput.println(cmd);
    ctrlOutput.flush();
    ctrlOutput.println(ctrlcmd);
    ctrlOutput.flush();
    Socket dataSocket = serverDataSocket.accept();
    serverDataSocket.close();
    return dataSocket;
    }

    Or just use a java.net.URL("ftp://...) ..., get its input stream, and away you go ...

  • Makepkg: curl can't download files from FTP servers but wget works

    Hello,
    I've installed Archlinux in a VMware workstation. When I try to build a package which wants to download it's source files from a FTP server (eg. Eagle) curl fails to download the file with the following error message:
    ==> Prüfe Buildtime-Abhängigkeiten...
    ==> Empfange Quellen...
    -> Lade eagle-lin-6.4.0.run herunter...
    % Total % Received % Xferd Average Speed Time Time Time Current
    Dload Upload Total Spent Left Speed
    0 38.3M 0 0 0 0 0 0 --:--:-- 0:01:00 --:--:-- 0
    Warning: Transient problem: FTP error Will retry in 3 seconds. 3 retries left.
    When I replace curl with wget in makepkg.conf and then try to build the package wget successfully downloads the file.
    Can anybody tell me if there is a bug in curl or how to find out why curl isn't able to download from FTP?
    Regards
    Martin

    I cannot connect direct to the internet from hte epub programme.
    Using playbook connected by wifi connection. Went to Gutenburg site. Selected an epub book and pressed download. This was put into the download directory. Opened epub reader and went to 'Select books', opened 'Downloads' folder and the epub book from Gutneburg was there. Selected and installed into the Library.
    Hope this helps
    Regards
    Ross
    Regards to all (except BB)

  • Problem with downloading file from FTP server

    Hello all
    I have uploaded a file from an application i developed and i want to download this file from another application. The code is
    public static void FTPcon() throws FtpException{
       String hostname = "my.ftp.server";
       String username = "myusername";
       String password = "mypass";
       Ftp ftp = new Ftp(hostname,username,password);
       ftp.setHostname(hostname);
            ftp.setUsername(username);
            ftp.setPassword(password);
            ftp.connect();
            ftp.setBinary();
            ftp.download("file.dat");
            ftp.disconnect();
    }The error i receive is java.io.FileNotFoundException: public.dat (The system cannot find the file specified) but the file is on the server.
    Thanks in advance for any help

    Cotton thank you for your reply
    Any other sugestions please?The server disagrees. So...
    - the file does not existThe file exists.I checked it with an FTP client program.
    - the file has a different nameThe file name is correct
    - you are connected to the wrong serverI am connecting to the correct server
    - you are in the wrong ftp directoryThe file is placed in the home directory
    - the ftp library you are using is broken (less
    likely)I am using the library from jscape.I dont think is broken because i can upload the file from the first application.
    >
    FTP isn't somehow broken in Java. I use it all the
    time. The problem is something listed above. I would
    check all of the first four if I were you because
    that's most likely where the problem is.Message was edited by:
    flightcaptain

  • Problem in download file from FTP server

    Hi
    I want to download a file from FTP server for that i am using the apache FTP module but i am not getting how to download a file with that api i can dispaly the list of files and folders but not able to download the file or folder can any one help me in this
    Thanks
    Ninad

    Hi
    I think you miss understood something I am writing a program to download the file in Java where i have used the jakarta.apache api for that and getting problem in that bellow is the code where I have written to print the directory & file names but I don't know how to download the file
    FTPClient ftpConnection = new FTPClient();
    ftpConnection.connect(host);
    ftpConnection.login(FTPConnection.userName,FTPConnection.password);
    FTPFile fileList[] = ftpConnection.listFiles();
    for(int i=0;i<fileList.length;i++)
         System.out.println(fileList.getName());
    thanks
    Ninad

  • Download file from ftp server

    Can I download files from an ftp server by simply using the ip address or https:// url?    I've only gotten this to work by using the "ftp//:" address in previous projects and I'm not getting this to work in many different attempts. 
    Here is one...
     # FTP Config
    $FTPHost =
    "10.10.10.5"
    $Username =
    "admin"
    $Password =
    "12345678"
    $FTPFile =
    "test.log"
    # FTP Log File Url
    $FTPFileUrl =
    "ftp://" +
    $FTPHost +
    "/" +
    $FTPFile
    # Create FTP Connection
    $FTPRequest =
    [System.Net.FtpWebRequest]::Create("$FTPFileUrl")
    $FTPRequest.Credentials
    = New-Object System.Net.NetworkCredential($Username,
    $Password)
    $FTPRequest.Method =
    [System.Net.WebRequestMethods+Ftp]::DownloadFile
    $FTPRequest.UsePassive
    = $false
    $FTPRequest.UseBinary
    = $true
    $FTPRequest.KeepAlive
    = $false
    # Get FTP File
    $FTPResponse =
    $FTPRequest.GetResponse()
    $ResponseStream =
    $FTPResponse.GetResponseStream()
    $FTPReader =
    New-Object System.IO.Streamreader
    -ArgumentList $ResponseStream
    do
    Write-Host
    $FTPReader.ReadLine()
    while ($FTPReader.ReadLine()
    -ne $null)
    $FTPReader.Close()
    # Create FTP Connection
    $FTPRequest =
    [System.Net.FtpWebRequest]::Create("$FTPFileUrl")
    $FTPRequest.Credentials
    = New-Object System.Net.NetworkCredential($Username,
    $Password)
    $FTPRequest.Method =
    [System.Net.WebRequestMethods+Ftp]::DownloadFile
    $FTPRequest.UsePassive
    = $false
    $FTPRequest.UseBinary
    = $true
    $FTPRequest.KeepAlive
    = $false
    # Get FTP File
    $FTPResponse =
    $FTPRequest.GetResponse()
    $ResponseStream =
    $FTPResponse.GetResponseStream()
    $FTPReader =
    New-Object System.IO.Streamreader
    -ArgumentList $ResponseStream
    do
    Write-Host
    $FTPReader.ReadLine()
    while ($FTPReader.ReadLine()
    -ne $null)
    $FTPReader.Close()

    Hi!
    You don't need to specifically use an IP address. E.g can use
    $FTPHost = "myrandomserver.mycompany.com"
    $Username = "admin"
    $Password = "12345678"
    $FTPFile = "test.log"
    # FTP Log File Url
    $FTPFileUrl = "ftp://" + $FTPHost + "/" + $FTPFile

  • Download file from FTP Server to Application Server

    Hi Friends,
    Using the standard SAP Program RSFTP002, I was able to download the file to my local PC. But my requirement is to download the file from FTP to application server.
    For RSFTP002, I am passing the username, password, host and in command 1 I am passing lcd :\temp, command 2 get filename. The file gets downloaded into c:\temp. If I do the same passing the app server path in command 1 as /usr/sap/tmp I get an error that pass cannot be found.
    Anyone please help me how to donload the file from ftp to app server.
    Thanks,
    Deepthi

    If I remember correctly the activation type on the technical settings tab must be set to "start on application server" in transaction SM59 for the RFC destination for the FTP server.  This should allow the files to be transferred to/from the application server.
    Regards,
    Steve.

  • Downloading file from ftp server

    hii
    how do i download the file from ftp server. plz suggest wat are the function modules for tht.. and plz do give the values of the parameters used in the fn modules
    points guranteed:-)

    <i><b>*--> Scramble the password.</b></i>
      CALL FUNCTION 'SCRAMBLE_STRING'
           EXPORTING
                source = password
                key    = 26101957
           IMPORTING
                target = password.
    <i><b>*--> Connect to the FTP server.</b></i>
    <i>*  user is the logon user for the FTP server.
    password is the password you have just scrambled.
    host is the ip address of the FTP server.
    rfc_destination is 'SAPFTPA'.</i>
      CALL FUNCTION 'FTP_CONNECT'
           EXPORTING
                user                = user
                password        = password
                host                = host
                rfc_destination = rfc_destination
           IMPORTING
                handle          = wa_handle
           EXCEPTIONS
                not_connected   = 1
                OTHERS          = 2.
    <i><b>*--> Carry out the command on the FTP server</b></i>
    <i>*  wa_command is the command you wish to carry out on the FTP server (e.g.   
    wa_command = 'ascii' will specify ascii mode).  Result_itab will contain the
    result of your commands.</i>
      CALL FUNCTION 'FTP_COMMAND'
           EXPORTING
                handle           = wa_handle
                command       = wa_command
           TABLES
                data          = result_itab
           EXCEPTIONS
                tcpip_error   = 1
                command_error = 2
                data_error    = 3
                OTHERS        = 4.
    <b>*--> Disconnect from the target host.</b>
      CHECK NOT wa_handle IS INITIAL.
      CALL FUNCTION 'FTP_DISCONNECT'
           EXPORTING
                handle = wa_handle
           EXCEPTIONS
                OTHERS = 1.
    <u><i><b>Hope this helps :)</b></i></u>

  • Downloaded lightroom from cloud can't launch program. Tried going to preference  sighns and signed out and signed back, but still would not launch

    Downloaded Lightroom from the cloud couldn't launch it. Tried going to preferences sign out and sign back in still couldn't launch Lightroom.

    Sign out from Creative Cloud and Sign in .
    Important : Try to launch Lightroom CC apps from Apps tab menu. :
    Still unable to launch ????  let me know.

  • Links to site come up "can't find the iweb page you've requested..."

    hi-
    i was able to successfully republish my updated website (thru mobile me). it was originally published thru .mac last year before .mac changed to mobile me. however, i noticed that my web address does not have "mobile me" in the title as in some of the other websites that i've check out on the boards here. i wonder if that's a problem because when i've e-mailed links (by dragging the address or even copy & paste) to my updated website, the links don't work. it goes to a mac page that says "we're sorry but we can't find the iWeb page you've requested..." however, if i go thru a search engine (entering the first couple words of my site title), the website comes up fine. also, if i type in the full address manually in an e-mail, the link works. the problem seems to be in the dragging of the address directly from the site. are these things related? my website address is: http://www.hale-o-lani-aloha.com. (feel free to critique the site if you have any opinions about it)
    thanks.

    Deona,
    Here's another post that might prove useful to you, from the iWeb06 forum. This may help you in the future when you want to update your site:
    Because your site is already up on the .Mac server, I would never engage in publishing the entire site again; unless, of course, you just rebuilt the whole thing. Note which pages you made changes to, and publish your site to a folder. Double-click this folder on your desktop, and open the window in column view. Navigate to the Page_files, and the Page.html.
    With the Finder window open that is showing your site, Command+N. Another Finder window will open. In this window, navigate to the same files on your iDisk, again, using the Go menu in Finder:
    Go/iDisk/My iDisk/Web/Sites/iWeb/SiteFolder/Page_files(page.html)
    From the iDisk Finder window, drag the Page_files/page.html of the pages that you made changes to to the trash. Now, from the other window, the window which shows your site in the published folder, drag these same files into the iDisk window, placing them in the same SiteFolder directory from which you dragged files to the trash. If you created a new page, you will need to also replace all other Page_files/page.html files which link to new page(s).
    What you have just done is replace only the changed files. Because the .Mac slideshow assets are already uploaded, you should not have lost the .Mac slideshow for your photo's pages. Sometimes, it can even get simpler....as an example, I have a site that contains numerous .pdf files. With these, I don't even touch the Page_files/page.html files; I simple go into the Page_files folder and replace the old .pdf file with the new, updated one. Obviously the files are named exactly the same.
    This is the best way for you to update your existing site on .Mac. You might also take a look at the ftp client, "Transmit". It works well with .Mac, with the exception that you must use the "Publish to a folder" command in iWeb.
    -Mark

  • 2 Macs, 1 blog site.  How can I use 2 Macs to edit my iWeb site???

    I have a Mac at home and my laptop at work. Both have iLife '06 on the and iWeb. I just designed a web site (and uploaded it) using iWeb, and I'd like to add to it from my laptop at work. I brought a pushlised copy with me, but there's no way to load it for iWeb to read it!
    Is there somewhere I can copy the site files to on my laptop so when I open iWeb, it recognizes them?
    Help!

    You need to transfer this file to whatever machine you want to work from:
    Users/username/Library/Application Support/iWeb/Domain

  • Import previous iweb site from the internet? No old iweb files

    My mac crashed and I lost all the information I had stored in it, including the iweb files of the blog I created using Iweb. Is there a way to import my iweb blog into a new Iweb in the mac I purchased? The iweb site I created is still up, so I am wondering if I can import the entries from my old iweb blog into my new mac/iweb using RSS or some other mechanism to capture the text and pictures in my old iweb blog and transfer them to my new mac. I also use idisk, so when I log in to mobile me I see links to my old iweb blog under if I click on Idisk and then go to "site". Any ideas about how I can import my old iweb blog from the internet?
    The iweb version I have in my new mac is Iweb 3.0.3 (501)

    Jorge ~ Welcome to the Support Communities. Apple says:
    "iWeb stores everything in a Domain file, normally located in the ~/Library/Application Support/iWeb folder (although it can be moved). If you no longer have this file, you can view your currently published pages and manually recreate them within iWeb, but there is no way to import published pages back into iWeb. You can manually back up the Domain file, or use Backup to back it up.” (Source)
    ...If you don't have a backup of your Domain file (e.g. via Time Machine), paragraph 2.3 of this FAQ page gives some tips on how to use published files, graphics, photos, etc., to help rebuild the site from scratch:
    http://iwebfaq.org/site/iWeb_Backup_retrieve.html

  • Downloading site from server created by someone else

    I apologize if this is something easy, but I'm frustrated. I have volunteered to help with a website that was created by another person using I don't know what. I was able to get to the site, but it seemed that I needed to create a site first in order to download. Of course, that creates the index.html and it doesn't want to be replaced by the one I'm attempting to download. I'm using GoLive CS2 8.0.1 and my operating system is OS X 10.5.6.
    I'm using satellite for my internet service and what files I have been able to get have taken forever. Am I doing something wrong?

    One reason the index.html refuses to be replaced may well be that it is designated as the home page. It doesn't have to be - if you can create any other .html page and in the site window define
    that as the home page temporarily, you should be able to replace index.html.
    I hope it's a small site - it's a very laborious way to recreate a site and you'll probably have to remake all the links as well as working out the site structure from the links in the original.
    Best would be to get ftp access from the original creator of the site or whoever uploaded it, then you can get it all in one go.

  • Download site from server?

    I have recently started updating my company's website. I would like to use iWeb as an FTP client. I have the connection set up, but I do not have the website files on my computer. The site was originally managed through GoDaddy, and the previous webmaster has since left the organization.
    Does anyone know how to download the website from the server (if it is possible)?

    Yes, it is possible to download the site files from the server, but not possible to open them using iWeb - iWeb has no import facility, so is unable to open already published html files.
    You will have to re-build the whole website in iWeb if you want to use this.
    If you download the files you'll have to use a text editor such as TextWrangler or Dreamweaver or some other programme that is able to import html files.

  • Download movie from iTunes can't stop or pause.???

    I have been downloaded the movie from itunes store, but i realy disappointed when i try to pause or stop the download. Everytime i want to resume download the movie, it start again from the beginning. How to solve this problem? Can i get the refund?
    for other information : i have no problem to download app in iTunes

    Tendi, did you solve the problem? I'm all of a sudden having the same issue with a 3 Gig movie, and it's driving me nuts! I don't even get a puase option, only an X in the downloads. It is so frustrating!

Maybe you are looking for