Contacting OTN admins to get an older release of Oracle Data Integrator

Hello everyone,
We developed a product using Oracle Data Integrator (ODI) 10.1.3.3.1 but the current release is 10.1.3.4 and the older release cannot be found anywhere (OTN /SAC). So, i am trying to reach out to OTN admins to get access of ODI 10.1.3.3.1 so that we could ship that to customers. Does someone know how can i reach them or better yet if an OTN admin reads this thread, could you please respond?
Thanks,
Srini.

You would need to contact the product manager about that.

Similar Messages

  • Set restriction to get messages older than a specific date using EWS?

    Hi, I'm new working with EWS and I have found some code to set a restriction to help me filter messages "between" to dates, but I need to be able to obtain emails that are "older" than a specific date so I can delete them.  My application needs to be
    able to clean up a mailbox to only to keep up to so many days/weeks worth of emails.  The code I have to search for emails that works
    between dates is:
    public void SetDateRestriction(FindItemType findItemRequest)
    DateTime dateStart = DateTime.Now;
    DateTime dateEnd = DateTime.Today.AddDays(-180);
    PathToUnindexedFieldType dateSentPath = new PathToUnindexedFieldType();
    dateSentPath.FieldURI = UnindexedFieldURIType.itemDateTimeSent;
    IsGreaterThanOrEqualToType isGreaterThanOrEqual = new IsGreaterThanOrEqualToType();
    isGreaterThanOrEqual.Item = dateSentPath;
    FieldURIOrConstantType dateConstant = new FieldURIOrConstantType();
    ConstantValueType dateConstantValue = new ConstantValueType();
    //dateConstantValue.Value = string.Format("{0}-{1}-{2}T00:00:00Z", dateStart.Year.ToString(), dateStart.Month.ToString(), dateStart.Day.ToString());
    dateConstantValue.Value = dateStart.ToUniversalTime().ToString("yyyy-MM-ddT00:00:00Z");
    dateConstant.Item = dateConstantValue;
    isGreaterThanOrEqual.FieldURIOrConstant = dateConstant;
    // less than or equal to
    PathToUnindexedFieldType dateSentPath1 = new PathToUnindexedFieldType();
    dateSentPath1.FieldURI = UnindexedFieldURIType.itemDateTimeSent;
    IsLessThanOrEqualToType lessThanOrEqualTo = new IsLessThanOrEqualToType();
    lessThanOrEqualTo.Item = dateSentPath1;
    FieldURIOrConstantType dateConstant1 = new FieldURIOrConstantType();
    ConstantValueType dateConstantValue1 = new ConstantValueType();
    //dateConstantValue1.Value = string.Format("{0}-{1}-{2}T00:00:00Z", dateEnd.Year.ToString(), dateEnd.Month.ToString(), dateEnd.Day.ToString());
    dateConstantValue1.Value = dateEnd.ToUniversalTime().ToString("yyyy-MM-ddT00:00:00Z");
    dateConstant1.Item = dateConstantValue1;
    lessThanOrEqualTo.FieldURIOrConstant = dateConstant1;
    RestrictionType restriction = new RestrictionType();
    AndType andType = new AndType();
    andType.Items = new SearchExpressionType[] { lessThanOrEqualTo , isGreaterThanOrEqual };
    restriction.Item = andType;
    findItemRequest.Restriction = restriction;
    How can I modify this to give me emails older than a specific date?  Also any input on doing the deleting would also be greatly appreciated!
    Best Regards,
    Nelson

    Thank you very much Glen!  I can't believe it was that easy.  Works perfect.  I will work on the DeleteItemType.  I was also wondering if there was a way to detect if an email is an Out-of-Office (OOO) or Undeliverable message? 
    My app goes through all the emails and I need to skip any that are OOO or Undeliverable messages.  I've learned how to use the SearchFilter and I find that easier and more straight forward than setting the restrictions.  I'm also able to use a SearchFilter
    to get emails older than the specified date. 
    Here's my new code for reading unread emails using the SearchFilter and paging (for better efficiency). 
    1 - Is there anyway to tell the filter to get AllProperties without having to specify each one using ItemSchema or EmailMessageSchema?
    2- What is the difference between those two (any advantages over one or the other)?
    3 -Is there any reason to even be using the ExchangeServiceBinding here anymore since it seems the ExchangeService object is all I need?  In my old code, I was using the ExchangeService object to do an AutoDiscover and then using that to set the URL
    in the ExchangeServiceBinding.  What are the main to difference/uses for these to objects?  Sorry if that's a dumb question.
    private void GetUnReadEmails(string sMailboxName)
    // Create the binding to Exchange
    ExchangeServiceBinding esb = new ExchangeServiceBinding();
    esb.RequestServerVersionValue = new RequestServerVersion();
    //Console.WriteLine("Exchange version: " + esb.RequestServerVersionValue.Version);
    //esb.RequestServerVersionValue.Version = ExchangeVersionType.Exchange2007_SP1;
    ExchangeService service = GetBinding(sMailboxName);
    Console.WriteLine("Exchange version: " + service.RequestedServerVersion);
    esb.Url = service.Url.ToString();
    esb.Credentials = new NetworkCredential(Username, Password, Domain);
    Mailbox mb = new Mailbox(sMailboxName);
    FolderId fid1 = new FolderId(WellKnownFolderName.Inbox, mb); // where fid1 was WellKnownFolderName.Inbox
    //FindFoldersResults findResults = service.FindFolders(fid1, new FolderView(int.MaxValue));
    ItemView iv = new ItemView(50, 0);
    FindItemsResults<Item> findResults = null;
    PropertySet ivPropSet = new PropertySet(BasePropertySet.IdOnly);
    //SearchFilter ivSearchFilter = new SearchFilter.SearchFilterCollection(LogicalOperator.And, new SearchFilter.IsEqualTo(EmailMessageSchema.IsRead, false), new SearchFilter.ContainsSubString(ItemSchema.Subject,"MSGID:"));
    SearchFilter searchFilter = new SearchFilter.IsEqualTo(EmailMessageSchema.IsRead, false);
    iv.PropertySet = ivPropSet;
    do
    findResults = service.FindItems(fid1, searchFilter, iv);
    string sText = "";
    if(findResults.Items.Count > 0)
    //PropertySet itItemPropSet = new PropertySet(BasePropertySet.IdOnly) { EmailMessageSchema.Body };
    PropertySet itemPropSet = new PropertySet(BasePropertySet.IdOnly) {ItemSchema.Subject, ItemSchema.Body, ItemSchema.DateTimeReceived, ItemSchema.HasAttachments, ItemSchema.ItemClass};
    itemPropSet.RequestedBodyType = BodyType.Text;
    service.LoadPropertiesForItems(findResults.Items, itemPropSet);
    //service.LoadPropertiesForItems(findResults.Items, itItemPropSet);
    //service.LoadPropertiesForItems(findResults, new PropertySet(ItemSchema.Subject, ItemSchema.Body, ItemSchema.DateTimeReceived));
    Console.WriteLine("Total items: " + findResults.TotalCount);
    foreach (Item item in findResults.Items)
    Console.WriteLine("ItemID: " + item.Id.UniqueId);
    Console.WriteLine("Subject: " + item.Subject);
    Console.WriteLine("Received date: " + item.DateTimeReceived);
    Console.WriteLine("Body: " + item.Body);
    Console.WriteLine("Has attachments: " + item.HasAttachments);
    //Mark the email as read
    EmailMessage emEmail = EmailMessage.Bind(service, item.Id);
    //emEmail.Load();
    emEmail.IsRead = true;
    emEmail.Update(ConflictResolutionMode.AlwaysOverwrite);
    sText += "Subject: " + (item.Subject.Trim()) + " ";
    //sText += "DisplayTo: " + (item.DisplayTo.Trim()) + " ";
    sText += "DateTimeReceived: " + (item.DateTimeReceived.ToString()) + " ";
    sText += "ItemClass: " + (item.ItemClass.Trim()) + " ";
    sText += "\r\n";
    else
    sText = "No unread emails";
    Console.WriteLine("No unread emails");
    txtItems.Text = sText;
    iv.Offset += findResults.Items.Count;
    } while (findResults.MoreAvailable == true);
    Thanks again for your time.  I appreciate it.
    Nelson

  • Can I get an older release of Firefox? 36.0 does not play well with Windows 7.

    Firefox 36.0.4 does not play well with Windows 7. If it opens at all, it freezes within a minute so the screen goes pale and I get the classic spinning circle of death. Then the header says (not responding).
    Ideally I would like to drop back to version 32 or 33, but 34 and 35 had fewer problems.
    Can I find older versions anywhere?

    You can [[Install an older version of Firefox]] any time. But which will cause significant security risk. So If you can't use the latest version of Firefox, we recommend that you use the latest version of another browser.
    If the latest version of Firefox is causing problems for you or you just don't like something about it, please give us feedback about it here:
    [https://input.mozilla.org/en-US/feedback/ Submit your feedback and suggestions about Firefox]
    Anyway head for the ftp for older version but please be careful with these: ftp://ftp.eu.mozilla.org/pub/firefox/releases/

  • Getting error while running ua.bat file of Oracle Data Integrator 12cR1 (12.1.2.0.0) version

    Hi,
    I am using windows 7 professional(service pack 1) 64 bit operating system.
    After installing the odi 12c (enterprise edition) by executing the odi_121200.jar file I am getting the following error while trying to run the ua.bat file.
    [2013-10-24T16:49:07.861+05:30] [Framework] [INCIDENT_ERROR] [UPGAST-00056] [upgrade.Framework] [tid: 1] [ecid: e9250ad8-50dc-45fe-83f5-5c01e7a7dcb4-00000001,0] error initializing upgrade plug-in for ODI.ODI1
    [2013-10-24T16:49:07.861+05:30] [Framework] [INCIDENT_ERROR] [] [upgrade.Framework] [tid: 1] [ecid: e9250ad8-50dc-45fe-83f5-5c01e7a7dcb4-00000001,0] Cause: An unexpected error occurred initializing an upgrade plug-in.
    [2013-10-24T16:49:07.861+05:30] [Framework] [INCIDENT_ERROR] [] [upgrade.Framework] [tid: 1] [ecid: e9250ad8-50dc-45fe-83f5-5c01e7a7dcb4-00000001,0] Action: Contact Oracle Support Services.  See the secondary error message for additional details.
    [2013-10-24T16:49:07.861+05:30] [Framework] [INCIDENT_ERROR] [] [upgrade.Framework] [tid: 1] [ecid: e9250ad8-50dc-45fe-83f5-5c01e7a7dcb4-00000001,0] [[
    java.lang.reflect.InvocationTargetException
      at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
      at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
      at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
      at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
      at oracle.ias.update.plugin.Plugin.instantiatePlugin(Plugin.java:248)
      at oracle.ias.update.plugin.Plugin.<init>(Plugin.java:229)
      at oracle.ias.update.plugin.Plugin.getPlugin(Plugin.java:180)
      at oracle.ias.update.plan.PlanStep.getPlugin(PlanStep.java:335)
      at oracle.ias.update.plan.PlanString.<init>(PlanString.java:66)
      at oracle.ias.update.plan.PlanCustom.<init>(PlanCustom.java:74)
      at oracle.ias.update.plan.PlanStep.<init>(PlanStep.java:189)
      at oracle.ias.update.plan.PlanComponent.<init>(PlanComponent.java:203)
      at oracle.ias.update.plan.Template.load(Template.java:161)
      at oracle.ias.update.plan.Template.loadAllTemplates(Template.java:102)
      at oracle.ias.update.UpgradeDriver.loadConfiguration(UpgradeDriver.java:838)
      at oracle.ias.update.UpgradeDriver.main(UpgradeDriver.java:257)
      at oracle.ias.update.UpgradeDriver.main(UpgradeDriver.java:175)
    Caused by: java.util.MissingResourceException: Can't find oracle.ias.update.plugin.odi.bundle.ODIResourceBundle bundle
      at java.util.logging.Logger.setupResourceInfo(Logger.java:1518)
      at java.util.logging.Logger.<init>(Logger.java:265)
      at java.util.logging.Logger.<init>(Logger.java:260)
      at oracle.ias.update.UpgradeLogger.<init>(UpgradeLogger.java:60)
      at oracle.ias.update.UpgradeLogger.getLogger(UpgradeLogger.java:93)
      at oracle.ias.update.LoggingManager.create(LoggingManager.java:249)
      at oracle.ias.update.plugin.UpgradePlugin.createPluginLogger(UpgradePlugin.java:195)
      at oracle.ias.update.plugin.UpgradePlugin.<init>(UpgradePlugin.java:181)
      at oracle.ias.update.plugin.odi.ODIPlugin.<init>(ODIPlugin.java:136)
      ... 17 more
    [2013-10-24T16:49:07.869+05:30] [Framework] [ERROR] [UPGAST-00259] [upgrade.Framework] [tid: 1] [ecid: e9250ad8-50dc-45fe-83f5-5c01e7a7dcb4-00000001,0] The getInitialValue method for plug-in ODI.ODI1 will not be called due to a previous error.
    [2013-10-24T16:49:07.869+05:30] [Framework] [ERROR] [] [upgrade.Framework] [tid: 1] [ecid: e9250ad8-50dc-45fe-83f5-5c01e7a7dcb4-00000001,0] Cause: An error occurred when loading or initializing the plug-in which prevents the getInitialValue method from executing.
    [2013-10-24T16:49:07.869+05:30] [Framework] [ERROR] [] [upgrade.Framework] [tid: 1] [ecid: e9250ad8-50dc-45fe-83f5-5c01e7a7dcb4-00000001,0] Action: Review the log file for additional details.
    [2013-10-24T16:49:07.870+05:30] [Framework] [INCIDENT_ERROR] [] [upgrade.Framework] [tid: 1] [ecid: e9250ad8-50dc-45fe-83f5-5c01e7a7dcb4-00000001,0] UPGAST-00251: An error occured reading Upgrade Descriptor file ODI\INSTALLATION\odi12cInstallation_1\odi\plugins\upgrade\odi.xml
    [2013-10-24T16:49:07.870+05:30] [Framework] [INCIDENT_ERROR] [] [upgrade.Framework] [tid: 1] [ecid: e9250ad8-50dc-45fe-83f5-5c01e7a7dcb4-00000001,0] The file does not conform to the expected syntax.
    [2013-10-24T16:49:07.870+05:30] [Framework] [INCIDENT_ERROR] [] [upgrade.Framework] [tid: 1] [ecid: e9250ad8-50dc-45fe-83f5-5c01e7a7dcb4-00000001,0] See the secondary message for additional information. Contact Oracle Support.
    [2013-10-24T16:49:07.871+05:30] [Framework] [INCIDENT_ERROR] [] [upgrade.Framework] [tid: 1] [ecid: e9250ad8-50dc-45fe-83f5-5c01e7a7dcb4-00000001,0] UPGAST-00259: The getInitialValue method for plug-in ODI.ODI1 will not be called due to a previous error.
    [2013-10-24T16:49:07.871+05:30] [Framework] [INCIDENT_ERROR] [] [upgrade.Framework] [tid: 1] [ecid: e9250ad8-50dc-45fe-83f5-5c01e7a7dcb4-00000001,0] [[
    oracle.ias.update.exception.UpgradeException: UPGAST-00259: The getInitialValue method for plug-in ODI.ODI1 will not be called due to a previous error.
      at oracle.ias.update.plugin.Plugin.getInitialValue(Plugin.java:317)
      at oracle.ias.update.plan.PlanString.<init>(PlanString.java:67)
      at oracle.ias.update.plan.PlanCustom.<init>(PlanCustom.java:74)
      at oracle.ias.update.plan.PlanStep.<init>(PlanStep.java:189)
      at oracle.ias.update.plan.PlanComponent.<init>(PlanComponent.java:203)
      at oracle.ias.update.plan.Template.load(Template.java:161)
      at oracle.ias.update.plan.Template.loadAllTemplates(Template.java:102)
      at oracle.ias.update.UpgradeDriver.loadConfiguration(UpgradeDriver.java:838)
      at oracle.ias.update.UpgradeDriver.main(UpgradeDriver.java:257)
      at oracle.ias.update.UpgradeDriver.main(UpgradeDriver.java:175)
    Thanks and Regards
    Sunil

    ok - I think I've got it figured.  Appears to be a known issue.  You need to apply patch p17073913_121200.
    I downloaded that and applied to my Linux version - then re-ran the UA.  This time the GUI started and so now I'm going through the upgrade steps.
    The patch is generic, so should work for your windows environment too.  Good luck.

  • How to get no of days using oracle date function

    Dear all,
    i need different output from this query mentioned below.
    suppose i have execute this query.
    sql> select add_month(SYSDATE, -1 * 6) finaldate from dual;
    it will give the output as
    sql>FINALDATE
    05-JUL-2009 13:46
    now i need to get the total no days from the same query that means it should calculate the total no of days from july to current date and give the output.
    if you can give any hint.
    Regards
    Laxman

    Oracle supports date arithmetic and uses day as a unit.For example, number of days from July 1, 2009 to SYSDATE
    SQL> SELECT  SYSDATE - DATE '2009-07-01'
      2    FROM  DUAL
      3  /
    SYSDATE-DATE'2009-07-01'
                  188.386968
    SQL> SY.

  • Release of Oracle Data Base Verions

    Hi there,
    I am trying to find out the dates of when the major Oracle database versions were released.
    ie 7.3.4, 8, 8.1.7(1999?), 9i(2000?) and 10g (2004). Does anyone know?
    Thanks.

    http://www.oracle.com/technology/oramag/oracle/03-may/o33drdba.html

  • Voice Memos older than last Sync date not copying from iPhone to PC after sync, even though "Include voice memos" is checked

    I am trying to copy over my voice memos from my iPhone to my PC. I have "Include voice memos" checked under the Music tab.
    I had an issue with voice memos being duplicated on my iPhone after a sync (I got two versions of each memo on my phone for some reason), so after deleting the extra copies on my phone I deleted all voice memos from within iTunes and chose the option to move the files to the Recycle Bin. So the Music\iTunes\Itunes Music\Voice Memos folder is empty, and there are no voice memos showing up in iTunes.
    But now when I sync, it isn't copying over the older memos that are on my iPhone to my computer. If I record a new voice memo then that memo transfers successfully, but any voice memos with a recording date older than my last sync date do not transfer.
    How can I get these older voice memos (with dates older than my last sync date) transferred over from my phone onto my PC?

    Does anyone know of a way that I can access the voice memos with dates older than my last sync date...?

  • Trying to download latest iTunes, but I keep getting "The older version of Apple Software Update cannot be removed.  Contact your technical support group."  Please help.

    Please help.  I am trying to download the latest version of iTunes so I can synch my new iPhone.  I keep getting "The older version of Apple Software Update cannot be removed.  Contact your technical support group."  Please help as I have absolutely no idea.  Thanks.

    Download the Windows Installer CleanUp utility from the following page (use one of the links under the thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any Apple Software Update entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Get an older version of GarageBand iOS?

    How do I get an older version of GarageBand for iOS (pre 2.0.1)? Other than this method :
    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/app-store -downloading-older-versions-of-apps-ios
    I have been all over that article trying to figure this issue out. The problem for me is, my app store, my wife's app store, my friend's app stores, etc. all have updated versions of GarageBand iOS and we have updated iOS to 7. I can't downgrade to iOS 6 any longer. I've asked a friend to trade me his old iPad for my newer one! And on and on to no avail.
    Is there a way I can download a pre - 2.0.1 version of GarageBand iOS from a 3rd party? Can the file be placed somewhere and then onto my Mac via iTunes? I have contacted app store support about this. They offered to refund my $4.99, but cannot give me my also purchased (on a different account and updated there as well) old version of GB iOS.
    I have a compatibility issue between the latest GB for iOS and Logic Pro 9 on the Mac. LP 9 will not open the latest version of GB iOS. I cannot download LP 10 bc my 2007 MP is 32-bit EFI. I'm not comfortable w/ the hacks for getting Mavericks, etc. as I'm not computer savvy. I'm a songwriter who wants to write and record as simply as possible. My current set-up runs like a tank. GB iOS is great for getting ideas down when on the road. Then I flesh things out on the Mac in LP and add the audio tracks there as well.
    Anyone know a workaround for opening GB iOS in LP9? I don't want the audio BTW, just the MIDI. I can find the audio by show package contents, etc. but I can't see the MIDI info in the folder. Maybe my OSX won't recognize as I could possibly do this manually? When I unpack a pre-2.0.1 GB file on the Mac, I can see both the audio and the MIDI, but not on the new GB ".band" file. Any thoughts or ideas are welcomed. Thank you!
    Mac Pro 1,1 June 2007
    2x Quad Core 2.66 Ghz Intel Xeon
    16 GB RAM
    2 HD's
    Logic Pro 9.1.8
    Snow Leopard 10.6.8

    Thank you! Can you please explain? Can I still record in GB iOS and then use the MIDI synth app? Where is the MIDI synth app - on the iPad or Mac?  How do I get the MIDI info to the Mac - by iRig MIDI or USB? Please break down the process if you can and I will try it. Looks like great idea, I just need a little more info. Thanks!

  • Get an older version of GarageBand for iOS (pre 2.0.1)?

    How do I get an older version of GarageBand for iOS (pre 2.0.1)? Other than this method :
    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/app-store -downloading-older-versions-of-apps-ios
    I have been all over that article trying to figure this issue out. The problem for me is, my app store, my wife's app store, my friend's app stores, etc. all have updated versions of GarageBand iOS and we have updated iOS to 7. I can't downgrade to iOS 6 any longer. I've asked a friend to trade me his old iPad for my newer one! And on and on to no avail.
    Is there a way I can download a pre - 2.0.1 version of GarageBand iOS from a 3rd party? Can the file be placed somewhere and then onto my Mac via iTunes? I have contacted app store support about this. They offered to refund my $4.99, but cannot give me my also purchased (on a different account and updated there as well) old version of GB iOS.
    I have a compatibility issue between the latest GB for iOS and Logic Pro 9 on the Mac. LP 9 will not open the latest version of GB iOS. I cannot download LP 10 bc my 2007 MP is 32-bit EFI. I'm not comfortable w/ the hacks for getting Mavericks, etc. as I'm not computer savvy. I'm a songwriter who wants to write and record as simply as possible. My current set-up runs like a tank. GB iOS is great for getting ideas down when on the road. Then I flesh things out on the Mac in LP and add the audio tracks there as well.
    Anyone know a workaround for opening GB 2.0.1 iOS in LP9? I don't want the audio BTW, just the MIDI. I can find the audio by show package contents, etc. but I can't see the MIDI info in the folder. Maybe my OSX won't recognize as I could possibly do this manually? When I unpack a pre-2.0.1 GB file on the Mac, I can see both the audio and the MIDI, but not on the new GB ".band" file. Any thoughts or ideas are welcomed. Thank you!
    Mac Pro 1,1 June 2007
    2x Quad Core 2.66 Ghz Intel Xeon
    16 GB RAM
    2 HD's
    Logic Pro 9.1.8
    Snow Leopard 10.6.8

    Thank you! Can you please explain? Can I still record in GB iOS and then use the MIDI synth app? Where is the MIDI synth app - on the iPad or Mac?  How do I get the MIDI info to the Mac - by iRig MIDI or USB? Please break down the process if you can and I will try it. Looks like great idea, I just need a little more info. Thanks!

  • I can't login from the desktop app - "Login error. Please contact the Admin."

    1) Does anyone have the same problem as described below?
    2) Does anyone know how to fix it?
    When I try to "work online" from the desktop app, I get asked to log out of offline, then log into online. When I put in my username and password, it gives me the error "Login error. Please contact the Admin." I've clicked the link "Trouble logging in?" and followed instructions to reset my password, which I successfully reset to a new one. I still get the error.
    I have a subscription to Adobe Story Plus and am working offline/online using the desktop app. I haven't logged in to sync my documents in about a month. My account is in good standing (paid 2 weeks ago according to my account transactions screen).  I'm now trying to collaborate, so it's important that I be able to sync. 
    Any help would be greatly appreciated.
    Thanks,
    John

    Hi Rohit,
    Thanks for your response. I've resolved the problem myself, and you may be
    interested to know how in case it happens again with another user - I
    thought maybe it was a versioning discrepancy and I was right (I assume).
    However, I couldn't update my desktop software (or I couldn't figure out
    how to update it) until I rebooted my machine, then Story went into an
    auto-update sequence.
    After it updated, it logged in and sync'd just fine. Classic "help"
    question where the answer basically was: reboot. I shouldn't tried that
    before I posted!
    I hope that helps.
    Thanks,
    John
    On Mon, Jun 16, 2014 at 3:02 PM, Rohit (Story Team) <

  • I have 3.0 but need an older version to work with Kurzweil KESIReader, how do I get an older version to use for schoolwork?

    I am disabled and need to use Kurzweil to read to me, this requires an older version than 3.0 to work with their KESIReader to read the web. How can I get an older version that will work with my other program?

    As long as you understand this leaves you vulnerable to multiple known exploits:
    ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/en-US/Firefox%20Setup%202.0.0.20.exe

  • I updated to firefox 7, but only after i updated did it tell me that it isn;t compatible with mac os 10.4.11.... how do i get an older version back?

    when i was on the website, it just said there was a newer version, so i updated, now firefox won't work.. how do i get an older version?

    You can find the latest Firefox 3.6.x release in all languages and for all Operating Systems here:
    *ftp://ftp.mozilla.org/pub/firefox/releases/latest-3.6/

  • How can I get the older versions of iWorks ('13 the ones that came with Mavericks) now that I've purchased a new iMac with Yosemite?

    It just hit me the other day (when my New Mac was on its way) that it would ship with Yosemite and of course ONLY the newest versions of iWorks. This machine is for a person in our business office and she should not have a different version of Pages and Numbers than everyone else in the company. (we upgrade those apps all together so exchanged files can be opened by everyone). I understand the Migration Assistant will only keep the newer versions when Applications is selected in the process and the App Store will not let me get the older version. This machine must have the older (Mavericks) versions of those applications so I'm considering partitioning and installing Mavericks even though it would bork my support. Is there any other way to install those versions on Yosemite?  Thanks!

    Thanks for the response. I understand and we Don't have volume licenses. All the apps we download are from our single school admin account. Would it still be piracy if I copied them from her old machine to her new one (both being company machines)
    If not, Is there any way to accomplish what I trying to do with compliance? Purchase the apps from somewhere?

  • How do i fix the error "Login Error. Please Contact the Admin." ?

    When ever I try to log into the Adobe Story desktop app I get the error "Login Error. Please contact the Admin." and when ever I log into the web app all my content from before is gone! Please help me out here, I need to get the previous scripts before the end of the month!!!

    I'm having this same problem. Since your question is unanswered from 2.5 years ago, I'm a bit concerned!

Maybe you are looking for

  • Can we have more than one attachement to the "Email with Attachment" activity

    Guys, I have a requirement  in which the process has n number of approvers in the flow, and each  approver can add attachments to the form in the list<document>  variable which carries the attahced documents. At the end of the process i am supposed t

  • Removing items caught on video

    I did a shoot recently and there is a soda can, the legs of a light tripod, and some shadows in the background. Is there a way to clone over these as can be done in Photoshop? Is a garbage matte the way to approach this? Thanks.

  • Scrolling of dinamani site in firefox using key board not properly configured?

    scrolling of dinamani site in firefox using key board not properly configured? by using down arrow i am unable to scroll instead it goes to end of page previously ie. about 4-5 months back this problem was not there

  • Need Adobe on my Kindle Fire

    How can I download Adobe Flash on a Kindle Fire?

  • Using Resin and Weblogic with Apache

    Hi, Does anybody know if i can use Weblogic to serve JSP and Resin to serve some servlets within Apache? Let me explain the case: We are testing to setup Weblogic with Apache as the webserver. Weblogic will be used to serve the JSP pages so i configu