MPR testing is passed, but failed when upload Result Package to verify.

Hi,
I am attempting to certify our application using MPR-Test-Tool v4.6 for Windows Server 2012 R2.
The MPR tool shows the testing Pass, and generated a .zip Result Package.
But it's failed when uploads the .zip Result Package to verify in MPR web-site "Test My Apps" page, both Silver and Gold level are failed.
In the "Test My Apps" page, I couldn't find the reason, error message or some hint for the failure.
I am appreciate any help,
Regards.
Regards,

Hello,
Please check if you import the certificate into the Exchange server "Trusted Root Certificates".
If there is a CA server in your domain, you also need to import your certificate into the trusted root certificates on the CA server.
Cara Chen
TechNet Community Support

Similar Messages

  • Unit test runs perfectly fine with NUnit but fails when run from TestExplorer

    Hello all,
    I have a TestProject, Harmony.Tests. In there, I have a method AddApplicationEvent()
    which calls another method Send(InvokeRequestMessage requestMessage) which calls a webservice (OperationHandlerBrokerWebService). 
    The code snippet looks like this. This is not the complete code but a part where we are calling the web service. It fails on the underlined Italic line of code.
    OperationHandlerBrokerWebService brokerService = new OperationHandlerBrokerWebService();
    brokerService.UseDefaultCredentials = true;
    brokerService.Url = address;
    brokerService.Timeout = timeoutInMilliseconds;
    byte[] serializedResponseMessage = brokerService.InvokeOperationHandler(serializedRequestMessage);
    The same test works and passed fine when I ran it with NUnit, but failed with following exception when I tried to run it from TestExplorer. 
    Test Name: AddApplicationEvent
    Test FullName: N4S.Harmony.Tests.CaseManagement.HarmonyFacadeTests.AddApplicationEvent
    Test Source: d:\TFS\TMW\Dev\TMWOnline\Harmony\N4S.Harmony.Tests\CaseManagement\HarmonyFacadeTests.cs : line 665
    Test Outcome: Failed
    Test Duration: 0:00:00.296
    Result Message:
    SetUp : Message returned System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.ArgumentException: Invalid token for impersonation - it cannot be duplicated.
    at System.Security.Principal.WindowsIdentity.CreateFromToken(IntPtr userToken)
    at System.Security.Principal.WindowsIdentity..ctor(SerializationInfo info)
    at System.Security.Principal.WindowsIdentity..ctor(SerializationInfo info, StreamingContext context)
    --- End of inner exception stack trace ---
    at System.RuntimeMethodHandle._SerializationInvoke(Object target, SignatureStruct& declaringTypeSig, SerializationInfo info, StreamingContext context)
    at System.Reflection.RuntimeConstructorInfo.SerializationInvoke(Object target, SerializationInfo info, StreamingContext context)
    at System.Runtime.Serialization.ObjectManager.CompleteISerializableObject(Object obj, SerializationInfo info, StreamingContext context)
    at System.Runtime.Serialization.ObjectManager.FixupSpecialObject(ObjectHolder holder)
    at System.Runtime.Serialization.ObjectManager.DoFixups()
    at System.Runtime.Serialization.Formatters.Binary.ObjectReader.Deserialize(HeaderHandler handler, __BinaryParser serParser, Boolean fCheck, Boolean isCrossAppDomain, IMethodCallMessage methodCallMessage)
    at System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Deserialize(Stream serializationStream, HeaderHandler handler, Boolean fCheck, Boolean isCrossAppDomain, IMethodCallMessage methodCallMessage)
    at System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Deserialize(Stream serializationStream)
    at N4S.Forms.OperationHandlerBroker.AMessage.DeserializeMessage(Byte[] serializedMessage)
    at N4S.Forms.OperationHandlerBroker.WebServiceServer.BrokerService.InvokeOperationHandler(Byte[] serializedInvokeRequestMessage)
    --- End of inner exception stack trace ---
    expected: <0>
    but was: <1>
    Result StackTrace:
    at N4S.Harmony.Tests.TestHelper.InvokeOperation(OperationHandler handler, OperationHandlerInput input, Boolean expectedToWork) in d:\TFS\TMW\Dev\TMWOnline\Harmony\N4S.Harmony.Tests\TestHelper.cs:line 136
    at N4S.Harmony.Tests.TestHelper.LoginAsUser(String username, String password) in d:\TFS\TMW\Dev\TMWOnline\Harmony\N4S.Harmony.Tests\TestHelper.cs:line 394
    at N4S.Harmony.Tests.TestHelper.Login(TestUserName requestedUser) in d:\TFS\TMW\Dev\TMWOnline\Harmony\N4S.Harmony.Tests\TestHelper.cs:line 377
    at N4S.Harmony.Tests.TestHelper.LoginAsAdvisor() in d:\TFS\TMW\Dev\TMWOnline\Harmony\N4S.Harmony.Tests\TestHelper.cs:line 230
    at N4S.Harmony.Tests.CaseManagement.HarmonyFacadeTests.Login() in d:\TFS\TMW\Dev\TMWOnline\Harmony\N4S.Harmony.Tests\CaseManagement\HarmonyFacadeTests.cs:line 76
    at N4S.Harmony.Tests.CaseManagement.HarmonyFacadeTests.SetupTest() in d:\TFS\TMW\Dev\TMWOnline\Harmony\N4S.Harmony.Tests\CaseManagement\HarmonyFacadeTests.cs:line 67
    I am not sure what causing the issue. I checked the Credentials, Windows Identity during both the test run and there is no difference. Please advise !!
    Thanks,
    Deepak

    Hi Tina,
    Thanks for your reply. 
    I do have NUnit adapter installed. I even noticed that the test runs fine with NUnit GUI and also if I run it through Resharper Test Explorer window. 
    As you can see in the image above the same test is passed when I ran it from Resharper Unit Test Explorer window but fails when I ran it from Test Explorer window. I also captured the information on fiddler. 
    There was a significant difference in the Header Content length. Also under the User-Agent property the protocol versions are different. 
    Not sure why VSTest ExecutionEngine is picking a different version.
    The UnitTest in question is calling a webservice method which in turn calls a method from another referenced project. 
    Web Service class
    using System;
    using System.Web.Services;
    using N4S.Forms.OperationHandlerBroker.Server;
    using NLog;
    namespace N4S.Forms.OperationHandlerBroker.WebServiceServer
    /// <summary>
    /// The operaton-handler broker service.
    /// </summary>
    [WebService(Description = "The N4S Forms Operation-Handler Broker Web-Service.", Name = "OperationHandlerBrokerWebService",
    Namespace = "N4S.Forms.OperationHandlerBroker.WebServiceServer")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    public class BrokerService : WebService
    { /// <summary>
    /// Calls <see cref="HandleRequest"/>. Updates performance-counters.
    /// </summary>
    /// <param name="serializedInvokeRequestMessage">the binary-serialized <see cref="InvokeRequestMessage"/></param>
    /// <returns>the binary-serialized response message</returns>
    [WebMethod(BufferResponse = true, CacheDuration = 0, Description = "Invokes the requested operation-handler and returns a binary-serialized response-message.", EnableSession = false)]
    public byte[] InvokeOperationHandler(byte[] serializedInvokeRequestMessage)
    logger.Trace(Strings.TraceMethodEntered);
    PerformanceMonitor.RecordRequestStarted();
    InvokeRequestMessage requestMessage = (InvokeRequestMessage) AMessage.DeserializeMessage(serializedInvokeRequestMessage);
    InvokeResponseMessage responseMessage;
    try
    responseMessage = HandleRequest(requestMessage);
    PerformanceMonitor.RecordSuccessfulRequest();
    catch (Exception)
    PerformanceMonitor.RecordFailedRequest();
    throw;
    finally
    PerformanceMonitor.RecordRequestEnded();
    logger.Trace(Strings.TraceMethodExiting);
    return AMessage.SerializeMessage(responseMessage);
    UnitTest snippet
    OperationHandlerBrokerWebService brokerService = new OperationHandlerBrokerWebService();
    brokerService.UseDefaultCredentials = true;
    byte[] serializedResponseMessage = brokerService.InvokeOperationHandler(serializedRequestMessage);
    Please advise.
    Thanks,
    Deepak

  • SSIS package works in development environment but fails when job scheduler executes, file path invalid

    SIS package works in development environment but fails when job scheduler executes, file path invalid
    Relatively simple package to get OLE-DB connection to MS FoxPro 9.0 DB
    The failure in the job log states that the path is invalid its a network path (\\192.168.1.xxx\foldername) this has been run several ways with the remote computer being mapped as a network drive and through the \\ notation described above.
    Thinking it was a security issue between the SQL agent account and my account I tested by subsitution myself as a proxy account for the agent when running this job, again same result failed on network path.
    One issue I see is that the remote computer is running Server 2000 (legacy software incompatable with newer versions) 
    Is it possible that this is a security issue, since if i understand correctly the current MS domain security model didn't exist until Server 2003.

    Hi REIData,
    Have you got the issue resolved? Based on your description, please make sure the target folder is shared properly. If the computer on which the SQL Server Agent job runs doesn’t join the domain as the server that hosts the shared folder, you have to share
    the folder with everyone by adding “Everyone” to the people list on the File Sharing page of the folder and assign "Read/Write" permission to it.
    Regards,
    Mike Yin
    TechNet Community Support

  • Known issue: Speech APIs fail when an x86 package is run on an x64 desktop (Windows 10 Insider Preview SDK and tools, April 2015 release)

    When building an app for the x86 platform, speech APIs fail when the x86 package is run on the desktop of an x64 system. You may see an error with the message "mod not found".

    Use the Visual Studio Configuration Manager to retarget the app to x64 when running on an x64 system.

  • Cfmail  - works locally but not when uploaded

    Hi,
    I'm using cfmail with form variables for the email addreses.
    It's so users can send email to political candidates. Here's the
    code:
    <cfoutput>#Form.semails#</cfoutput>,<cfoutput>#Form.hemails#</cfoutput></p>
    <cfmail to="#Form.semails#,#Form.hemails#"
    replyto="#Form.useremail#" failto="[email protected]"
    from="#Form.useremail#" subject="Keep Maine Toxin-Free!"
    server="mail.nosuch.com" port="26" timeout="40"
    username="[email protected]" password="nosuch">
    #Form.usermessage#
    </cfmail>
    The form submit page collects those variables and passes them
    as form variables - GET. The "to" field in cfmail is populated by
    hidden fields that contain session variables... they're forwarded
    on as those .semails and .hemails form variables. Actual values
    have been replaced with "none" or "nosuch" for security, but you
    can see the structure anyway.
    This works when run locally, sends the emails as it should.
    When uploaded exactly as is to godaddy's server, it doesn't send
    emails. Doesn't throw any errors, the form results page displays as
    it should... but the emails just never get sent.
    I'd really appreciate any ideas...
    Joe

    Adam Cameron wrote:
    > I don't know how these shared hosting outfits work, and
    what access you
    > have to what, but here's some questions:
    >
    > - have you inspected the mail logs to see if they cast
    any light on the
    > scene
    > - have you configured CF to tell it where the SMTP
    server is?
    > - do you need to authenticate to it, and that sort of
    thing?
    > - are the email messages failing @ the CF end (in which
    case they'll be in
    > the mail/undeliverable dir (not entirely sure that's the
    name of it, but
    > have a shufti around in the cfusion dir...), or are they
    getting to the
    > SMTP server and failing there (check the SMTP server's
    logs).
    >
    Unfortunately all that can't be done by us users of these
    shared hosting
    outfits. You'll need to contact GoDaddy support and ask them
    to take
    these steps. I'm sorry about your probably experience with
    this.
    While I use GoDaddy for my personal hosting where I care more
    about not
    spending a great deal of money over high performance. I do
    not wish my
    support experiences on anybody. If you know ColdFusion well
    and can
    tell support what needs to be done, they should be able to do
    it. Or,
    more likely, you would be able to figure out the self help
    tools to do
    it yourself. But, unless this has changed since my last
    experience,
    their support staff is not ColdFusion literate and are unable
    to guide
    other, inexperienced ColdFusion users.
    Saying all that. Email works just fine on my GoDaddy website
    and I do
    not believe I had to do anything special to use it.

  • Scp works when logging with my user id but fails when using another one

    Hello all:
    I wrote a script that uses scp to transfer specific local files to a server. The script takes the user id and password and pass them as scp's parameters for authentication.
    Everything works fine when I uses my own user id to test the script but it fails when I used another id (with ligitimate password) to do the same thing.
    I suspect it's a privilege issue. Both ids belong to the same group. Where should I look to fingure this out?
    Thanks,
    John

    SCP is part of SSH. SSH requires the exchange of authorization keys to prevent man-in-the-middle attacks.
    When you log in the first time you may see a prompt like:
    RSA key fingerprint is 98:2e:d7:e0:de:9f:ac:67:28:d2:42:2e:37:16:58:45.
    Are you sure you want to continue connecting (yes/no)?
    This might be where your script fails. Since it prompts only the first time, you may just have to do one interactive SSH login to create an entry in ~/.ssh/known_hosts
    Or setup User equivalence to omit the exchange of passwords.
    You may find the following interesting:
    Oracle Linux 5 Howto: Installing and using cURL with support for SCP and SFTP
    OL5 Howto: Installing and using cURL with support for SCP and SFTP
    see 3) Set up SSH user equivalence for SCP and SFTP

  • Having problems uploading an album to create a book.  iPhoto will compile the data, but fails to upload. Error message allows a "Retry", but its a dead end.  (iPhoto 11)

    I can't get iPhoto 11 to accept my album to create a book.  Compiles OK, but bombs out when uploading.  I have tried Safe Mode and eliminating Energy Saver. I have pulled out the Preference file and re-inserted after logging back in, but nothing seems to work.  This problem seems pretty prevalent, since it keeps coming up in discussion groups.  I had the same problem with iPhoto 6, and hoped that it would have been cured by now, but apparently not.  I guess Apple likes to collect $49 from each caller to give out the proper solution.  Help!
    Andy in Spring

    OK - so I have tried deleting my iPhoto preferences, repairing my keychain, rebuilding my iPhoto library, uninstalling Safari Beta 4 and I still can't get this one photo album (that has 140 videos) to upload properly to MobileMe. I left it to upload when I went to bed and when I woke up, I saw that my iPhoto quit itself yet again. So again, if there was an error message, I missed it. Before I left for work, I started an upload of an album of just photos to see if that works, thinking that perhaps there's a video in the other album that iPhoto is getting stuck on. If that works, I suppose I could try uploading the videos one at a time, right? Just keep adding them to the Gallery till something fails? If I find that the album of photos failed, then I think my only choice will be to pay $49 for AppleCare's assistance. I love how one solution they already gave me (for free) is to purchase a new laptop. Yeah, that would solve it! LOL

  • Video plays in swfiles but not when uploaded to website

    Hi, does anyone have any idea why videos embedded in a swf
    file play okay in the swf file or when tested as a movie on the CS3
    stage, but when uploaded to my website will not play? I am
    completely baffled by this.
    My website link is at
    http://www.marykingmedia.com/marykingmediafive/index.html
    On the Bolivia and Chile page the videos do not appear once
    the video is uploaded to my website. I have no idea why this should
    be when the actual videos play perfectly well within the swf file
    itself. I have put the encoded flash videos inside the same folder
    as the swf file and uploaded everything, but no joy.
    The swf file is 2.97 MB; not sure if that would present any
    problem or not once uploaded
    My video on another project plays fine at
    http://www.marykingmedia.com/marykingmediafour/index.html
    Can anyone cast any light on what the problem is with my
    South America project?
    Thanking you all..

    Hi xchanin, thanks for your feedback. I dont quite understand
    what you mean by this part here ... but if you do that process a
    couple of times (with the same .mov file) you get the same .flv but
    the name of your video is incremented by one each time?
    Pretty well much I followed this tutorial
    http://multimedia.journalism.berkeley.edu/tutorials/flash/building-flash-templates/adding- video/
    I put a FLVPlayback component on my Flash stage.
    I encoded my videos in the CS3 video encoder and followed the
    settings given in the above tutorial link. I did not resize or crop
    the videos, I set the quality to medium and I gave my videos a name
    prior to encoding it.
    After encoding the film, I highlighted the FLVPlayback
    Component and in the parameters found the content path and then
    linked that to my encoded videos one by one. Then I saved my
    worked, played it in the movie tester and then I exported my swf
    file to my Dreamweaver folder, but I did rename my exported file
    (it is not the same name as my Fla file). Could that make a
    difference? I also put my Flv videos in the same folder as my swf
    file and uploaded them to my server. I put the swf file on my html
    page and then uploaded that to my server. My website shows the swf
    file but the videos do not appear at all. However, the videos do
    appear in the actual swf file when I play that.
    I would be grateful to know if you see anything wrong with my
    working process here. Could the renaming of the exported file have
    caused the problem?
    Thanking you.

  • Exchange rate fields get failed when uploading data

    Hi,
    I have a problem when uploading purchasing data (2LIS_02_SCL) from R/3 to BW. Basically the exchange rate value is right in the PSA but NOT in the cube.
    I just wondering what did they do when transfering the exchange rate data from PSA to cube. I have already checked the transfer rules and update rules, but no logic in there. So the logic should be ONLY pass the value, but somehow different value coming up.
    Maybe you can have different think about this ?
    FYI, I have already transfered global settings and exchange rates from R/3 to the BW. Is there any settings that I missed ?
    Very appreciate of your help.
    Thanks a lot
    Martin Darmawi

    Hi Roberto,
    Thanks for your answer.
    I think it has aggregation behaviour.
    Do you know how I can avoid aggregation behaviour for a keyfigure ? Because I can't edit aggregation field and I tried to change the exception aggregation field with First Value, No Aggregation and Avarage value but it does not work.
    Please let me know what you think.
    Thanks and Appreciate for your help,
    -Martin Darmawi-

  • Fax test shows passed but fax doesn't work comm error

    new machine . fax test passed but when fax is trying to be sent comes back as comm error. help

    Hi @farmerj15 ,
    I see by your post that when you try to send a fax you are getting a comm error, the fax test all passed. I will do my best to help you.
    Make sure the printer is connected directly to a wall outlet. (don't use a power hub or a surge protector) This ensures the printer is receiving full power and may help this situation.
    I have provided a document to go through the steps to see if that will resolve the issue.
    Cannot Send or Receive Faxes.
    Sorry for all the questions, but it will help to resolve this issue quicker if you are still having issues.
    Please let me know the following:
    Can you receive a fax?
    What kind of line do you have? (Analogue, DSL, Cable Modem)
    Where is the fax cable connected to? (modem, wall jack)
    Are you using a filter?
    Are you using the 2 wire fax cable?
    Do you have distinctive ring set up on the line?
    Is there any voice mail set up?
    Do you have a answering machine? (Where is it connected to)
    Is there a phone also connected the printer?
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Installation of IPC AP 7.0 Jar is getting Failed when uploading in CRM

    Hello Experts,
    we did some changes in the previosly uploded version of IPC AP 7.0  customer user exit Jar file in eclipse.
    While uploading the new modified jar through transaction /SAPCND/UE_DEV in CRM we are getting error :" installation of module <Jar file name > has failed ".
    when we checked the logs in SM 53 we seen the below mentioned error:
    Message: Exception of type com.sap.sql.log.OpenSQLException caught: Exception of type com.sap.sql.sqlparser.CommonSQLParserException: - statement "DELETE FROM "SVMCRT_MOD_TR_T" WHERE "MODULE_NAME" LIKE ? ESCAPE ^ (reason: Modification of ABAP tables is not permit ted)" is not supported
    caught: - statement "DELETE FROM "SVMCRT_MOD_TR_T" WHERE "MODULE_NAME" LIKE ? ESCAPE ^ (reason: Modification of ABAP tables is not permitted)" is not supported
    --> com.sap.sql.log.OpenSQLException: Exception of type com.sap.sql.sqlparser.CommonSQLParserException: - statement "DELETE FROM "SVMCRT_MOD_TR_T" WHERE "MODULE_NAME" LIKE ? ESCAPE '^' (reason: Modification of ABAP tables is n" is not suppor ted
    caught: - statement "DELETE FROM "SVMCRT_MOD_TR_T" WHERE "MODULE_NAME" LIKE ? ESCAPE '^' (reason: Modification of ABAP tables is not permitted)" is not supported
    at com.sap.sql.log.Syslog.createAndLogOpenSQLException(Ljava/lang/Class;Ljava/lang/String;[Ljava/lang/Object;)Lcom/sap/sql/log/OpenSQLException;(Syslog.java:85)
    at 
    if  required i can post the complete stack trace.
    any inputs/suggestions are most welcome.
    Thanks & regards,
    Siddharth

    Hi Mark,
    Yesterday after Posting the thread we found the same Note ,Issue occured because of  JAVA write access was not enabled on the table ,After enabling it as mentioned in SAP Note, Jar file get successfully uploaded.
    Thanks for your Help also.
    Regards,
    Siddharth

  • EDT Cat. 15 Data loaded to SAP but failed when updating

    Hi,
    I have an structure to load data into BP using KCLJ with Cat 15.
    Here it is.
    AKTYP
    TYPE
    PARTNER
    ROLE1
    KUNNR
    KUNNR_EXT
    BU_GROUP
    FIBUKRS
    CHIND_ADDR
    NAME_CO
    NAME_ORG1
    NAME_ORG2
    STREET
    STR_SUPPL1
    STR_SUPPL2
    STR_SUPPL3
    LOCATION
    HOUSE_NUM1
    POST_CODE1
    CITY1
    COUNTRY
    REGION
    LANGU
    CHIND_TEL
    TEL_NUMBER
    TEL_EXTENS
    We had the data loaded to SAP with ROLE 000000 and TR0100 but somehow when we tried to update the address thru ROLE TR0100, we had a dump and failed to update. However, the update is good when we use ROLE 000000 to update.
    Anyone would have a clue of this?
    Thanks

    I am new to EDT also. I know Cat 15 which can load BP. SAP has more categories which can load more using KCLJ. Here's my experience.
    Under Tcode SIMGH, find IMG structure External Data Transfer for SAP Banking. Under that structure, you can find Display Required and Optional Entry Fields for SEM Banking. When you enter 15 in the Category box, you'll see a whole list of fields about BP. You can use these fields to create your own structure.
    After you created your structure, use Define Sender Structure under External Data Transfer for SAP Banking to define your structure. After that, it is done. You can try use KCLJ to load your BP.
    If you still have other issues, mostly will be the configuration.
    Enjoy.

  • My sprymenu previews well on the browser, opera, chrome, IE but sqaushes when uploaded to internet

    Help as this is driving me cracy.
    the website works ok and the sprymenu previews very well using opera, google chrome and IE but when uploaded to the internet is squashes by the left hand side.
    <div id="apDiv22">
            <ul id="MenuBar1" class="MenuBarHorizontal">
              <li><a class="MenuBarItemSubmenu" href="#">IT Services</a>
                <ul>
                  <li><a href="#" class="MenuBarItemSubmenu">Networkds</a>
                    <ul>
                      <li><a href="#">Wired Infrastructure</a></li>
                      <li><a href="#">Wireless Infrastructure</a></li>
                    </ul>
                  </li>
                  <li><a href="#">Servers</a></li>
                  <li><a href="#">PoE</a></li>
                </ul>
              </li>
    <li><a class="MenuBarItemSubmenu" href="#">Digital Services</a>
      <ul>
                  <li><a href="#">e-Archiving</a>                </li>
                  <li><a href="#">e-Storage</a></li>
    </ul>
              </li>
    <li><a href="#" class="MenuBarItemSubmenu">Training</a>
      <ul>
    <li><a href="#">Training</a></li>
    <li><a href="#">Desktop Publishing</a></li>
    <li><a href="#">Wireless Infrastructure</a></li>
      </ul>
    </li>
    <li><a href="#" class="MenuBarItemSubmenu">Office Services</a>
      <ul>
        <li><a href="#">Photocopy</a></li>
        <li><a href="#">Laminating</a></li>
        <li><a href="#">Typesetting</a></li>
        <li><a href="#">Printing</a></li>
      </ul>
    </li>
    <li><a href="#" class="MenuBarItemSubmenu">Orders</a>
      <ul>
        <li><a href="#">Hardware</a></li>
        <li><a href="#">Software</a></li>
      </ul>
    </li>
            </ul>
          </div>

    Hello Tim,
    Please try File>Export as Html and Export your website files in a local folder.
    Check if the local copy works fine or not.
    If it works fine, then please try publishing the website to Business Catalyst again and make sure you select the option "All Files" from the upload dropdown in the Publish pop-up.
    Hope this helps.
    Regards,
    Sachin

  • Site Displays Perfectly in DW Preview But Not When Uploaded

    Hi,
    I have a site which displays fine in IE, both the CSS and
    XHTML validate and when I use the FF preview in looks just fine.
    However when I upload the site to the server, the footer and a
    couple of images are missing and I'm just can't figure out why. All
    the paths are correct but I just can't figure out why it displays
    correctly in the preview FF and it's not when uploaded and viewed
    in FF. Site diplays in IE without any problems via preview or
    upload.
    Any help?

    I think you'll need to post a link or some code.
    Regards
    Martin

  • K1 - Video captured by K1 has sound when played onboard, but muted when uploaded and played in PC

    I am not sure if I have done anything wrong. But, all video recordings that I used K1 to capture will only have sound played out while on K1. When the videos are uploaded to my PC (Win7-64bit Pro) and played in WMP, the sound disappeared.
    On the lower left corner of WMP below the glider bar, there is a wavy block. When I put the cursor on it, it shows the message: "Network is too busy to play file at original quality".
    Any suggestions are appreciated.
    H

    Hi
    I presume that the resulting "internet" video did contain the original 'dialogue' audio, just not your additional music?
    When exporting to a movie, there is a dialog box where you can select which of the original movie's audio tracks to include (the "dialogue" audio). If you choose to keep this, you will get a video with multiple audio tracks (Dialogue and Music). Often the additional tracks are removed when uploading.
    The solution is to import the original "dialogue" audio into Logic, mix appropriately, then export to movie *without* the original track from the original movie (ie you get 1 audio track with everything in it, directly from Logic).
    HTH
    CCT

Maybe you are looking for

  • Acrobat x standard,  win 8,   paper sizes Arch A B C D E ...  avail when plot to hp plotter,  not avail when plot to pdf

    Acrobat x standard,  using latest win 8,   paper sizes Arch A B C D E ...  avail when plot to hp plotter,  not avail when plot to pdf any ideas?

  • Save an excel in specific loaction

    Iam exporting my report from crystal report to excel by using a button and formatting this excel sheet using macro by clicking another button.When i export to excel this opens the excel sheet in the browser.i don't want to be seen in the browser but

  • Portal & business Role updation

    Hi Gurus, here i have created and assigned transaction launcher and logical links under navigation bar profile for "Zsalespro" role and it is working fine in webui. but myclient is using portal. so question is "do i need to do any additional setting

  • Photoshop CS5 crashes when I try to save.

    I've tried everything I can think of and read on the subject.  I've reset my preferences, I've deleted the .psp file, I've checked the scratch disk space, and I've tried to un-install and re-install the program.

  • Web based use of Ipod (5g)

    Hello, I've got an old iPod (5g) that I until recently used as a music player at work. We've just gotten new computers, which is nice, but we've also become restricted users, meaning I can no longer install itunes. Bummer. The support guys from my jo