Problems when I upload my Site in my domain

I have done a web site with iWeb08 and I uploaded to my domain. The first page shows three albums.
See this:http://homepage.mac.com/guillermo_alvarez/Sites/Imagen%202.jpg
When open my site the only thing I see is this and no more:
http://homepage.mac.com/guillermo_alvarez/Sites/Imagen%201.jpg
Let´s see. I select Desktop as the first destination when I choose to save this site in a folder from iWeb. What I get is a folder with my name site (GUILLERMO ALVAREZ) and an Index Html. This two items are what I upload to my domain:
Click here:http://homepage.mac.com/guillermo_alvarez/Sites/Imagen%203.jpg
My question is:
What should I do to see my Site correctly?

In your site structure there is a folder called Páginas. It is known that some servers will not recognize folder/page names with accented characters. This may be the problem.
Someone did a utility to deal with such issues, but I don't know how well it works:
http://sschoenb.blogspot.com/2007/08/iweb-and-umlaut-characters.html

Similar Messages

  • When i upload my site via ftp to 3rd party hosting i only get 'index of/' when looking at the webpag

    I have exported my site and even tested on adobe and everything looks ok.  For some reason when I export and uplaod via ftp to my 3rd party hosting and look at the site I just get the index of/  and a list of the pages and directories underneath

    Thanks for that.  Now sorted.  It was a problem on my hosting
    Ian
    cid:[email protected]
    cid:[email protected]<http://twitter.com/dieselthefrog>[cid:[email protected]][cid:[email protected]]<http://www.facebook.com/dieselfrog>[cid:[email protected]][cid:[email protected]]<http://uk.linkedin.com/pub/ian-royle/30/a20/928>
    From: Abhishek Maurya [email protected]
    Sent: 04 July 2012 23:02
    To: Ian
    Subject: when i upload my site via ftp to 3rd party hosting i only get 'index of/' when looking at the webpag
    Re: when i upload my site via ftp to 3rd party hosting i only get 'index of/' when looking at the webpag
    created by Abhishek Maurya<http://forums.adobe.com/people/Abhishek+Maurya> in Help with using Adobe Muse - View the full discussion<http://forums.adobe.com/message/4538835#4538835

  • Problem when I upload to FTP Host from muse

    I am having a problem when I upload to FTP Host from muse, it stops at a random % of the process without any warnings, I have been posting from the same computer to the same ftp address and never had any problem before, please help me if you can.
    Thanks

    Hello,
    Please contact the host and have them reset your FTP permissions. Take a look at this related thread: http://forums.adobe.com/message/5082790#5082790
    Hope this helps.
    Cheers
    Parikshit

  • When i upload my site, it wont show the changes i have made in the browser. How do i upload properly?

    when i upload my site, it wont show the changes i have made in the browser. How do i upload properly?

    Hi Ashley,
    Is it possible that you can share your site url so that I can check that? Also, what are the changes that you are making? Are you hosting the site on business catalyst?
    - Abhishek Maurya

  • Muse uploading multiple sites with same domain?

    It seems that when i upload my site via FTP, if i type the domain without www. and only Http, it is uploading and creating a separate site then when i submit an update with www.
    www.threesistersgarden.org
    http://threesistersgarden.org/
    How can i fix this issue?

    Hi Ho Yin Wong,
    Are you referring to entering the domain name in the 'FTP server' field or the 'Site URL' field?
    - Abhishek Maurya

  • Problem when I upload txt files to the server

    Hi, I have a problem when I try to upload files to the server, and I can't understand the fail.
    My case is:
    I have a jsp page where a from is.
    This form is sended to a servlet that proccess its content and upload the attach file to the server.
    It works correctly (it uploads the files, txt, xls and csv), the problem is when I try to upload a txt file like this, for example:
    Depth     Age
    0     0,1
    2     0,9
    3     2
    5     6
    6     9
    8     12
    34     25
    56     39
    101     40When I verify the uploaded file, this one has a character extra of return of line (a small square). This character prevents me from working then correctly with the file, on having detected a column of more.
    Which can be the problem?
    The code I use to uploaded the file is:
    try
        MyConnection Objconnection = new MyConnection();
        boolean isMultipart = FileUpload.isMultipartContent(req);
        // Create a factory for disk-based file items
        FileItemFactory factory = new DiskFileItemFactory();
         // Create a new file upload handler
        ServletFileUpload upload = new ServletFileUpload(factory);
        // Set overall request size constraint
        upload.setSizeMax(1024*512); //524288 Bytes (512 KB)
         // Parse the request
        List items = upload.parseRequest(req);
        // Process the uploaded items
        Iterator iter = items.iterator();
        String dat = new String();
        String typeFile = new String();
        while (iter.hasNext())
            FileItem item = (FileItem) iter.next();
            if (item.getFieldName().equals("typeFile") )
                typeFile = item.getString();
            if (!item.isFormField())
            String fieldName = item.getFieldName();
            String fileName = item.getName();
            String contentType = item.getContentType();
            boolean isInMemory = item.isInMemory();
            long sizeInBytes = item.getSize();
            int numbers=0;
            for(int i=fileName.length();(i=fileName.lastIndexOf('\\',i-1))>=0;)
                 numbers++;
            String stringFile[] = fileName.split("\\\\");
            HttpSession session = req.getSession(true);
            String loginSesion = (String)session.getAttribute("UserLogin");
            String newUserFolder = loginSesion;
            File createFile = new File("/usr/local/tomcat/webapps/Usuarios/FilesUp/"+newUserFolder);
            if ("AgeModel".equals(typeFile))
                createFile = new File("/usr/local/tomcat/webapps/Usuarios/FilesUp/AgeModels/"+newUserFolder);
            if (!createFile.exists())
                createFile.mkdir();
            fileName = stringFile[numbers];
            File uploadedFile = new File("/usr/local/tomcat/webapps/Usuarios/FilesUp/"+newUserFolder+"/"+fileName);
            if ("AgeModel".equals(typeFile) )
                uploadedFile = new File("/usr/local/tomcat/webapps/Usuarios/FilesUp/AgeModels/"+newUserFolder+"/"+fileName);
            existe = Objconnection.existFile(fileName, typeFile, loginSesion);
            if ( true == existe )
                 exito = false;
            else
                item.write(uploadedFile);
                ....// NOW REGISTER THE FILE IN TH DATA BASE
        } // if (!item.isFormField())
    } // WHILE ( iter.hasNext() )
                catch(Exception e) {
                out.println("Error de Aplicaci�n " + e.getMessage());
                return exito;
    ...THANKS

    Hi,
    Sorry I am aware this question was posted way back, but I am having similar problem and haven't been able to find the fix yet.
    So please let me known if you have got any ideas.
    My problem is same that I have to upload a CSV file from Client Machine (Windows) to Unix Application Server.
    I am using JSP method post and multipart/form-data (as in http://www.roseindia.net/jsp/file_upload/Sinle_upload.xhtml.shtml).
    The file is uploaded fine but the problem is it displays carraige Return (^M) a square boxes on Unix file.
    I can't ask user to convert file to Unox format before uploading. They just convert excel file to CSV and upload.
    Is there any way I can get rid of these characters as I have to use this file further.
    Sorry, I can't use any paid utility or tool for it.
    I would appreciate if you could please help.
    Thanks,
    SW

  • Flash menu bar won't show up when i upload the site to the web

    I've made a flash e bar using Adobe Flash Catalyst and exported it using "deploy to web". I placed the folder in my dreamweaver site and insert->media->swf and choose main.swf. The weird thing is that it works when i press f12. site: http://martin.venaas.org/ptf/character_vulturous.html                                                                                                                                                                                                                                                                                   
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    body {
         background-image: url(bilder/1063-stylized-minecraft-dirt-wallpaper-wallchan.jpg);
         background-repeat: no-repeat;
    </style>
    <script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
    </head>
    <body>
    <table width="1000" align="center" cellpadding="0" cellspacing="5">
      <tr>
        <td height="633" align="left" valign="top"><table width="1000" cellspacing="0" cellpadding="0">
          <tr>
            <td height="50" colspan="4" align="left" valign="top"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="1000" height="50" id="FlashID" title="menu characters">
              <param name="movie" value="../Main.swf" />
              <param name="quality" value="high" />
              <param name="wmode" value="opaque" />
              <param name="swfversion" value="6.0.65.0" />
              <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
              <param name="expressinstall" value="../Scripts/expressInstall.swf" />
              <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
              <!--[if !IE]>-->
              <object type="application/x-shockwave-flash" data="../Main.swf" width="1000" height="50">
                <!--<![endif]-->
                <param name="quality" value="high" />
                <param name="wmode" value="opaque" />
                <param name="swfversion" value="6.0.65.0" />
                <param name="expressinstall" value="../Scripts/expressInstall.swf" />
                <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
                <div>
                  <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
                  <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
                </div>
                <!--[if !IE]>-->
              </object>
              <!--<![endif]-->
            </object></td>
            </tr>
          <tr>
            <td width="400" rowspan="2" align="left" valign="top"><img src="bilder/vulturous_main.jpg" width="400" height="600" alt="vulturous" /></td>
            <td width="362" rowspan="2" align="left" valign="top"> </td>
            <td width="238" height="169" colspan="2" align="left" valign="top"> </td>
          </tr>
          <tr>
            <td height="413" colspan="2" align="left" valign="top"> </td>
          </tr>
        </table></td>
      </tr>
    </table>
    <script type="text/javascript">
    swfobject.registerObject("FlashID");
    </script>
    </body>
    </html>

    I don't see any Flash code in your link.
    You do realize that Flash Menus are not web & user friendly, right?  They are invisible to non-flash supporting devices like iPhones/iPads, language translators, screen readers and search engines. When people without Flash land on your page, what will they do?
    The best advice I can offer is to ditch flash for navigation and use CSS styled text or the Spry Menus that come with DW.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • All of my images display correctly right when I upload my site to my FTP, but a few of them disappear after a few minutes. What could be happening?

    If it helps at all, here is my site: http://www.brigetteidesign.com. The images in question are thumbnails for my portfolio page. What's strange is the images appear correctly on some pages and not others, which use the same master page. Any help is greatly appreciated!

    Yes - there are several missing on that when I look at the site, as well as on my main portfolio page. There should be 12 thumbnails in all. I tested it in Chrome, Firefox and Safari and I get the same problem, and it seems to display correctly when I first upload it to my FTP and then it changes after a period of time. Here are some screen shots of what my document looks like:
    I looked at my File Manager on my website, and the images are still there after they stop displaying on my website, so I don't think it has anything to do with my server.

  • Muse is constantly freezing when I upload a site

    The new version of Muse freezes partway through ftping my files to my non BC site
    Not occassionally but every time
    What the hell is going on? Is this a Miuse bug

    jkijki, you've sent 4 blank replies to this forum thread. I expect they may have been attempts to post screenshots or other attachments? The forum software does not support e-mail attachments. To include an image with a post you have to create the post within the browser UI of the forum.
    Have you try putting the ftpPrefs.xml file in place to turn off FTP Extended Passive Mode (EPSV)? That may, or may not, be the problem, but it's the first thing we should rule out.
    Please download the file http://muse.adobe.com/assets/ftp2014fix.zip, unzip it, and save the contained file ftpPrefs.xml to the following location:
    On Windows: %appdata%\Roaming\Adobe\Adobe Muse CC\2014.1 (You can type this in the Path bar at the top of the Windows Explorer window.)
    On Mac: ~/Library/Preferences/Adobe/Adobe Muse CC/2014.1 (You can type this in the Go To Folder dialog using Shift+Command+G. The leading tilde "~" is required.)
    Muse uses FTP Extended Passive Mode (EPSV). It's the preferred FTP mode for optimal performance, but we're finding some hosting providers have FTP servers configured such that EPSV is not supported or EPSV only works if you're inside the same firewall as the FTP server. The ftpPrefs.xml file above, turns off EPSV mode. So if that is the problem in this case, putting that file in place should enable you to successfully login and upload without errors.

  • Adobe muse , when i upload my site my tablet version gets uploaded and my desktop doesn't?

    when i visit my website that i just uploaded it takes me to the tablet version and i dont even have a tablet version of my website. i want my desktop version to show up when i visit my url and i dont know what im doing wrong!

    I'm having the same problem.  I have a desktop, tablet and phone version. It all uploads just fine on Fire Fox but on Chrome the tablet vesion shows up instead of the desktop.  Did something get mixed up in my muse settings or is it a Chrome problem?  http://faithroanoke.com
    it looks normal if I go to http://faithroanoke.com/index.html

  • UNICODE Problem when Download/Upload from ASC file.

    Due to the Unicode system takes each Chinese character as a byte, the field(10) can take 10 Chinese Characters, not like before only 5 characters allowed.
    The problem is when the data is downloaded to a txt file, the field ,length 10, contained Characters, is displayed 10 Chinese characters(that's 20 bytes in txt file). It causes the displayed field length are changed.
    ex.
    text = '12@@@@@00012345'.
    text = text+0(12) --> display '12@@@@@' the output I actually want.
    text = text+0(12) --> display '12@@@@@00012' Unicode makes this in txt file,
    the Chinese characters cannot display properly, so just assume each '@' as a Chinese character.
    How to make system take the Chinese characters as 2 bytes when download....or any other better idea for this?
    anyone who can solve this, thanks in advance.

    Hi Prashant and Uwe,
    Thanks for your help. I used 'GUI_UPLOAD', but it still doesn't work.
    'Text1' still equal to '12@@@@@00012' , not '12@@@@@'
    My test problem as below:
    data: l_file type string.
            text1(20) type c.
    DATA: BEGIN OF T_FICH OCCURS 0,
             LIGNE(5000),
          END OF T_FICH.
      l_file = P_SOURCE.
      CALL FUNCTION 'GUI_UPLOAD'
           EXPORTING
                FILENAME            = l_file
               FILETYPE            = 'ASC'
               HAS_FIELD_SEPARATOR = 'X'
               Read_By_Line        = 'X'
                CODEPAGE            = '8400'
           TABLES
                DATA_TAB            = T_FICH
           EXCEPTIONS
                OTHERS              = 99.
    LOOP AT T_FICH.
       text1 = T_FICH-LIGNE+0(12).
    ENDLOOP.
    Could you give me some advise about this?

  • Facing problems when trying to access sites

    Hi
    I am able to open the page when I tried in web browser
    but when I am trying to access the site using the below code it is failed
    import java.net.*;
    import java.io.*;
    public class URLParser {
    public static void main(String[] args) throws Exception {
              URL mysite = new URL("https://hostname:9045/maximo/");
    URLConnection yc = mysite.openConnection();
              BufferedReader in = new BufferedReader(
    new InputStreamReader(
    yc.getInputStream()));
              String inputLine;
    while ((inputLine = in.readLine()) != null)
    System.out.println(inputLine);
    in.close();
    error message
    Exception in thread "main" javax.net.ssl.SSLHandshakeException: com.ibm.jsse2.ut
    il.h: PKIX path building failed: java.security.cert.CertPathBuilderException: un
    able to find valid certification path to requested target
    at com.ibm.jsse2.n.a(n.java:39)
    at com.ibm.jsse2.jc.a(jc.java:188)
    at com.ibm.jsse2.db.a(db.java:134)
    at com.ibm.jsse2.db.a(db.java:328)
    at com.ibm.jsse2.eb.a(eb.java:4)
    at com.ibm.jsse2.eb.a(eb.java:287)
    at com.ibm.jsse2.db.m(db.java:208)
    at com.ibm.jsse2.db.a(db.java:259)
    at com.ibm.jsse2.jc.a(jc.java:271)
    at com.ibm.jsse2.jc.g(jc.java:403)
    at com.ibm.jsse2.jc.a(jc.java:21)
    at com.ibm.jsse2.jc.startHandshake(jc.java:228)
    at com.ibm.net.ssl.www2.protocol.https.b.afterConnect(b.java:167)
    at com.ibm.net.ssl.www2.protocol.https.c.connect(c.java:42)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLCon
    nection.java:943)
    at com.ibm.net.ssl.www2.protocol.https.a.getInputStream(a.java:73)
    at URLParser.main(URLParser.java:9)
    Caused by: com.ibm.jsse2.util.h: PKIX path building failed: java.security.cert.C
    ertPathBuilderException: unable to find valid certification path to requested ta
    rget
    at com.ibm.jsse2.util.f.b(f.java:60)
    at com.ibm.jsse2.util.f.b(f.java:81)
    at com.ibm.jsse2.util.e.a(e.java:8)
    at com.ibm.jsse2.yb.checkServerTrusted(yb.java:55)
    at com.ibm.jsse2.hb.checkServerTrusted(hb.java:9)
    at com.ibm.jsse2.eb.a(eb.java:299)
    ... 12 more
    Caused by: java.security.cert.CertPathBuilderException: unable to find valid cer
    tification path to requested target
    at com.ibm.security.cert.PKIXCertPathBuilderImpl.buildCertPath(PKIXCertP
    athBuilderImpl.java:379)
    at com.ibm.security.cert.PKIXCertPathBuilderImpl.engineBuild(PKIXCertPat
    hBuilderImpl.java:195)
    at java.security.cert.CertPathBuilder.build(CertPathBuilder.java:215)
    at com.ibm.jsse2.util.f.b(f.java:62)
    ... 17 more
    Press any key to continue . . .

    chakribobby wrote:
    Caused by: java.security.cert.CertPathBuilderException: unable to find valid cer
    tification path to requested targetThis exception is caused (almost always I believe) by certificates that Java can't validate with someone Java trusts. For example a self-signed certificate. Which is probably what is happening here.

  • Significant problem when importing a new site

    Ok, let me first mention that I'm using DW MX, not a newer iteration. What can I say? I like this version, it works great for my needs, and I don't like the newer ones.
    So, I have all the properly categorized files for my website on my hard drive, and I was going to manually import the site into DW. I've done this before and it worked fine. However, once everything was brought in as a new site and I opened an HTML file to edit some photos/text, I saw that alll my images are broken, all the backgrounds are missing, as well as my image bars, and in some places the text formatting is gone (like a centered heading in bold is now aligned left with </center> next to it (Why am I seeing HTML? I'm in design view!)
    I noticed when I right-clicked on an image and selected "Source File", it's referencing the HTML folders, not the Image folders. I re-linked one image on one of my HTML pages for testing and saved the change, and I then checked the background images on some other HTML pages, and now they all reference that image folder of the page I saved instead of my Backgrounds folder.
    I'm not sure why the images suddenly decided to link to HTML pages. At some point with moving, my transition to different computers, and different versions of DW, my site disappeared from my list of sites in this DW MX. I re-imported it from my C drive and got this. I'm going to have a LOT of work re-linking all my images, bars, backgrounds, and correcting text layout on all my pages if I can't get this fixed. At least the website currently online is unaffected. I'm wondering if I should just download the website that on the remote server somehow into DW. I know it's all properly linked online.
    Anyone have any suggestions?

    When you say "download the intact site first," do you mean from the server? I'm not sure where you're talking about. The intact site exists only on my hard drive, accessed through Windows Explorer. I imported this as a new site into DW. However, I had evidently not linked the images, backgrounds, bars, etc, on the HTML pages. Everything on the server is in one folder - no organization there at all, which is the way it used to be.
    I'm puzzled, however - it's been months since I messed with this site, and I've forgotten a lot of what I did. I must have started on my HD, created and organized all the folders and files to my liking, and saved it. This would have invalidated all my links which I had in place when all the HTML pages were in one huge folder. This is probably why everything is so broken within DW, but why everything still works online - I haven't fooled with anything on the remote server (yet). Even though this isn't the biggest site in the world, considering how much time I have in my schedule, it's still going to take me about two weeks worth of work to fix this.

  • Problem when I upload

    I am not sure if it is user error or what.  I have a file in InDesign CS4 that I have exported into a JPEG.  I then go into CS Review through Adobe.com and use the web based client to upload the JPEG images.  I am able to create the review and start the upload.  It goes all the way through the upload but then get hung in the refresh state.  The little fan icon just goes around and around and nothing more happens.  I am never able to see the JPEG I uploaded.
    The file is 2.70 mb, 2550 x 3300, 8.5"x11" 300 ppi
    I have tried a few other things I readon the forums with no help.  I took out all characters except numbers and letters from the file name.  I also have tried a jpeg from a PDF to minimize the size.
    Any thoughts?
    thanks,
    Shannon

    Now I have tried to upload a PDF, that I created in InDesign, to Acrobat.com with no luck.  Everything looks like it goes very well but I am not able to see the actual images.

  • Uploading iWeb site to personal domain via FTP client (NOT .MAC)

    Hello,
    I want to upload my iweb created website to my personal domain, in other words I do not want my domain to point to my .mac address.
    I am downloading Cyberduck as my FTP client. Will I just send my whole "site" folder to my public folder at my personal domain? Will it be in the right order? How will I update each day? (Can I set up iWeb so that when I click "publish" it will update my personal domain?)
    I was planning on using some wordpress plugins to modify my site. Will this work? I am totally lost, I had no idea I needed so much background info to blog outside of .mac! I guess I just want to design with iweb, and be able to use all the tools of my AN Hosting and wordpress.
    Thanks for your help in advance!

    Will I just send my whole "site" folder to my public folder at my personal domain?
    You send the folder created by iWeb which has the same name as you gave your site inside the iWeb app, plus the index.html file which iWeb created alongside that folder.
    How will I update each day?
    By publishing again to a folder and uploading again via ftp.
    (Can I set up iWeb so that when I click "publish" it will update my personal domain?)
    No. If iWeb could do that you would not need an ftp program to start with.
    I was planning on using some wordpress plugins to modify my site.
    No idea, but generally speaking modifying iWeb to add stuff requires manual editing of the html after publishing and redoing it every time you republish.

Maybe you are looking for

  • Syndication Search Using Remote System

    Is there a way to use the Key Mapping's remote system as part of the search criteria for syndication? I am not referring to the map property that allows you to suppress records that do not have a remote key. For example, only send records when "remot

  • XSLT Multi Mapping

    Hi. Here is my scenario: eGIS -> PI -> SAP Asynchronous web service call to PI, which I'd like to split into one of two calls, either an IDoc or an RFC call to SAP, depending on the value of a field being passed from eGIS. I'd like to do this using X

  • What to Deinterlace

    I'll start with my workflow, Im shooting DVCAM and HDV PAL and using FCP5, once my project is built i send MP4's via email to a website builder, burn DVD's as hard copies and dub the created sequence back to tape for storage or sometimes broadcast. S

  • Install Oracle 10g in Sun Solaris 10 x86_x64

    Hi, We installed Sun Solaris 10 x86_x64 and are trying to install Oracle 10g in that. When check for required packages. SUNWsprox is missing. # ./CheckPackage.sh system SUNWarc Lint Libraries (usr) system SUNWarcr Lint Libraries (root) system SUNWbto

  • Problems with kinect model 1473

    I have a kinect for the xbox 360 but... $ lsusb Bus 001 Device 005: ID 045e:02ae Microsoft Corp. Xbox NUI Camera Bus 001 Device 021: ID 045e:02ad Microsoft Corp. Xbox NUI Audio Bus 001 Device 002: ID 045e:02c2 Microsoft Corp. Kinect for Windows NUI M