How to upload file to MobileMe iweb site?

I take care of 2 websites, 1 is on a server that i upload to using Fetch (I publish this site to a folder first).
The other is on MobileMe: it's actually the 'same' site, just a satellite site where we keep large files like photos and video clips. I have a link on the base site to this one.
It takes a very loooooonnnnggggg time to publish the MobileMe site.
I'm trying to add a new photo page to the album (it has 5 70mb or so size videos on it) and it's taken several hours already and isn't done. I checked 15 minutes ago and the page wasn't there, and I tried to quit iWeb and got the message that it was uploading and this might cause a problem so of course I cancelled quitting.
Now, as i started this post, I checked iweb and there was this error message:
+An error occurred while publishing file “/private/var/folders/kt/ktNPDfjLFuO2qrZr6xwH3E+TI/TemporaryItems/
com.apple.iWeb3004_TEMP_291689846_2/sites/St_James_theAssiniboine/
MusicMinistry/Pages/Fundraising_Concert,_March_2010files/Media/
Grahams 3-mobile/mobile.m4v”. Try publishing again later.+
This isn't the first time i've had this problem. (Note: Prior to publishing the site, I got the 'error config ... try connecting later' message and did the System Pref trick of logging out and re-logging in as test ... which worked)
So is there a way that i can upload the movies to MobileMe myself? there is an upload button but it won't do anything when I click on it.
Any suggestions would be appreciated.
Thank you
Elizabeth

Did you ever figure this out? I, too, have wanted to upload many html files to my mobile me account, which is my domain name. (And another I do for SDAEOP.) I don't want to have to redo 64 html files, but would rather just point to the proper URL. My problem was I uploaded the entire folder to the Home / Web / Sites / SDAEOP (and the folder name I uploaded with all the stuff was sdaeop4. However, when I fixed the link of the first page that points everything to the sdaeop4 folder, and published it in iWeb, it wiped out the entire folder!!! It's about 64 mb and my internet isn't that fast, so had to upload again, to my Documents, this time. But, I can't figure out what to make the link. I thought it should be http://www.sdaeop.com/Sites/sdaeop4/strawberriesoflife.html (which actually turns into this: http://www.sdaeop.com/Sites/sdaeop4/strawberries%20of%20life.html). but, it says it's not found. I'm not sure how to make the link correct. Maybe I leave off the sites? I'll have to login to my other account where I keep that domain file and see if that works. If you have any info, please advise.
Thanks!
Nanc

Similar Messages

  • Can other people upload pictures to my iweb site and other people comment or rate them? if so how?

    can other people upload pictures to my iweb site and other people comment or rate them? if so how?

    Welcome to the Apple Discussions. If you use a MobileGallery from iPhoto to house your photos and videos you can set it up in the settings so visitors can upload items to the gallery via email.
    Click to view full size
    You can them embed the gallery in an iWeb page like this: MobileMe Galleries and Quicktime Movies.
    I've not tried emailing a photo to a gallery so can't comment on how well it works.
    For photo pages or album pages in iWeb visitors can add comments and attachments, photos, which other visitors can view. How they are added I don't know. Here's what the iWeb Help says about that:
    +*About visitor comments and attachments*+
    +If you publish your site to MobileMe, you can let visitors add comments and attach files (which other visitors can download) to blog, podcast, and photos pages. These comments and attachments are visible to anyone who visits your website. To prevent automated programs from posting spam to your site, anyone who posts a comment is first required to type a displayed group of characters.+
    +Comments appear as soon as they’re posted, and you can delete a comment and its attachment at any time using iWeb or by visiting your site with any browser. You can also turn off comments to prevent new postings without affecting the comments already posted.+
    +Comments and attachments are stored on your iDisk. Each comment can be a maximum of 32 kilobytes (KB), and each attachment can be up to 5 megabytes (MB).+
    +IMPORTANT:Before posting anything to your website, make sure you own the copyright and other rights to what you or others are posting, or that you obtained all necessary permissions.+
    OT
    Message was edited by: Old Toad

  • How do I upload files to an FTP Site in Leopard

    I am unable to upload files to an ftp site that was set up for me. I have read write permissions. I can pull files from the site but I cannot upload or place files on the site. The site was tested and is working for pc's

    Colonno wrote:
    Thanks - I am not really versed in ftp so I am not sure where to start without some direction. Maybe 3rd party software is the answer. I went into the terminal without much success.
    The third-party utilities are largely as easy as drag and drop.
    Free: Cyberduck
    Paid: Transmit (excellent), Interarchy

  • How to add games to an iweb site?   please HELP!!!!!!!!!!!!!!

    how to add games to an iweb site?
    ive been trying add it for a long time. any help would be appriciated

    Ok, here you go...
    I Googled "free games for website" and downloaded one. Instructions on this page...
    http://96.0.63.10/iWeb-Test-2/game.html
    You will need to upload the folder to your server using an FTP application.

  • How to upload file from Application Server?

    Dear Friends,
    How to upload file from Application Server?
    Plz. with example...
    Regards,
    Dharmesh

    hi,
    check the code for upload from application server.
    tables: kna1.
    types: begin of s_file,
             customer type kna1-kunnr,
             country  type kna1-land1,
             name     type kna1-name1,
             region   type kna1-regio,
           end of s_file.
    *--Internal tables
    data: it_file type s_file occurs 0 with header line.
    *-- Selection screen
    selection-screen: begin of block b1 with frame title text-001.
    parameter: p_file type rlgrap-filename default 'C:/customer.txt'
    obligatory.
    selection-screen: end of block b1.
    *-- At selection screen
    at selection-screen on value-request for p_file.
    perform file_help using p_file.
    *-- Process File
    start-of-selection.
      perform upload_file using p_file.
    *-- write File data to o/p
    end-of-selection.
      perform write_data.
    *&      Form  file_help
    form file_help  using    p_p_file.
      data: l_filepath type ibipparms-path.
      call function 'F4_FILENAME'
    EXPORTING
      PROGRAM_NAME        = SYST-CPROG
      DYNPRO_NUMBER       = SYST-DYNNR
      FIELD_NAME          = ' '
       importing
         file_name           = l_filepath
      p_p_file = l_filepath.
    endform.                    " file_help
    *&      Form  upload_file
    form upload_file  using    p_p_file.
      call function 'WS_UPLOAD'
       exporting
         filename                      = p_p_file
         filetype                      = 'DAT'
    IMPORTING
      FILELENGTH                    =
        tables
          data_tab                      = it_file
       exceptions
         conversion_error              = 1
         file_open_error               = 2
         file_read_error               = 3
         invalid_type                  = 4
         no_batch                      = 5
         unknown_error                 = 6
         invalid_table_width           = 7
         gui_refuse_filetransfer       = 8
         customer_error                = 9
         no_authority                  = 10
         others                        = 11
      if sy-subrc <> 0.
        message i001.
      endif.
    endform.                    " upload_file
    *&      Form  write_data
    form write_data .
      loop at it_file.
        write:/ it_file-customer, it_file-country, it_file-name,
                it_file-region.
      endloop.
      endform.
    regards,
    keerthi.

  • How to upload file in a server

    Hi,
    How to upload file to server through reporting. Plz guide me and what would be the probable code.
    Thanks

    Hi,
    Try this Report Program.
    *& Report  ZUPLOADTAB                                                  *
    *& Example of Uploading tab delimited file                             *
    REPORT  zuploadtab                    .
    PARAMETERS: p_infile  LIKE rlgrap-filename
                            OBLIGATORY DEFAULT  '/usr/sap/'..
    DATA: ld_file LIKE rlgrap-filename.
    *Internal tabe to store upload data
    TYPES: BEGIN OF t_record,
        name1 like pa0002-VORNA,
        name2 like pa0002-name2,
        age   type i,
        END OF t_record.
    DATA: it_record TYPE STANDARD TABLE OF t_record INITIAL SIZE 0,
          wa_record TYPE t_record.
    *Text version of data table
    TYPES: begin of t_uploadtxt,
      name1(10) type c,
      name2(15) type c,
      age(5)  type c,
    end of t_uploadtxt.
    DATA: wa_uploadtxt TYPE t_uploadtxt.
    *String value to data in initially.
    DATA: wa_string(255) type c.
    constants: con_tab TYPE x VALUE '09'.
    *If you have Unicode check active in program attributes then you will
    *need to declare constants as follows:
    *class cl_abap_char_utilities definition load.
    *constants:
       con_tab  type c value cl_abap_char_utilities=>HORIZONTAL_TAB.
    *START-OF-SELECTION
    START-OF-SELECTION.
    ld_file = p_infile.
    OPEN DATASET ld_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    IF sy-subrc NE 0.
    ELSE.
      DO.
        CLEAR: wa_string, wa_uploadtxt.
        READ DATASET ld_file INTO wa_string.
        IF sy-subrc NE 0.
          EXIT.
        ELSE.
          SPLIT wa_string AT con_tab INTO wa_uploadtxt-name1
                                          wa_uploadtxt-name2
                                          wa_uploadtxt-age.
          MOVE-CORRESPONDING wa_uploadtxt TO wa_upload.
          APPEND wa_upload TO it_record.
        ENDIF.
      ENDDO.
      CLOSE DATASET ld_file.
    ENDIF.
    *END-OF-SELECTION
    END-OF-SELECTION.
    *!! Text data is now contained within the internal table IT_RECORD
    Display report data for illustration purposes
      loop at it_record into wa_record.
        write:/     sy-vline,
               (10) wa_record-name1, sy-vline,
               (10) wa_record-name2, sy-vline,
               (10) wa_record-age, sy-vline.
      endloop.
    Regards,
    Padmam.

  • How to upload file in webdynpro abap alv

    Hello Friends,
    how to upload file in webdynpro abap alv
    Regards
    Narendra
    Moderator message: please search for available information, post in correct "Web Dynpro ABAP" forum if still required.
    Edited by: Thomas Zloch on Jun 6, 2011 11:55 AM

    Hi Narendra,
    You ahve to search before posting. This discussed many times.
    You need to use file upload ui element to upload data. and display in alv.
    Please go thorugh this..
    http://wiki.sdn.sap.com/wiki/display/WDABAP/UploadandDownloadfilesinWebdynproABAP
    Re: Upload .xls file in WDABAP
    http://forums.sdn.sap.com/click.jspa?searchID=72307893&messageID=5425671
    Cheers,
    Kris.

  • How to upload files to dashboard obiee 11g

    hi,
    can anyone explain how to upload files to obiee dashboard.
    thanks in advance..

    refer this link .
    http://total-bi.com/2011/02/external-files-obiee-dashboard/

  • How do I set up my iWeb site so customers can pay by credit card?

    How do I set up my iWeb site so customers can pay by credit card?

    The payment can be handled by PayPal, Google Checkout etc. Button codes are put on the sales page and you can hook up with any type of shopping cart.
    This, and the following two pages, show an example of a website sales page, paypal and digital delivery via a shopping cart...
    http://www.iwebformusicians.com/Internet-Music-Sell-Distribute/Website-Buy-Page. html
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • How can I still edit my iWeb site on new iMac

    My mid 2007 24" iMac which has served me well has memory problems. I now work with much larger projects ( Logic Studio + video ) than earlier, and have to continually keep clearing the memory as I work. I have the maximum  4 GB RAM  ).
    This is halting progress so seriously that I'm considering changing it for a new iMac .... 27".
    My question is: How can I still edit my iWeb site on a new iMac, when iLife is no longer included, and so presumably OS 10.7 doesn't support iWeb ?
    Will be grateful for insights.
    Thanks,
    SeaDream.

    Well thanks. Sounds so complicated, though. Would another option be to backup my present Mac HD ( with Snow Leopard ) to an external HD and simply edit iWeb from there ?
    As long as I also backed up this external HD, would this be a possibility ?

  • How do I get my Old iWeb Sites off my External HD (1 Domain file) and onto my new internal HD?

    I justrecently had to replace my internal HD on my iMac. Before doing it, I backed up my 2 iWeb Sites (the Domain File) onto my external HD.
    Now I have a new Internal HD on my iMac.
    When I open my domain file located on my external HD, iWeb opens. Now I'd like to save the file back onto my internal HD.
    How do I save my 2 web sites that I now see on the left back onto my internal HD. (When I click on "File", "Save", it just saves it again on the external HD, because it's reading the file from the external HD?)
    Thanks....
    Brian

    You need to copy the domain.sites file from the external hard drive into your Users/Home/Library/Application Support/iWeb folder on the new hard drive. If there is no iWeb folder in the Applicaiton Support folder create one.
    Be sure it's your home library that you're working in.
    Happy Holidays

  • How can I transfer JUST ONE IWeb site to another computer?

    I am new to making IWeb sites and am now making them for
    other people. I have about 10 sites in my IWeb folder and need to
    be able to give a person's site to them.
    I need to be able to transfer JUST ONE site to another computer.
    Right now, I am only able to transfer ALL the sites I have made to
    another mac and then, it wipes out all their sites! How can I prevent
    the ultimate wipe out of all their iweb sites yet give them JUST ONE
    of mine?
    thank you in advance,
    Beth http://www.yourzensite.com

    First, read Wyodor's post about changing the publishing settings HERE.
    You can create the extra folders in Home Folder/Library/Application Support/iWeb or, as I do, in a folder named iWeb in the Home folder.
    Create a folder for each website, give it a suitable name and paste the Domain.sites2 file with all the websites into each.
    Open each one in turn, double click the Domain.sites2 file to launch it in iWeb, delete all the sites except the one whose name is the same as the folder name, save and quit.
    Now you can launch any site individually in iWeb and sent a copy of the appropriate folder to the client.

  • How can outside users access my iWeb sites shared via Web Sharing

    Since the coming demise of mobileme/idisk I have decided to publish all of my websites locally (created with iWeb) and share them by the Web Sharing feature in OS X. Everything works perfectly from any computer or device that is on my home network but once I am outside my network I cannot access any of my website nor can any family members. I have an airport network at home using an airport extreme and numerous computers and devices (ipods, ipad, etc) on the network. All can access from within the network but not from outside.  What can I do to fix this?
    I don't want to use a commercial service since my sites are large.  Tried Dropbox and it was too cumbersome.
    Thanks,
    Chris
    Web Server: iMac running OS 10.7.3 with Web Sharing on using the Sites folder inside my user folder

    Here is some info on hosting your website yourself:
    _WWW FAQs: How do I host a real domain name at home?_
    _How do I host my own website at home?_
    _Should I host my own web server?_ - This one describes the pitfalls of hosting yourself.
    I agree with Roddy. For about $3.95 per month you can get a fuil service host complete with 24/7 ear-to-ear customer support and all the bells and whistles at HostExcellence.com. 
    This tutorial descrtibes how it works so well with iWeb: iW16 - Using HostExcellence.com with iWeb as does this website: Using HostExcellence - iWebFAQ.org
    Other info can be found here: Life After MobileMe
    OT

  • How do I get my old iweb sites into the new iweb 08 after upgrading?

    I upgraded and now the new iweb 08 does not see all my old web site pages. How do Igetnthem into the new application?

    I had a similar issure after buying a new iMac and trying to get my iweb sites onto the new computer. I called Apple tech support and they told me to copy the file "domain.site" form the user/library/application support/iweb folder from my old imac into the iweb folder located in the same directory on my new computer. Once it is copied to the new location, double click on the "domain.site" file and it should open in the new iweb program. They told me to check all the pages to make sure it works OK in the program. My problem is that the new iweb program crashed everytime I double click on the "domain" file. Hope this helps.

  • HT4898 how do i back up my iWeb site to my mac before the MMe Termination in June??

    I have an iMac & iPhone 4s.
    I am on iCloud, finally. sheesh
    I have a Mobile Me iWeb site blog that I want to keep after June 2012 and publish to a book about a personal story.
    How do I save the iWeb site to my computer or is it saved on my external Iomega 2T drive if I am using Time Machine?
    THEN, how do I upload it to another website/blog host? (who is the best for video/photos, since I am loosing GALLERY!!??)
    What blog site can I find that will allow me to print my story from a blog? (are there any??)
    What blog site host APP will allow me to upload my blog posts to my blog site from my iPhone 4s? (or does this exist?)
    <breathe>!!
    thank you for any input!!
    Kentucky Mom

    See: http://support.apple.com/kb/HT4686
    Wordpress is probably the best, most popular blogging software. http://wordpress.org
    To convert iWeb to Wordpress see: http://www.ragesw.com/products/iweb-to-wordpress.html

Maybe you are looking for