Anyone Using iWeb for Other LANGUAGE content?

Hi,
Do any iWeb user create their website with other language such as Chinese,Japanese,Korean...??

Hi Tom,
Thanks for the kindness!
OK.I've create some entries of blog and name it with English and Chinese..while click on it when published it shown at the URL as www.xxx.com/blog/iloveuxxxx(with chinese words)...
When i try to email the similiar address above to others...the link will not complete because of the Chinese words...means,the link will only highlight as www.xxx.com/blog/iloveu and the xxx(chinese words) can't be highlighting...at last,friends unable to log on the full address...
Because of that issue..i've decided to changed the entries' title to English Only...now i publishing the iWeb and visit my website after published and click on the entries of blog as i said above..and the URL shown the same address as before i changed...however i publish and even publish all to MME..i doesn't work...
Do anyone know what's happen to the issue above?shall i delete the chinese words in every html of the entries' blog?
Thanks and Appreciate!!

Similar Messages

  • I am running 10.6.8 and using iweb for my web site. After several SEO analysis they all indicate I need H1-6 header tags. After looking at the source code I see there are none in iweb. Is it necessary to add? If so, how do I add H Tags to iweb.

    I am running 10.6.8 and using iweb for my web site. After several SEO analysis they all indicate I need H1-6 header tags. After looking at the source code I see there are none in iweb. Are they necessary to add?  Why would one add these tags and how do I add H Tags to iweb? And are there examples to look at? I am slowly learning about simple web design and assumed that iweb was stand alone without having to write code. Is this one of the reasons iweb is no longer supported? Thanks for looking at this!

    A simple text page like this:
    Heading
        sub heading
              text paragraph ....
    Is traditionally represented by html tags like:
    <h1>Heading</h1>
         <h2>sub heading</h2>
              <p>text paragraph ... </p>
    I would guess that the use of h1-h6 tags helps search engines to understand the structure of a page as the tags imply a certain structure.
    This can be compared to more generic tags like <div> that could represent any kind of content - and may be what iWeb uses (you'll have to check yourself).
    I would generally recommend that you use some kind of up to date blog/site building tool, perhaps Wordpress or Squarespace (I haven't used either one myself) that support current web technologies - this should reduce your SEO issues and make it easier to properly support mobile/tablet users.

  • Problem in sending the smartform as email for other language except english

    Hi Experts,
    I could not send the smartform as an attachment for other languages, but where as i could send it in english.
    The program is working fine with print priview but not when sending the SF as an attachment
    (in other languages except english).
    Please do find the below code which i used to send the smartform as an attachment.
    Please let me know if there is any mistake in the code.
        wa_ctrlop-LANGU = nast-spras.
        wa_ctrlop-getotf = 'X'.
        wa_ctrlop-no_dialog = 'X'.
        wa_compop-tdnoprev = 'X'.
        CALL FUNCTION lf_fm_name                  "'/1BCDWB/SF00000197'
          EXPORTING
            control_parameters = wa_ctrlop
            output_options     = wa_compop
            user_settings      = 'X'
            is_ekko            = l_doc-xekko
            is_pekko           = l_doc-xpekko
            is_nast            = l_nast
            iv_from_mem        = l_from_memory
            iv_druvo           = iv_druvo
            iv_xfz             = iv_xfz
          IMPORTING
            job_output_info    = wa_return
          TABLES
            it_ekpo            = l_doc-xekpo[]
            it_ekpa            = l_doc-xekpa[]
            it_pekpo           = l_doc-xpekpo[]
            it_eket            = l_doc-xeket[]
            it_tkomv           = l_doc-xtkomv[]
            it_ekkn            = l_doc-xekkn[]
            it_ekek            = l_doc-xekek[]
            it_komk            = l_xkomk[]
          EXCEPTIONS
            formatting_error   = 1
            internal_error     = 2
            send_error         = 3
            user_canceled      = 4
            OTHERS             = 5.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    *Convert the data from OTF to PDF format
        it_otf[] = wa_return-otfdata[].
        CALL FUNCTION 'CONVERT_OTF'
          EXPORTING
            format                = 'PDF'
            max_linewidth         = 132
          IMPORTING
            bin_filesize          = l_len_in
            bin_file              = lp_xcontent
          TABLES
            otf                   = it_otf
            lines                 = it_tline
          EXCEPTIONS
            err_max_linewidth     = 1
            err_format            = 2
            err_conv_not_possible = 3
            OTHERS                = 4.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        TRY.
      ---------- create persistent send request ----------------------
            send_request = cl_bcs=>create_persistent( ).
            len = XSTRLEN( lp_xcontent ).
    transform to solix tab
            lt_solix =
              cl_document_bcs=>xstring_to_solix(
                ip_xstring = lp_xcontent ).
    Create Body to the E-mail.
            APPEND Text-005 TO l_text.
    Attachment Name
            l_ponumber = text-004.
            CONCATENATE l_ponumber l_doc-xekko-ebeln INTO l_ponumber.
    Subject for the E-Mail.
            l_subject = text-001.
            CONCATENATE l_subject l_doc-xekko-ebeln INTO l_subject.
    *create document E-Mail.
    *TRY.
    CALL METHOD cl_document_bcs=>create_document
      EXPORTING
        i_type        = 'RAW'
        i_subject     = l_subject
        i_length      = '13'
        i_language    = nast-spras
       i_importance  =
       i_sensitivity =
        i_text        = l_text
       i_hex         =
       i_header      =
       i_sender      =
      receiving
        RESULT        = l_email_object
    CATCH cx_document_bcs .
    *ENDTRY.
           CALL METHOD cl_document_bcs=>create_document
             EXPORTING
               i_type    = 'RAW'
               i_subject = l_subject
               i_length  = '13'
               i_text    = l_text
             RECEIVING
               result    = l_email_object.
    *Create PDF Document
            bcs_doc =  cl_document_bcs=>create_document(
                                            i_type     = 'PDF'
                                            i_subject  = l_ponumber
                                            i_length   = len
                                            i_language = nast-spras
                                            i_hex     = lt_solix
    *Type casting
            obj_pdf_file ?= bcs_doc.
    Add PDF document as an attachment
            CALL METHOD l_email_object->add_document_as_attachment
              EXPORTING
                im_document = obj_pdf_file.

    hi,
    i tried with ur problem.but i am able send mail in other languages also.actaullly i wrote a msg whether the mail has been sent or not.i got success message. i am placing my code here please go thorugh it,and do relavant modifications.
    *& Report  ZPPS_SMARTFORM_TO_PDF
    REPORT  ZPPS_SMARTFORM_TO_PDF.
    PARAMETER: p_date LIKE sy-datum.
    PARAMETER: p_rea TYPE char255.
    DATA: t_otfdata TYPE ssfcrescl,
          t_lines LIKE tline OCCURS 0 WITH HEADER LINE,
          t_otf TYPE itcoo OCCURS 0 WITH HEADER LINE,
          t_RECORD LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
    Objects to send mail.
    DATA:T_OBJPACK LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE,
         T_OBJTXT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
         T_OBJBIN LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
         T_RECLIST LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE.
    DATA: w_filesize TYPE i,
          w_bin_filesize TYPE i,
          wa_ctrlop TYPE ssfctrlop,
          wa_outopt TYPE ssfcompop,
          WA_BUFFER TYPE STRING,          "To convert from 132 to 255
          WA_OBJHEAD TYPE SOLI_TAB,
          WA_DOC_CHNG TYPE SODOCCHGI1,
          W_DATA TYPE SODOCCHGI1.
    DATA: form_name TYPE rs38l_fnam,
          V_LINES_TXT TYPE I,
          V_LINES_BIN TYPE I,
          nast-spras type sy-langu value 'DE'.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        FORMNAME                 = 'ZSR_DEMO1'
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
    IMPORTING
       FM_NAME                  = form_name
    EXCEPTIONS
       NO_FORM                  = 1
       NO_FUNCTION_MODULE       = 2
       OTHERS                   = 3
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    wa_ctrlop-LANGU = nast-spras.
    wa_ctrlop-getotf = 'X'.
    wa_ctrlop-no_dialog = 'X'.
    wa_outopt-tdnoprev = 'X'.
    CALL FUNCTION form_name
      EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
       CONTROL_PARAMETERS         = wa_ctrlop
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
       OUTPUT_OPTIONS             = wa_outopt
       USER_SETTINGS              = 'X'
        MYDATE                     = p_date
        REASON                     = p_rea
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
       JOB_OUTPUT_INFO            = t_otfdata
      JOB_OUTPUT_OPTIONS         =
    EXCEPTIONS
       FORMATTING_ERROR           = 1
       INTERNAL_ERROR             = 2
       SEND_ERROR                 = 3
       USER_CANCELED              = 4
       OTHERS                     = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    t_otf[] = t_otfdata-otfdata[].
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
       FORMAT                      = 'PDF'
       MAX_LINEWIDTH               = 132
      ARCHIVE_INDEX               = ' '
      COPYNUMBER                  = 0
      ASCII_BIDI_VIS2LOG          = ' '
      PDF_DELETE_OTFTAB           = ' '
    IMPORTING
       BIN_FILESIZE                = w_bin_filesize
      BIN_FILE                    =
      TABLES
        OTF                         = t_otf
        LINES                       = t_lines
    EXCEPTIONS
       ERR_MAX_LINEWIDTH           = 1
       ERR_FORMAT                  = 2
       ERR_CONV_NOT_POSSIBLE       = 3
       ERR_BAD_OTF                 = 4
       OTHERS                      = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    loop at t_lines.
    TRANSLATE t_lines USING '~'.
      CONCATENATE WA_BUFFER T_LINES INTO WA_BUFFER.
    ENDLOOP.
    TRANSLATE WA_BUFFER USING '~'.
    DO.
      t_RECORD = WA_BUFFER.
      APPEND t_RECORD.
      SHIFT WA_BUFFER LEFT BY 255 PLACES.
      IF WA_BUFFER IS INITIAL.
        EXIT.
      ENDIF.
    ENDDO.
    Attachment
    REFRESH: T_RECLIST,
    T_OBJTXT,
    T_OBJBIN,
    T_OBJPACK.
    CLEAR WA_OBJHEAD.
    T_OBJBIN[] = T_RECORD[].
    Create Message Body Title and Description
    T_OBJTXT = 'test with pdf-Attachment!'.
    APPEND T_OBJTXT.
    DESCRIBE TABLE T_OBJTXT LINES V_LINES_TXT.
    READ TABLE T_OBJTXT INDEX V_LINES_TXT.
    WA_DOC_CHNG-OBJ_NAME = 'smartform'.
    WA_DOC_CHNG-EXPIRY_DAT = SY-DATUM + 10.
    WA_DOC_CHNG-OBJ_DESCR = 'smartform'.
    WA_DOC_CHNG-SENSITIVTY = 'F'.
    WA_DOC_CHNG-DOC_SIZE = V_LINES_TXT * 255.
    Main Text
    CLEAR T_OBJPACK-TRANSF_BIN.
    T_OBJPACK-HEAD_START = 1.
    T_OBJPACK-HEAD_NUM = 0.
    T_OBJPACK-BODY_START = 1.
    T_OBJPACK-BODY_NUM = V_LINES_TXT.
    T_OBJPACK-DOC_TYPE = 'RAW'.
    APPEND T_OBJPACK.
    Attachment (pdf-Attachment)
    T_OBJPACK-TRANSF_BIN = 'X'.
    T_OBJPACK-HEAD_START = 1.
    T_OBJPACK-HEAD_NUM = 0.
    T_OBJPACK-BODY_START = 1.
    DESCRIBE TABLE T_OBJBIN LINES V_LINES_BIN.
    READ TABLE T_OBJBIN INDEX V_LINES_BIN.
    T_OBJPACK-DOC_SIZE = V_LINES_BIN * 255 .
    T_OBJPACK-BODY_NUM = V_LINES_BIN.
    T_OBJPACK-DOC_TYPE = 'PDF'.
    T_OBJPACK-OBJ_NAME = 'smart'.
    T_OBJPACK-OBJ_DESCR = 'test'.
    APPEND T_OBJPACK.
    CLEAR T_RECLIST.
    T_RECLIST-RECEIVER = 'MAIL-ID'.
    T_RECLIST-REC_TYPE = 'U'.
    APPEND T_RECLIST.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        DOCUMENT_DATA              = WA_DOC_CHNG
        PUT_IN_OUTBOX              = 'X'
        COMMIT_WORK                = 'X'
      TABLES
        PACKING_LIST               = T_OBJPACK
        OBJECT_HEADER              = WA_OBJHEAD
        CONTENTS_BIN               = T_OBJBIN
        CONTENTS_TXT               = T_OBJTXT
        RECEIVERS                  = T_RECLIST
      EXCEPTIONS
        TOO_MANY_RECEIVERS         = 1
        DOCUMENT_NOT_SENT          = 2
        DOCUMENT_TYPE_NOT_EXIST    = 3
        OPERATION_NO_AUTHORIZATION = 4
        PARAMETER_ERROR            = 5
        X_ERROR                    = 6
        ENQUEUE_ERROR              = 7
        OTHERS                     = 8.
    IF SY-SUBRC <> 0.
      WRITE:/ 'Error When Sending the File', SY-SUBRC.
    ELSE.
      WRITE:/ 'Mail sent'.
    ENDIF.
    and i thought of one more soluyion u can write
    wa_ctrlop-langu = T002-spras. i think it will also help for u.
    revert back if any questions.
    please reward me if helpful.
    gupta.pullipudi

  • Using iWeb on other servers than dot MAC?

    Can people confirm that one can use iWeb with other servers than Apple's dot Mac site? The fine print says: *iWeb publishing requires Internet and webserver access (.Mac recommended). So from that I guess it is feasible but is it easy to set up?
    Thanks
    Rudy

    After the sales rep at the Apple store confirmed vehemently that I would lose no functionality publishing to my own server, I was disappointed to discover this was not the case.
    I wanted to use my own webserver, since there is a perfectly capable apache server already running on my iMac. I do understand that Apple wants to sell their dotmac product, but they have stranded too many users with their approach on iWeb.
    I upgraded to iLife 06 specifically for iWeb, and I feel cheated by the withdrawal of functionality unless I buy their dotmac product.

  • Dictionaries for other languages?

    I have found only American English dictionary in my OS. I would like to add dictionaries for other languages (not translating dictionaries). Does anyone know where I can find more?
    Thanks.

    I have found only American English dictionary in my OS.
    For spell checking, 10.4 already includes dictionaries for Australian, British, and Canadian English, German, Spanish, French, Italian, Dutch, Portuguese, and Swedish.
    If you are talking about Dictionary.app, it's possible to add dictionaries if you upgrade to 10.5:
    http://m10lmac.blogspot.com/2008/03/more-dictionaries-for-leopards.html

  • Can I use iWeb for my own domain without .mac

    I want to use iWeb for creating a simple website. But how can I upload this website to my own domain? Do I need another program. I myself use Dreamweaver. Can I copy the website made in iWeb to dreamweaver? Or... Who can help me out!!!!
    margriet

    You publish to a folder and use an ftp program like Cyberduck, Fetch, or Transmit to upload. I recommend you not use Dreamweaver. Some tips:
    http://homepage.mac.com/thgewecke/iwebserver.html

  • Anyone using PDDocExportUserProperties for exporting PDF to XML

    Hi,
    Anyone using PDDocExportUserProperties for exporting PDF to XML. I am using Adobe PDFL 9.0 to do the same. However, do not find any sample programs or tutorials.
    Please anyone have any samples, do provide.
    -Abhi

    > PDDocExportUserProperties
    Where did you find this method? It's not listed in the PDFL API Reference for 8.1 or 9.

  • Use drive for other things

    If I use an external hard drive for time machine, can I also use it for other things? I ask because I have a 500gb internal, and I'm debating on the 500 lacie or 1000 lacie. Obviously I only need the 500 for time machine, but I'm thinking additional space could be useful now that I have a HD video camera. Granted, I dont shoot a lot of movies, but HD does take up some storage. Any advice?

    Before using the HDD for TM backups, create another partition for your other storage needs. Use the 1st partition for TM backups in case you need to expand into the 2nd partition. The TM partition should be 2-3X the contents you are backing up. TM is NOT a clone, therefore the size of the backup will grow.

  • Images for other languages

    Hi,
    are the gif's available for other languages? I mean I have now english installed and this will give for the GO button a image on the button named go.gif. Is the go.gif also available in other languages or should I change the gif file myself?
    Thanks
    Herald ten Dam

    There are a number of so-called translation memory tools that can translate MIF files. There's a Wikipedia article on translation memory tools: http://en.wikipedia.org/wiki/Translation_memory
    We use Star Transit, but SDL Trados can do the job as well and there are a number of other tools. These tools separate text from formatted. Then the text is segemented. This allows you to reuse previous translations when the source documents is modified. Only new and modified segements will have to be translated then. These tools are very useful, but most of them are very expensive. A pretty new tool which is more affordable is memoQ (which I have never used myself). It is available from http://en.kilgray.com/.
    As for screenshots, I think the most important thing is to make sure that they are imported by reference.
    HTH
    Susanne

  • Have anyone used IDOCs for FB01 posting ?

    Have anyone used IDOCs for FB01 posting with posting keys  ? If so please help me with the code.
    I am using posting keys 15 for the first line item to Customer account(Credit) and posting keys 40 for the second line item (Debit)

    DID you find in which User exit you are going to Code? Then we can ref old posts.
    then you will get the code. not same belongs to FB01, for othre
    Regards,
    anjireddi

  • Specifying alphabetic sort order for other languages.

    The alphabetic sort order differs slightly for other languages then the English one. I rewrite the alphabetics in the special text flow of the Reference Page of the index file, regenerate the index file, but the result is wrong. The special Group Title characters for greek, hungarian, czech, russian etc. languages are combined among latin Group Title characters.
    We work in FM 8 to create 3000 pages technical documentation in 14 languages. The output will be pdf file and help system. Our main problem now the index Group Titles sort order. Could you help me to solve this problem?
    Thank you so much
    Eva

    Michael,
    Thank you so much for your answer. It works great. I have a promlem only one letter, which is in the Czech alphabetics: "Ch". This letter would be after the "H". I have edited the sort order like this:
    Symbols[\ ];Numerics[0];A;B;C;Č;D;E;F;G;H;Chch;I;J;K;L;M;N;O;P;Q;R;Ř;S;Š;T;U;Ú;V;W;X;Y;Z 
    <$symbols><$numerics>Aa Bb Cc *Čč* Dd Ee Ff Gg Hh Chch Ii Jj Kk Ll Mm Nn Oo Pp Qq Rr Řř Ss Šš Tt Uu Úú Vv Ww Xx Zz
    The result in the generated index is, that the index entries beginning with Ch comes on below "C" and the GroupTitle "Ch" is disappearing. Take a look at the result in the generated index file, what I am talking about:

  • Command button opens mission control, so I can't use it for other shortcuts

    I have only had my macbook air for a few weeks, and I think I may have fiddled with settings before I had any clue what I was doing, as now every time I press the command key, it opens mission control, and I can't use command for other shortcuts... What have I done wrong and how do I undo it??? Help much appreciated!

    I am having this issue, too, and Keyboard Shortcuts doesn't fix it, as I have not assigned Command to anything. It just states at the bottom "for additional choices press Shift, Control, Option, or Command," but doesn't seem to allow me to change these. Do you know of a way?

  • All my contacts use iPhones but one doesn't use iMessage because it uses data. I want to use iMessage for other contacts but i have to turn off for just one contact. Can i turn iMessage off for just one contact?

    All my contacts use iPhones but one doesn't use iMessage because it uses data. I want to use iMessage for other contacts but i have to turn off for just one contact. Can I turn iMessage off for just one contact?

    You need to delete here conversation and start another one using her phone number and not her Apple ID. You cannot delete iMessage, you can disable it. If the Apple server still sees her iPod with iMessage on and using her Apple ID, then it will continue to appear to your phone that she has iMessage. She needs to take a look at this support document about permanently disabling iMessage for her account. Can’t receive text messages on a non-Apple phone

  • Using iweb for school website

    Hi
    This may have been answered before but I cant find it in the discussion. I want to set up a website for a very small school (24 students)using iweb. Do I have to use Apple for the ISP and if so is it the same rate as for a private individual?
    Anyone out there done the same thing? I have been using the moogle style and they are unbelievably complicated for someone like me! Iweb seems to solve those tech problems and I would love to use it.
    Thanks

    It is extremely easy to produce a site like this within iWeb. Just start with a white template so that you can design is yourself as they have done.
    To get the colours, what they have done and you can do is create a text box and then use either colour fill or gradient fill to achieve the contrast in colours. They have then placed photos and their logos over this. You could even achieve the same effect with a shape too with a rounded or a square edge that is colour or gradient filled.
    For the navigation bars, all you need do is to go to the Inspector and hide the page template nav bar and create your own as they have done. They have probably created theirs by using either shapes or text boxes that are again colour/gradient filled. You can then enhance the look by using picture frames to make them stand out more. Don't forget to hyperlink them though. The other nav bar is just done using different text styles and colours.
    It is really as simple as that and to make it even more effective you can change the colour of the page background and also the browser background for even more effect. Just open Inspector and go to Page Layout where all these changes can be made.

  • Using iWeb for non dot-mac sites

    Hi all,
    I own a number of domains that I'd like to use iWeb on. Am I able to utilize iWeb for a non .mac domain, or do I need to use something like Dreamweaver?
    Many thanks.
    -Hugh

    No, in fact I have a sneaky suspicion that not using dot-mac sites will eliminate a lot of problems other people have. You will also lose some of the effects like the nicer slideshow etc.
    I have never used dot-mac and never encountered any of the uploading/publishing problems that are so often mentioned on this forum.
    Here is what you do:
    After editing your website you choose :Publish to a folder.
    This lets you choose a location on your hardrive into which all the necessary files will be compiled/rendered. In this folder you will find an htlm file plus a folder with the necessary files for easch of your pages.. This publishing is done lightning fasy pecause it is done locallly and not trhough your internetconnection like when you published to dot-mac. Also post-editing is easy and hassle free.
    For editing and uploading my website I use "Transmit" but there are lots of other applications like "Fetch"
    What to upload?
    Well I believe the jury is still out on this.
    I just upload the contents of the published folder and that works for me. Other publish the whole folder plus the dummy "Index file" that is generated outside that folder. You will heve to find out for your self.
    If any changes or editing has to be done afterwards, I republish and then just upload the altered files.
    There is one more thing I do, and I believe others don't. I keep my domain file in the same folder where I keep the Published folder.
    E.g. there is a festival website, so I have a folder "Festival" in which I keep the domains file, and the published "Festival website" folder.
    This way it is easy to keep various different websites.
    When you want to edit one of them, go to that folder and double click the domains file, this will start iWeb with the right website for you to edit.
    Really very easy.
    Harry

Maybe you are looking for

  • Window looses focus seemingly at random

    This is very frustrating.  Whenever I am working in any application, the active window auto-magically looses focus.  I don't have a lot running by way of background processes and the computer is fairly new and running all latest software.  I can't fi

  • Default view in album app.

    The default view in the album app should be folder view.. Whenever we open the album it should show the folders containing pics and videos not all the pics videos in the way it currently shows that creates a total mess.. And I was not able to use 3rd

  • Blackberry error: bb10-0015 Fix anyone?

    Is there anyone here whoe can help me with this problems? I have in my possession, a q10 and a z10. The q10 has on its screen the symbol asking that the phone be connected to a computer. The z10 displays: http://www.bberror.com/bb10-0015 which says t

  • Bulk insert for two tables

    Hi All, I have a cursor in PL/SQL block and it selects the data for about 100 columns, my requirement is to insert the data of about 60 columns into one table and rest of the columns into another. Please let me know how do I implement the same by usi

  • BLOB data into varchar2

    Hi All, Can someone please help me in converting BLOB data into varchar2 or long . we have function which convert long data and return it has varchar . But has part of Apps upgrade the Column has been converted into blob column. Edited by: user103106