Upload to LMS Issue

When uploading the scorm zip file from captivate to my LMS
(SumTotal version 7.1) I am getting the following error message
"An error occurred while parsing imsmanifest.xml. Attribute
http://www.w3.org/2001/XMLSchema-instance}schemalocation'
is not defined."
Has anyone experienced this before?
Thanks,
Henry

Below is the xml manifest if that could help determine the
solution?
<?xml version="1.0" encoding="UTF-8" ?>
- <manifest identifier="OneSource" version="1.3" xmlns="
http://www.imsglobal.org/xsd/imscp_v1p1"
xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance"
xmlns:imscp="
http://www.imsglobal.org/xsd/imscp_v1p1"
xmlns:adlcp="
http://www.adlnet.org/xsd/adlcp_v1p3"
xmlns:imsss="
http://www.imsglobal.org/xsd/imsss"
xsi:schemaLocation="
http://www.imsglobal.org/xsd/imscp_v1p1
imscp_v1p1.xsd
http://www.adlnet.org/xsd/adlcp_v1p3
adlcp_v1p3.xsd
http://www.imsglobal.org/xsd/imsss
imsss_v1p0.xsd
http://ltsc.ieee.org/xsd/LOM
lomStrict.xsd">
- <metadata>
<schema>ADL SCORM</schema>
<schemaversion>CAM 1.3</schemaversion>
- <lom xmlns="
http://ltsc.ieee.org/xsd/LOM">
- <general>
- <identifier>
<catalog>Adobe Captivate Course</catalog>
<entry>OneSource</entry>
</identifier>
- <title>
<string language="x-none">Account Opening
Tutorial</string>
</title>
- <description>
<string language="x-none" />
</description>
- <keyword>
<string language="x-none" />
</keyword>
</general>
- <lifeCycle>
- <version>
<string language="x-none" />
</version>
- <status>
<source>LOMv1.0</source>
<value>final</value>
</status>
</lifeCycle>
- <metaMetadata>
- <identifier>
<catalog>test</catalog>
<entry>test 1000</entry>
</identifier>
<metadataSchema>LOMv1.0</metadataSchema>
<metadataSchema>SCORM_CAM_v1.3</metadataSchema>
</metaMetadata>
- <technical>
<format>text/html</format>
<location>.</location>
</technical>
- <educational>
- <typicalLearningTime>
<duration>PT0H0M</duration>
- <description>
<string language="x-none">Average length of time to
experience this Adobe Captivate Project.</string>
</description>
</typicalLearningTime>
</educational>
- <rights>
- <cost>
<source>LOMv1.0</source>
<value>no</value>
</cost>
- <copyrightAndOtherRestrictions>
<source>LOMv1.0</source>
<value>no</value>
</copyrightAndOtherRestrictions>
</rights>
- <classification>
- <purpose>
<source>LOMv1.0</source>
<value>idea</value>
</purpose>
- <description>
<string language="x-none" />
</description>
- <keyword>
<string language="x-none">Adobe
Captivate</string>
<string language="x-none" />
</keyword>
</classification>
</lom>
</metadata>
- <organizations default="OneSource_ORG">
- <organization identifier="OneSource_ORG">
<title>Account Opening Tutorial</title>
- <item identifier="OneSource_SCO" isvisible="true"
identifierref="OneSource_SCO_RES">
<title>Account Opening US
Citifolio_SCO_Title</title>
- <imsss:sequencing>
- <imsss:objectives>
- <imsss:primaryObjective objectiveID="PRIMARYOBJ"
satisfiedByMeasure="true">
<imsss:minNormalizedMeasure />
</imsss:primaryObjective>
</imsss:objectives>
</imsss:sequencing>
<adlcp:dataFromLMS>.</adlcp:dataFromLMS>
<adlcp:timeLimitAction>exit,message</adlcp:timeLimitAction>
</item>
</organization>
</organizations>
- <resources>
- <resource adlcp:scormType="sco"
identifier="OneSource_SCO_RES" type="webcontent" href="Account
Opening US Citifolio.htm">
<file href="Account Opening US Citifolio.swf" />
<file href="Account Opening US Citifolio.htm" />
<file href="SCORM_support/scorm_support.htm" />
<file href="SCORM_support/scorm_support.js" />
<file href="SCORM_support/scorm_support.swf" />
</resource>
</resources>
</manifest>

Similar Messages

  • LMS issue (Plateau 5.8) and Captivate 5

    Hi.
    We need help to solve the problem and get this Captivate 5 module to run on the Learning Management System. 
    The module was set to publish in SCORM 1.2.
    Quiz = enable reporting for this project
    LMS Standard = SCORM 1.2
    Report Status = Complete / Incomplete
    Report to LMS = Percent
    Choose Report Data = Quiz Results Only
    Reporting Level = Report Score.
    The Plateau 5.8 LMS team is receiving the following error while trying to post and run a Captivate 5 module.
    The tech person discovered that what’s happening in the attached code is that the module will try to communicate with the LMS for 1 second.  
    By that time if the LMS does not communicate back, an error is generated and the script times out.
    Since this threshold is really low, and the page may take more than this time to load, he tried updating the script to wait for a full minute before timing out.  (See below).  However, that did not solve the problem.
    This chunk of javascript code was created by Captivate, (on line 236 of the html file) when the module was published:
    1000 = 1 sec.  10,000 would be 10 seconds. He set the threshold to 1 min.  (added two zeros, i.e. (*100000).
    var timeCurrent_int = new Date().getTime();
                                                    var timeLimit_int = new Date().getTime() + (intIntervalSecs * 1000);
                                                    // This simply loops for a set period of time, waiting for the API to
                                                    // load and/or be found.  A better solution would be to use setInterval
                                                    // and on the timeout, redirect or load the resulting Captivate file.
                                                    while((g_objAPI == null) && timeCurrent_int < timeLimit_int)
                                                                    g_objAPI = getAPI(g_intAPIOrder);
                                                                    timeCurrent_int = new Date().getTime();
                                                    if(g_objAPI != null)
                                                                    strURLParams = "?SCORM_API=" + g_zAPIVersion + "&SCORM_TYPE=" + g_intAPIType;
    Is there a different setting, option, or preference to use from within Captivate 5 to get it to run properly on the LMS?  Or is there something else to change manually in the code to get it to work properly?
    There are hundreds of people waiting to take this module, so time is of the essence!
    Thanks.
    CB.

    Hi.
    You are welcome.  Glad it was useful.
    CB.
    Date: Sat, 5 Nov 2011 06:19:51 -0600
    From: [email protected]
    To: [email protected]
    Subject: LMS issue (Plateau 5.8) and Captivate 5
    Re: LMS issue (Plateau 5.8) and Captivate 5 created by RodWard in Quizzing/LMS - View the full discussion
    Excellent information!  Thank you for posting these tips.
    I'm going to add a link to this thread in my Adobe Captivate LMS Compatibility Guide under the section for Plateau LMS.
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4009142#4009142
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4009142#4009142. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Quizzing/LMS by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Scorm package in CP6 not uploading to LMS - they claim corrupted?

    Hi,
    I created a lesson with an embedded flv file in captivate 6. I publish the content and can upload to the scorm cloud just fine. When I upload to my LMS (Inquisiq), it spits out an error and will not upload. I have contacted ICS for a solution.  They believe my zip file to be corrupted. They unzipped it and rezipped it and now it uploads fine.  So I tried pulbishing another file.  Upload does not work. I unzipped and rezipped and now it uploaded fine. 
    I am publishing for scorm 1.2, swf, html5 & pdf options selected.
    Anyone have a clue what might be going on here?
    Thanks,
      Lori

    Lori,
    After unzipping do they made any change, like removing any file, adding, modifying, structuring?
    I think if you get an error on ICS your LMS admin must have a details log for identifying the error message and cause for that. He should be able to isoltae how rezipping it solves it?
    Also, can you keep course in just SWF or HTML5 output nad then publish it to see if it could be cause of packaging different file format could be an issue ?
    Thanks,
    Anjaneai

  • LMS issues

    Hello,
    I am currently having an issue of adding a module into an LMS. The lms the customer is using is an older one that uses .dlo and the imsmanifest.xml files and when the module is added to the lms, it just crashes with no error message. I can not add the imsmanifest.xml file to the lms. I am having similar issues with other LMS systems such as OLAT and Moodle.
    Here is a quote directly from the customer explaining the issue:
    "Our system uses a proprietary compiled file called a .dlo, which I assume stands for Docent Learning Object, and an .xml file.  These two work together to hold all of the information one would find in a imsmanifest.xml file.  Although the system uses this for objects created in Docent Outliner and published to the LMS, the import process supports AICC/SCORM packages, Pathtech courses and other Web-Based Courses.
    When I try to upload the files, I am doing it from the decompressed version.  The system may be looking for a zip file but since I can’t see the source of the import class, I can’t be certain."
    I will be checking periodically for reply's if further information is needed. I could really use some help if anyone has advice or possible troubleshooting ideas.
    Thanks,
    Joe

    Here is an error message recieved by our customer using an OLAT LMS.
    For OLAT LMS application (scorm 1.2), there was an error message as follows:
    "Learning resource could not be added.  Either its format or its version is not support by OLAT. "

  • Uploading flv files issue

    I upgraded to DW CS3 and now when I try to upload a flv file,
    it says it can't complete it and the file isn't updated. I go back
    to my old version of DR8 and it works just fine. When I synchronize
    in CS3 it will tel me that files need to be updated, but when I try
    to do it, it says it can't complete. Why? This doesn't happen EVERY
    time though which makes it even harder to figure out. I tried
    deleting the version on the server, but it still won't upload the
    new version. How am I supposed to update my site and get the new
    files up? I make a lot of changes to the site, then synchronize
    it.That is the only way to be sure I haven't missed some files. Can
    someone tell me why it works ok in DW8 but not in CS3? Is there a
    setting somwhere I need to change? Thanks for any help.
    Larry

    Welcome to our community, Leslie
    I'm thinking that what's happening here is the LMS simply
    doesn't recognize that the .FLVs should be included. So I'm
    wondering if the following workaround would work for you. When you
    insert the FLV reference, code an absolute path. For example, lets
    say the LMS serves the Captivate up and the logical path is
    http://www.somesite.com/training/CaptivateMovie.htm.
    Maybe you store all the .FLV files in this locaton:
    http://www.somesite.com/training/videos.
    So you would then code the link to your FLV to use that explicit
    path of
    http://www.somesite.com/training/videos/MyVideo.FLV.
    I'm not 100% sure this will work, but I can't really fathom a
    reason it shouldn't.
    Cheers... Rick

  • Error with Upload to LMS

    I seem to be having a problem uploading a course created and
    exported in Captivate2 to an LMS (exported in SCORM 2004 standard).
    Can anyone help with this (please)?
    The SCORM-compliant LMS (Plateau LMS) generates the follwoing
    warning when we attempt to import the manifest file to the LMS:
    "Warning details:
    The parser could not validate the SCORM Import file due to
    the follwoing reason(s). Proceeding with import may incompletely
    import the file, or the file itself may be corrupt. You may choose
    to import the file at your own risk.
    Error on line 10: cvc-elt.1: Cannot find the declaration of
    element 'manifest'."
    Many thanks,
    Warwick

    I had a bad feeling that it might.  In truth I have never heard of anyone using the Adobe Multi-SCORM Packager to successfully package SCORMs created with anything other than Adobe Captivate.  So when you mentioned using Adobe Presenter my first thought was that perhaps these SCOs are not fully compatible with the Multi-SCORM Packager.  The version of the packager app is only usually ever compatible with Captivate SCOs from the same version as well (e.g. version 7 Cp SCOs with the SCORM Packager that is installed with Cp7.  I believe this is related to nuances or differences within the SCORM drivers for each Captivate version.
    My suggestion is that you should probably ditch the idea of trying to use Adobe's own SCORM packager app with Presenter SCOs and instead look into using the RELOAD Editor app that can be downloaded from the internet (Google for it).

  • Module with cpvc slides not working after uploading to LMS

    Everything works fine when previewing, but when it's uploaded to our LMS, it fails to load the video but continues to show the objects (shapes, text boxes) in that video slide.

    Did you also upload the js file to the directory indicated in the html code...
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    I don't see that file if I try to link to it, but that your swf is showing at all without that file is a bit of a wondering.

  • Adobe Captivate 4 - Tracking AICC to the LMS issue

    Hi,
    I created a Captivate 4 Quiz; I published the Quiz with the AICC reporting option and as a result Captivate 4 created the files shown below:
    I hosted all these files in the same server, same folder, and same domain where the Isoph Blue (Learn Something) LMS is installed. I also published the course from the LMS and it seems to be OK.
    When participants login and launch the course from the LMS the course works very well. All questions are shown, correct and incorrect answers are also shown at the end. The quiz window is closed at the end without problem.
    The issue is that there is not notification to the LMS of course completion, the Icon (located on the right of the image shown below) that tells the participant course is completed does not change the status. It does not change from Launch to Print Certificate status.
    The Captivate is not tracking correctly course completion to the LMS. So, we can not track user activity neither print the certificate at the end of the course.
    Can you please help me troubleshoot this issue?
    What can I do to make this course completion notification works with the LMS?
    I can provide more information, files and details on how I created the course, etc.
    Note: Isoph Blue is AICC compatible, there are other (*.aspx) courses that are tracked via AICC and they are tracked correctly, the issue is only with Captivate 4. We also have Captivate 3.

    Hi there
    I certainly cannot claim to be any sort of expert on the H.264 format, but Captivate 4 only produces SWF, EXE and AVI formats. So you are correct in that you would need to convert from either the SWF or AVI format to an H.264 format. From what I understand, AVI and MP4 are the two file extensions you may find H.264 file format used. So I suppose it's possible to say that if you have a CODEC (Compressor/Decompressor) installed for H.264, Captivate could spit out an AVI encoded in H.264 format.
    More information on H.264 at the links below:
    H.264 FAQ & Basic Conversion Guide
    WikiPedia article on H.264 format
    Hopefully this helps... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Cannot upload iphoto book - issues

    This has been a recurring problem and to be honest it is very frustrating.  Here is a summary of my issues:
    1. Book upload (generally in most cases is a XLarge, 50+ pages) gets all the way to the end and - "An error occurred uploading your order".  I retry, an hour or two later same thing.  This has happened on my last 8 attempts on 2 different books.
    I have tried the following fixes:
    - installing mavericks and new iphoto
    - using hard wired ethernet cable as opposed to wifi
    - doing all the suggested fixes from these forums, plists and all that.
    - my apple ID is fine - works for everyrhing else.
    I had a run a little while back when using the ethernet cable that all my books worked, 6+ over a 6 week period Mar-Apr but recently (this last month) back to failure.
    *** Apple? What is happening?  No one can find a solution.  Apple over the phone support cannot help, they dont have a fix.  The books are nice, I'd rather not have to go elsewhere, but seriously this is beyond a joke.
    Any suggestions welcome, please......

    Ok,
    I solved my own problem and frankly i'm amazed.
    I followed some suggested tips like booting in safe mode but I didnt upload the book in that.
    I ran a speed test for my internet, my upload was 0.43mbps, fairly standard for ADSL2+ in Australia.  This probably explains why it was taking 2+ hours to upload.  During that time I guess anything can happen with my line, hence the failures if the internet drops out.
    I used my iPhone to tether.  I found the place in my housed with the best 4G/LTE reception - 1 bar off full coverage. Began the book upload.  IT TOOK LESS THAN 2 MINUTES to upload an 80 page book.
    I still cant believe it.  I'm thankful 4G coverage has recently come to my area.  This will be my method to upload books every time!!
    I'm quite happy.
    So my suggestion is that if your books are slow to upload or fail during the process, check your upload speed and if you can tether from an iphone or 4G device, give it a try worked for me - amazingly well.

  • Active Learner LMS issue

    Hi
    Has anyone used Captivate 4 with the Active Learner LMS
    (provided by RDC)?
    When AICC is chosen as the LMS within Captivate and the
    training module is brought into Active Learner (via the 4 course
    structure files), this page keeps appearing
    'https://hosted2.activelearner.com/ActiveLearner/ASP/LOAICCCommunicator.asp'
    when I try to move through the module? Every slide brings up the
    dialog box - I have since determined that the content of the dialog
    box is fine - it just shouldn't be appearing?
    This is the content:
    error=0
    error_text=
    version=3.5
    aicc_data=[Core]
    Student_ID=GB88888
    Student_Name=Leggett, John
    Output_File=
    Lesson_Location=
    Credit=Credit
    Lesson_Status=N
    Path=
    Score=
    Time=00:00:04
    [Core_Lesson]
    [Core_Vendor]
    [Student_Data]
    Mastery_Score=80
    Max_Time_Allowed=
    Time_Limit_Action=C,N
    If 'Enable Reporting for this project' is deselected in
    Captivate 4 and the learning module brought back into Active
    Learner. the
    'https://hosted2.activelearner.com/ActiveLearner/ASP/LOAICCCommunicator.asp'
    page does not appear? Mind you, I would expect this.
    Has anyone come across this 'LOAICCCommunicator.asp' in other
    LMS platforms before? I have tried all settings within Captivate 4.
    How do I find out a list of LMS's that Captivate is
    'compabible' with?
    Thanks in advance if anyone can help with this dialog box
    issue as I am pulling my hair out!!
    Kind Regards
    John

    I had this problem if the client and the servers time were not within about a minute of each other. Do you have the mbp and the xp machine using ntp from your server?...

  • Video freezes when uploaded on LMS

    Hi,
    I created a file in Adobe Captivate 7 trial version. Swf output, published it. The motion video was recorded using the 'record additional slides' function in captivate. When I view the .htm files offline, locally, they work fine.
    However, after uploading the zip file, and viewing the file, the audio and static slides work fine, but the motion video FREEZES right at the beginning of the video while the audio continues.
    How do I overcome this?
    Thanks!

    OK.  Based on this new evidence my guess would be that your LMS server is not set up to serve MP4 video files.  Captivate 5.5 used FLV video for Full Motion Recordings.  Cp6 and Cp7 now record simulations as CPVC files which are then published to MP4 video before insertion into Captivate projects. 
    By default web servers are only initially set up to serve certain types of files.  My guess would be that your LMS web server permits FLV video files but has not been set to also serve MP4.  SCORM Cloud IS set up to serve MP4 and that's why your content works on SCORM Cloud but not on your current LMS.

  • Upload and resize issue

    Hi,
    I'm having a very strange issue with Upload and resize, using Imagemagik as library. I usually use "Proportional - Fixed with", with the width I need. But the upload page gives me this error:
    Notice: Use of undefined constant height - assumed 'height' in /home/webadmin/mydomain.com/html/includes/common/lib/image/KT_Image.class.php on line 338
    The upload is configured as this:
    function Trigger_ImageUpload(&$tNG) {
    $uploadObj = new tNG_ImageUpload($tNG);
    $uploadObj->setFormFieldName("imagen_pob");
    $uploadObj->setDbFieldName("imagen_pob");
    $uploadObj->setFolder("../poblaciones/");
    $uploadObj->setResize("true", 800, 0);
    $uploadObj->setMaxSize(2500);
    $uploadObj->setAllowedExtensions("gif, jpg, jpe, jpeg, png");
    $uploadObj->setRename("custom");
    $uploadObj->setRenameRule("{id_pob}.{KT_ext}");
    return $uploadObj->Execute();
    Are you having issues with this trigger?
    Thank you,
    Ruben
    Edit: If I use GD the error is this one
    Fatal error: Allowed memory size of 25165824 bytes exhausted (tried to allocate 16432 bytes) in /home/webadmin/mydomain.com/html/includes/common/lib/image/KT_Image.class.php on line 1774
    There is no room for just 16432 bytes?

    Thanks for your reply.
    So if I understand the script works fine on one server (memorylimit 120mB) but not the other (memorylimit 20 or 24 mB)?
    That is the difference. Now I have made a restriction on both the size (kB) and max height/max width. That gives the opportunity to upload images of up to 1.2 mB and maxHeight/Width of 2300 pixels (memorylimit of  20 mB). The figures were found by trial and error.
    Well sounds like a server issue. Is the new server php-cgi or apache mod php?
    I don't know but I will have a look (Probably apache). Out of curiosity- will there be a difference?
    Have you tried making a .htaccess file with php commands to control memory needed?
    Yes and it didn't work - either I have made an error or the host have found out that many people due to still larger imagefiles do their best to bypass these memory limitations
    I am currently looking into som javascripts (FLEX (found one in the ADOBE forum that may be able to do the trick) /FLASH may also be a possibility). Hoping to find a way to resize on the client and upload the reduced image to the host in one go. Many customers requests such a feature.
    Thanks for your help.

  • Quiz works until uploaded to LMS, very strange

    In Captivate 3, if we preview the project, answer the quiz questions, they respond with the appropriate correct/incorrect response. However, when it's been uploaded to our lms, eLogic, sometimes it reports a correct answer as incorrect and vice versa. It's happened on two pc's... We had used the copy question option to pull the slides into this project, and my next step will be to delete them and recreate them, but other than that,I can't think how to troubleshoot. Any ideas?
    Thanks in advance!

    No worries. My co-worker previewed it before uploading it to the LMS and the quiz worked. After uploading it, she went through the course and that's when she found the question feedback indicated answers that were correct to be incorrect. When we re-opened the course and took the quiz again, the question feedback changed and indicated that the correct answers where indeed correct. If I had not seen it for myself I would not have believed it. But there it is.

  • Regarding Upload of Goods Issue  data from flat file

    Hi,
    i am working with interface for Goods Issue
    The following fields are provided in the flat file: BLDAT , BUDAT ,BWARTWE , WERKS and LGORT.
    We also have to maintain Internal Order number in SAP which is not provided in the flat file ; how to go about it?
    I have a doubt: since item level data is not provided in the flat file ; how that data will be captured ?
    Should I go for BAPI_GOODSMVT_CREATE or write a BDC ?

    Hi,
    You can only do a goods issue against a delivery. I dont understand how you can Issue goods using a flat file.you will have to check with your functional consultant.
    regards,
    Mahesh

  • Image upload safari ios6 issue -file name always image.jpg

    I could not wait for ios6 when I found out safari allowed for image / photo upload through safari web forms.
    I tested and see the image in form..hit submit and it uploads with the file name image.jpg
    Do it again and same file name for a different photo. This is completely useless. If I upload to my website it just overwrites. 99% of the masses need a unique name, when uploading. Why can it now use the file name in the photos folder?
    Even emailing them out it holds a generic name.
    Looks like an easy fix...insert file name not default name. Lets fix this Apple..or your new feature is as worthless as not having it at all.
    Disappointed to say the least...no I am dumbfounded.

    @kdmasterdas: How did you rename the file??
    It really *** that Apple is not fixing this problem while it's a big problem, especially in a business environment.

Maybe you are looking for

  • At user-command with input on

    Hi,        In the below code i am using an option input on ,where the user has to give the inputs manually. After giving the input,if i give save the values which are fetched from itab are saved in ztable. wa_new-idrum1 which is given by user is not

  • Task list creation

    Experts I have an error message when I create a task list for an equipment. I have configured the number range for task list. Object ROUTING_E number range 01 does not exist Message no. CV711 venkat

  • Error in J1IG

    Dear Guru's, While excise invoice at depots by using J1IG, I am facing the following error.. "Error in allocating RG23D document number Interval not found Number object J_1IRG23D     Message no. 8I336" Please help me out Regards, CS

  • Persistent permissions problem

    I don't know how often I have repaired my permissions now, both from my running OS and from the Leopard DVD - but they are not correct. I still can't delete files in my documents folder without identifying as admin, replace apps etc. etc. I get endle

  • Sound on MacBook Pro doesn't work sometimes

    I have the early 2011 pro and sometimes the volume doesnt play at all, even when i lower or raise the volume..No music plays or video at all. Even with headphones plugged in or not plugged in.The only way for the sound to come back is if i restart th