Export and download Muse site problem

Hello

I just finished my site in Muse, everything works correctly in the window Business Catalyst, but many will not, as soon as I have the export, load it with Dreamweaver.

I have a few "403 forbidden" with additional error "404 not found" pages, a page appears as if she did not get the CSS... The strange thing is that I deleted this on local and remote servers to make a pure transfer and errors appear again, but on different pages, while those who were not working only not previously are well again!

I really don't understand what's happening, it's as if some files do not download, but I don't have the error messages.

I compared the local and remote files: they are identical.

It is not the first site that I create with Muse and I never encountered this problem before... I've looked through the forum, but have not found an answer... What I'm doing wrong, have I missed something?

Any help would be greatly apreciated.

Thank you!

Hello

Can you publish the site on Business Catalyst as a place to test and see if it looks good? If it seems very well, then the problem may be with the download, host that you upload to. You can try to download directly to the host of Muse to see how it goes? Or you can use an external FTP client like Filezilla once and see if that fixes the problem.

I hope this helps.

See you soon.

Tags: Adobe Muse

Similar Questions

  • DW028 of Error Message When you try to go back and download Muse 2014 (what I knew how to use)

    The latest version of reactive of Muse is a mountain too high to climb.

    I want to go back to what I know - MUSE 2014.

    But when I try to download the previous version, I'm hung upward and an error message:

    ERROR: DW028: InstallOperationsQueue: instruction set is empty

    ERROR: DW028: InstallOperationsQueue: instruction set is empty

    FATAL: DW028: could not open the queue of the operation

    It happens on both my Mac laptops.

    Thank you.

    Hi Jcmanheimer,

    Please remove Muse CC completely from your machine - use of the Adobe Creative Cloud cleaning tool to solve installation problems

    After that install it again thanks to the creative cloud desktop application.

    See, Installation and launch of the errors in the log. Adobe Creative Suite 6, Adobe Creative Suite 5.5, Adobe Creative Suite 5

    If the problem persists, please analyze the log files to find out the root cause of the problem: Troubleshooting Adobe Creative Cloud install problems with log files

    Please write back to us, if it can help.

  • Display downloaded Web site problem

    I'm relatively new to creating websites in general, but nevertheless I am always creating a new site in flash for a restaurant.

    After you download a template and make any necessary changes, I have publish it in a HTML of Adobe Flash CS4 file and go forward from Dreamweaver CS4 to make other changes.

    Happy with my changes, I proceed to upload it to a field.

    The problem is that when displayed in any browser, the locations of the elements of the Web site are not the right places or are totally invisible.

    From now on, I have not a clue as to what is the problem.

    The website can be found here: www.kizpanasian.com

    Here are some pictures of what the site should look like. You can see what it currently appears as the link I provided.

    Should-Menu.png

    Should-Contact.png

    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=big5" />
    <title>Mikado Ryotei</title>
    <script language="JavaScript" type="text/javascript">
    <!--
    //v1.7
    // Flash Player Version Detection
    // Detect Client Browser type
    // Copyright 2005-2008 Adobe Systems Incorporated.  All rights reserved.
    var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
    var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
    function ControlVersion()
    {
     var version;
     var axo;
     var e;
     // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
     try {
      // version will be set for 7.X or greater players
      axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
      version = axo.GetVariable("$version");
     } catch (e) {
     }
     if (!version)
     {
      try {
       // version will be set for 6.X players only
       axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
       
       // installed player is some revision of 6.0
       // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
       // so we have to be careful. 
       
       // default to the first public version
       version = "WIN 6,0,21,0";
       // throws if AllowScripAccess does not exist (introduced in 6.0r47)  
       axo.AllowScriptAccess = "always";
       // safe to call for 6.0r47 or greater
       version = axo.GetVariable("$version");
      } catch (e) {
      }
     }
     if (!version)
     {
      try {
       // version will be set for 4.X or 5.X player
       axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
       version = axo.GetVariable("$version");
      } catch (e) {
      }
     }
     if (!version)
     {
      try {
       // version will be set for 3.X player
       axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
       version = "WIN 3,0,18,0";
      } catch (e) {
      }
     }
     if (!version)
     {
      try {
       // version will be set for 2.X player
       axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
       version = "WIN 2,0,0,11";
      } catch (e) {
       version = -1;
      }
     }
     
     return version;
    }
    // JavaScript helper required to detect Flash Player PlugIn version information
    function GetSwfVer(){
     // NS/Opera version >= 3 check for Flash plugin in plugin array
     var flashVer = -1;
     
     if (navigator.plugins != null && navigator.plugins.length > 0) {
      if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
       var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
       var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
       var descArray = flashDescription.split(" ");
       var tempArrayMajor = descArray[2].split(".");   
       var versionMajor = tempArrayMajor[0];
       var versionMinor = tempArrayMajor[1];
       var versionRevision = descArray[3];
       if (versionRevision == "") {
        versionRevision = descArray[4];
       }
       if (versionRevision[0] == "d") {
        versionRevision = versionRevision.substring(1);
       } else if (versionRevision[0] == "r") {
        versionRevision = versionRevision.substring(1);
        if (versionRevision.indexOf("d") > 0) {
         versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
        }
       }
       var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
      }
     }
     // MSN/WebTV 2.6 supports Flash 4
     else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
     // WebTV 2.5 supports Flash 3
     else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
     // older WebTV supports Flash 2
     else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
     else if ( isIE && isWin && !isOpera ) {
      flashVer = ControlVersion();
     } 
     return flashVer;
    }
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
    {
     versionStr = GetSwfVer();
     if (versionStr == -1 ) {
      return false;
     } else if (versionStr != 0) {
      if(isIE && isWin && !isOpera) {
       // Given "WIN 2,0,0,11"
       tempArray         = versionStr.split(" ");  // ["WIN", "2,0,0,11"]
       tempString        = tempArray[1];   // "2,0,0,11"
       versionArray      = tempString.split(","); // ['2', '0', '0', '11']
      } else {
       versionArray      = versionStr.split(".");
      }
      var versionMajor      = versionArray[0];
      var versionMinor      = versionArray[1];
      var versionRevision   = versionArray[2];
             // is the major.revision >= requested major.revision AND the minor version >= requested minor
      if (versionMajor > parseFloat(reqMajorVer)) {
       return true;
      } else if (versionMajor == parseFloat(reqMajorVer)) {
       if (versionMinor > parseFloat(reqMinorVer))
        return true;
       else if (versionMinor == parseFloat(reqMinorVer)) {
        if (versionRevision >= parseFloat(reqRevision))
         return true;
       }
      }
      return false;
     }
    }
    function AC_AddExtension(src, ext)
    {
      if (src.indexOf('?') != -1)
        return src.replace(/\?/, ext+'?'); 
      else
        return src + ext;
    }
    function AC_Generateobj(objAttrs, params, embedAttrs) 
    { 
      var str = '';
      if (isIE && isWin && !isOpera)
      {
        str += '<object ';
        for (var i in objAttrs)
        {
          str += i + '="' + objAttrs[i] + '" ';
        }
        str += '>';
        for (var i in params)
        {
          str += '<param name="' + i + '" value="' + params[i] + '" /> ';
        }
        str += '</object>';
      }
      else
      {
        str += '<embed ';
        for (var i in embedAttrs)
        {
          str += i + '="' + embedAttrs[i] + '" ';
        }
        str += '> </embed>';
      }
      document.write(str);
    }
    function AC_FL_RunContent(){
      var ret = 
        AC_GetArgs
        (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
         , "application/x-shockwave-flash"
        );
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    }
    function AC_SW_RunContent(){
      var ret = 
        AC_GetArgs
        (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
         , null
        );
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    }
    function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
      var ret = new Object();
      ret.embedAttrs = new Object();
      ret.params = new Object();
      ret.objAttrs = new Object();
      for (var i=0; i < args.length; i=i+2){
        var currArg = args[i].toLowerCase();    
        switch (currArg){ 
          case "classid":
            break;
          case "pluginspage":
            ret.embedAttrs[args[i]] = args[i+1];
            break;
          case "src":
          case "movie": 
            args[i+1] = AC_AddExtension(args[i+1], ext);
            ret.embedAttrs["src"] = args[i+1];
            ret.params[srcParamName] = args[i+1];
            break;
          case "onafterupdate":
          case "onbeforeupdate":
          case "onblur":
          case "oncellchange":
          case "onclick":
          case "ondblclick":
          case "ondrag":
          case "ondragend":
          case "ondragenter":
          case "ondragleave":
          case "ondragover":
          case "ondrop":
          case "onfinish":
          case "onfocus":
          case "onhelp":
          case "onmousedown":
          case "onmouseup":
          case "onmouseover":
          case "onmousemove":
          case "onmouseout":
          case "onkeypress":
          case "onkeydown":
          case "onkeyup":
          case "onload":
          case "onlosecapture":
          case "onpropertychange":
          case "onreadystatechange":
          case "onrowsdelete":
          case "onrowenter":
          case "onrowexit":
          case "onrowsinserted":
          case "onstart":
          case "onscroll":
          case "onbeforeeditfocus":
          case "onactivate":
          case "onbeforedeactivate":
          case "ondeactivate":
          case "type":
          case "codebase":
          case "id":
            ret.objAttrs[args[i]] = args[i+1];
            break;
          case "width":
          case "height":
          case "align":
          case "vspace": 
          case "hspace":
          case "class":
          case "title":
          case "accesskey":
          case "name":
          case "tabindex":
            ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
            break;
          default:
            ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
        }
      }
      ret.objAttrs["classid"] = classid;
      if (mimeType) ret.embedAttrs["type"] = mimeType;
      return ret;
    }
    // -->
    </script>
    </head>
    <body bgcolor="#000000">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
     AC_FL_RunContent(
      'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
      'width', '979',
      'height', '750',
      'src', 'main',
      'quality', 'high',
      'pluginspage', 'http://www.adobe.com/go/getflashplayer',
      'align', 'middle',
      'play', 'true',
      'loop', 'true',
      'scale', 'showall',
      'wmode', 'window',
      'devicefont', 'false',
      'id', 'main',
      'bgcolor', '#000000',
      'name', 'main',
      'menu', 'true',
      'allowFullScreen', 'false',
      'allowScriptAccess','sameDomain',
      'movie', 'main',
      'salign', ''
      ); //end AC code
    </script>
    <noscript>
     <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="979" height="750" id="main" align="middle">
     <param name="allowScriptAccess" value="sameDomain" />
     <param name="allowFullScreen" value="false" />
     <param name="movie" value="main.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /> <embed src="main.swf" quality="high" bgcolor="#000000" width="979" height="750" name="main" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
     </object>
    </noscript>
    </body>
    </html>
    


    Thanks for the help.

    Hey, it's something wrong with this site!
    Try to reinstall!
  • How to change or remove the downloaded muse site to 3rd party server?

    Aloha,

    I had a page designed for the first page of my website of the system. Recently, I tried to make a change to a video screen and found that the files were locked. I can't make changes or delete the files no matter what I try. I don't have a master file, and the person who designed it put in my root directory. index.html opportunites.html and site map.xml that none of the files can be changed, I can't change the first page of my site. Is there any way at all I can unlock files on my server or remove them? Thanks for any help.

    Angela

    Hello Angelad,

    If you have the credentials of the Web site, you can get the site in Dreamweaver, and edit it. Once the editing is complete - you can download back.

    The following link will help you get there.

    https://helpx.Adobe.com/Dreamweaver/using/edit-existing-remote-website.html

    Kind regards

    Nitin

  • why I can't download muse on my macbook pro, but in the Yes of the iMac?

    Hello my name is lily and I have a problems with muse adobe, yesterday I buy for a month but I can not download on my macbook pro

    I already install creative cloud and download muse but its keep telling me I have to buy.

    I already check the credit card spending and it was...

    I tried the same steps on the imac to a friend and it download perfect and open

    But why! I can't open it on my macbook pro?

    Hello

    You should be able to install on macbook pro. Please try the steps below and you should be all set.

    1. disconnect the creative application cloud according to the instructions contained in the link below.

    Sign in, sign out | Creative office cloud app

    2 rename the OOBE OOBE_old folder. File can be found at the following location.

    Finder > GO > go to folder > enter ~/library/application support/adobe and press return

    3. start the creative cloud and singing with your adobe ID and password.

    4. go to the applications tab and check if you have the ability to install Muse.

    If the problem persists please let me know.

    Concerning

    Vivek

  • Recover lost the adobe muse site

    Hi all

    I've developed a Web site on my Mac Mini, mac started running slow so I backed up all the data, reset the mac to factory default and restored from a backup. Unfortunately all my files were lost during the restore process and my muse site is now gone too.

    I have all the HTML, CSS files, JavaScript etc. uploaded to my FTP server that I can download but of course impossible to use them in muse. Is it possible to convert these files into a file of muse, so that I can continue to edit the site of muse?

    The answers would be a great help,

    Thank you!

    HI Oliver,.

    Sorry to hear that, but unfortunately it is not possible to recover the Muse FRO FTP server file. When you publish your site to an FTP server, Muse does not download the .muse for the server file, so you're not there.

    Another way might be scanning your system, using free software, maybe it can help to recover a deleted file.

    Let me know if you have any question.

  • My images blurry when I export or publish my site of Muse. Why and how to fix it?

    My images look pixelated blurred, jagged, and poor quality I publish or export my Muse site. Is it possible to avoid or solve this problem?

    The main cause of blurring of the images is the least that the downsampling images Photoshop-quality algorithm currently used in Muse (which was aggravated in beta early because of a bug in the JPEG compression library we were using at the time). Because of the work that we have accomplished for Beta 7 improve the image, encoding performance, we have the infrastructure in place to allow us to have a much better picture resampling/resizer (after 7 Beta), so this source of blur will be addressed.

    The other source of blur is unique to the opaque images containing drawings to the line or containing also the edges hard and large areas of solid color. When an image is opaque Muse encode to JPEG (if it is altered in the Muse is a medium that requires re-encoding). For the line drawings that will introduce artifacts of JPEG compression that can be observed according to your eye and the specific image involved.

    There are (at least) ways to avoid these artifacts of JPEG compression:

    1. Resize your picture before you place and avoid to apply effects (rounded corners, drop shadow, etc.) or make a cropping or resizing in Muse. If the image has not changed your original JPEG, PNG or GIF will be passed through unaltered.*
    2. Put at least one transparent pixel in your original image. (It could be an opaque pixel to 99%). This will force Muse to encode in PNG. The PNG compression is lossless and therefore does not introduce compression artifacts. However, a PNG may be 5 times the size of a JPEG file for the same image, so there is an impact on Web page download performance.

    For files PSD Muse a encode the original data of the PSD in a web-compatible image format. If an image is resized in Photoshop and placed Muse don't resize/resample the image data, but it will encode it in JPEG or PNG according to if it contains transparency.

  • Strange sensitive problem with downloading of site in a subdomain - Tablet and phone look bad

    I need help!  I transferred my site with the desktop versions, Tablet and phone.  I had this problem before when downloading a Muse of the site in a specific subdomain (under another domain host and web).  I tested several times in Muse and all three versions are perfect.  But if you take a look at the version Mobile and tablet, you will see what I mean.  The site is located off the coast to the left on both and is not proportioned correctly.  Is it because it's under a subdomain.  As I mentioned I had happen before downloading a site to a specific subdomain.  What would be a problem?  I really love to help with this.

    Here's the URL:

    sturgillsimpson.com

    The office is very well so if someone could look at the other it would be great.

    Thank you!

    BRITISH COLUMBIA

    This url does not work, you can publish the site as a place to test BC and then provide us the url.

    Thank you

    Sanjit

  • Can I export and collect all the image files in my Muse site?

    Can I export and collect all the image files in my Muse site?

    Hello Peter,.

    Please go to file > export to HTML format and export your site in a folder you want.

    In the same folder, you will be able to see a folder named "Images" that will contain all the images used in the site.

    Kind regards

    Vivek

  • Can I design a Web site in Dreamweaver and then export it to Muse to make animations of Parallax?

    Can I get the same results in only Dreamweaver? If so, how?

    I do the opposite workflow? (First Muse, then Dreamweaver)

    I recently started working on DW, is where I do all the programming after having the page layout in InDesign. I've never tried before Muse, and if possible I rather would use as a complement to InDesign, then duty to use it 'a priori'. Thank you.

    Hi blue,

    Muse is not supposed to be a code generation for installation downstream hand-off tool. We recommend make you your entire site publishing in Muse, rather than export Muse site and edit the code elsewhere. Staying within the Muse, you can continue to use all the features of Muse to update your site. As soon as you switch to change the output of Muse, there is no going back (unless you're ready to re-do your changes every time that you export from Muse). The output of code HTML of Muse is not optimized for manual editing.

    -Devendra

  • the construction of my portfolio on Muse site. Download my examples of banner ads that are SWF files, no problem. I need to download HTML5 banners I have done, but cannot get them on my page in Muse. Also, here the HTML5 banner ad to appear on a break, th

    Build my portfolio in Muse site. Download my examples of banner ads that are SWF files, no problem.

    I need to download HTML5 banners I have done, but cannot get them on my page in Muse.

    In addition, would be like HTML5 banner ad to appear in pause, then Viewer would click to watch it animate.

    Anyone know to solve it for it?

    Have you tried to insert via object > insert HTML?

    https://helpx.Adobe.com/Muse/topics/Embedding-HTML.html

    https://helpx.Adobe.com/Muse/using/adding-edge-animate-content.html

    Thank you

    Sanjit

  • Gives an error message 213:19 and said that the problem with the license of the product. Yesterday downloaded Muse (30-day trial period). Yesterday, he worked

    Gives an error message 213:19 and said that the problem with the license of the product. Yesterday downloaded Muse (30-day trial period). Yesterday, he worked

    No one can tell you anything without the proper system or other technical details info. Licenses of inevitable Muse is related to CC, in order to check in a first time:

    Log, activation, or connection errors. CS5.5 and later versions

    Mylenium

  • Problem downloading a site Muse to the FTP host

    Whenever I try to download my site created with Adobe Muse to a FTP host I always get the error message:

    Failed to connect to a PHP file. Failed to check if the web server supports PHP required by forms of the Muse. Remember the domain name entered in the dialog FTP download is correct.

    I use Godaddy/Cpanel to launch my site but I can not understand how the launch. I already bought / have the domain name and I have been through business catalyst. When I type the URL for the site it brings me to a page with a link to my cpanel, log. Don't you think that it's something wrong with Cpanel, because that's what I use to start the site? Or Cpanel is not compatible with the Muse?

    All help information

    Thank you

    The message indicates that you are trying to use the widget for web forms in Adobe Muse and it seems that your host does not support PHP or PHP mail service.

    Please see the document: http://forums.adobe.com/docs/DOC-3581 and contact your hosting provider in this regard.

  • Is it possible to export the Muse site in Dreamweaver or in another format like wordpress, now all hyperlinks and blogs, where 10 years later there is no Muse, but another web Adobe made software?

    Is it possible to export the Muse site in Dreamweaver or in another format like wordpress, now all hyperlinks and blogs, where 10 years later there is no Muse, but another web Adobe made software?

    Hi Claire,

    First of all, you can be assured that now Adobe has no intention to quit muse and it's here to stay

    Now then, you can export your site created in Muse in his code HTML, CSS and JS form by using the file option-> export to HTML

    Please refer to this screenshot:- http://prntscr.com/4ueqvq

    Now this version exported your muse site can be opened in any code editing software like Dreamweaver etc and you can make changes to your site.

    Hope this helps

    Kind regards

    Rohit Nair

  • How can I download my Muse site.

    Somehow my off line-saved copy of my Muse site got all blocked upward. In my saved copythe web pages is no longer to rely on the master page even if I saved the page I downloaded last via FTP and it is great online. I wonder if there is a way to import my muse site and see if this help? This could be a problem of Muse? should I remove muse and redownload it?

    It's not a way to import your site online in Muse (other than changes you make via BC BIE).

    If the pages do not seem to be inheriting the master page content, please check in outline view that you have the master page associated with the content through their context menu-> master pages.

    Thank you

    Vinayak

Maybe you are looking for

  • What should I do?

    I ordered a charger from ebay. After that I loaded my phone a message comes up and says that I have to change my password in 60 minutes. What could this be? the charger: - 6 http://www.ebay.com/itm/OEM-Lightning-USB-Converter-Adapter-For-Apple-iPhone

  • A question for the A200 users "downgrading" to XP

    Well, I already posted on some of the problems I've had with my A200-1AX. I went down to XP and I had two questionmarks in the Device Manager window. (1 for the pci device and one for the audio device) I was told to change the good BIOS BIOS for XP.

  • How can I burn my pictures of my old yahoomail on a disc?

    original title: burning photos I had files copied from my windows xp on my windows vista pc. How can I burn my pictures of my old yahoomail on a disc? My old photos are in a folder in yahoomail on my new vista pc.

  • Not to allow changes in the application's permissions

    Hello. Is it possible to ban a user to change permissions for the application somehow? Or disable access to the set of permissions application? I noticed that some Applications 'Software BlackBerry system' doesn't have an option to change the permiss

  • Transfer of blackBerry Smartphones contact phone of your old phone numbers

    Hi all Please help! I tried to copy my contact numbers from my old BB to my new BB curve torch using the BB desktop, failed miserably. Hope someone can help me. Thank you