ILearning 6.0 in windows.

How can I install iLearning 6.0 in windows 7 64 bit? Is that possible? Because only windows 32 bit is available with in the edelivery.oracle.com download section.

Got some additional information...and another, alternate, request.  I took the FTP link and attached it to a picture on my homepage in GoLive.  Then I click on it in Preveiw...and I got the login screen and was able to login with no problem!  But I still can't connect using the server connection functions.  So here's my alternate question: I can live without the GoLIve FTP connection working...IF there's an alternate FTP client that I can use that will maintain the intregrity of things like the pictures I have on my webpage.  Right now, if I use the FTP function available via Internet Explorer the links don't go over correctly.  So my question is: what's a good alternate FTP client?

Similar Messages

  • Oracle iLearning 5.0 on Windows and email notifications issue

    Hi!
    We are upgrading from iLearning 4.3 to iLearning 5.0 on Windows 2000 server and I have a question related to that.
    iLearning 5.0 is certified for Windows.
    The accompanying release.txt states that:
    --'Email', 'Email and Web' notifications options for Learner Rating and Authorized Enrollment/Unenrollment are not available on Windows platforms. Only web-based notifications should be used.
    Through a Technical Assistance request (TAR Number 4439000.992 ) I've found that this problem is due to the use of Workflow 2.6.2 stand-alone which requires sendmail, which is not available on Windows.
    This worries me because I want the system to be able to:
    * notify admin when authorization is needed for enrollment
    * notify course participants about changes or a cancelled course.
    * Certification reminder and expiration
    * Assessment submission
    * Notification to all learners currently enrolled in an offering
    The suggested workaround from Metalink is to use a Unix/linux server.
    Metalink suggestion:
    "you can set up a notification mailer on UNIX to work with stand-alone Workflow
    hosted on Windows. The following MetaLink article is a step-by-step guide on how
    to do this: Note:254973.1 How To Configure UNIX Sendmail To Work With Oracle Workflow Running On Windows
    This would be useful if UNIX was an option for me. It is not.
    I have some questions:
    1)Can I use WorkFlow 2.6.3.5 on windows with iLearning 5.0?
    I know Workflow 2.6.3.5 is working with MS Exchange.
    2)Can I use sendmail in some form or shape?
    IIS 5.0 (or 4.0) has a mail gateway that can be utilized by a sendmail program.
    Sendmail software for windows:
    http://www.glob.com.au/sendmail/
    http://www.indigostar.com/sendmail.htm
    http://www.ntsendmail.com/
    http://www.windowsitpro.com/Windows/Article/ArticleID/5289/5289.html
    Has anyone tried any of theese?
    I'd like to make a suggestion to my IT department on how to solve this issue.
    Thanx for any help in advance :-)
    Kristian Amlie, Bergen Norway

    There are a couple of patches available that allow a customer to upgrade their Oracle iLearning database to 10g and with that, upgrade Oracle Workflow to version 2.6.3 which supports email notifications through workflow on windows.
    Patch #s are 4321769 and 4485520
    Thanks!
    Scott

  • Integration iLearning login with LDAP?

    Hi friends,
    Although there exists a Metalink note with this exactly title, (How To Integrate Oracle iLearning and LDAP Note:452425.1) I've searched inside documentation how exactly iLearning does this step. I mean:
    I have to install the iLearning Platform (without installing Oracle Portal) in a Windows environment. Due to customer requirements, the iLearning login must be validated with LDAP validation... I've read that it's done with iLearning WebServices.. but I can't find where exactly is described this procedure. (My knowledgements of web services are limited)
    I'm reading the "Oracle iLearning 5.0: Web Services API Technical Reference " And it's supposed all lis there.. but.. "LDAP" word is not mentioned so... any ideas?
    Thanks a lot.
    Jose L.

    If is not possible that integration, I've thinked in other solution:
    - Create/Publish a WebService in iLearning platform. That webservice woul check in LDAP contents for new users... if there exists new users it would retrieve their information and would create them as iLearning platform users ...
    This could be divided in two tasks:
    - create/publish web service in iLearning to query in LDAP
    - insert the information retrieved as a new user/s into iLearning System.
    [This one.. if is not possible to "program" in the webservice.. could be done through direct INSERT into i Learning tables.. I suppose]
    Any ideas of how to do this?
    Thanks a lot!!!!.
    Jose.

  • Installing Oracle iLearning....Need Help!!!!

    Anyone know what I need to install to get Oracle iLearning working on Windows 2000? Any help is needed and appreciated.

    The main Downloads index http://www.oracle.com/technology/software/index.html has a section called Applications with a link to the E-delivery site, where you could find both iLearning and EBS with Oracle Learning Management.

  • Problem with Threads and "plase wait..."-Window

    Hi everyone,
    I have a problem that I'm not able to solve in any way... I have a time-consuming task (a file decryption) which I execute in a separate thread; I've used the SwingWorker class, like suggested by sun-tutorial, and it works right. The problem is that I have to wait that the decryption have finished before continuing with program-execution. Therefore I would like to display a "please wait"-window while the task runs. I've tryed all the possible ways I know but the problem is always the same: the waitWindow is displayed empty, the bounds are painted but the contents no; it's only painted when the decrypt-task has finished. Please help me, I have no more resources....
    decrypt-file code:
    public class DecryptFile {
      private String cryptedFileNameAndPath;
      private ByteArrayInputStream resultStream = null;
      // need for progress
      private int lengthOfTask;
      private int current = -1;
      private String statMessage;
      public DecryptFile(String encZipFileNameAndPath) {
        cryptedFileNameAndPath = encZipFileNameAndPath;
        //Compute length of task...
        // 0 for indeterminate
        lengthOfTask = 0;
      public ByteArrayInputStream getDecryptedInputStream() {
        return this.resultStream;
       * Called from ProgressBarDemo to start the task.
      public void go() {
        current = -1;
        final SwingWorker worker = new SwingWorker() {
          public Object construct() {
            return new ActualTask();
        worker.start();
       * Called from ProgressBarDemo to find out how much work needs
       * to be done.
      public int getLengthOfTask() {
        return lengthOfTask;
       * Called from ProgressBarDemo to find out how much has been done.
      public int getCurrent() {
        return current;
      public void stop() {
        current = lengthOfTask;
       * Called from ProgressBarDemo to find out if the task has completed.
      public boolean done() {
        if (current >= lengthOfTask)
          return true;
        else
          return false;
      public String getMessage() {
        return statMessage;
       * The actual long running task.  This runs in a SwingWorker thread.
      class ActualTask {
        ActualTask () {
          current = -1;
          statMessage = "";
          resultStream = AIUtil.getInputStreamFromEncZip(cryptedFileNameAndPath); //here the decryption happens
          current = 0;
          statMessage = "";
      }The code that calls decryption and displays waitWindow
          final WaitSplash wS = new WaitSplash("Please wait...");
          final DecryptFile cryptedTemplate = new DecryptFile (this.templateFile);
          cryptedTemplate.go();
          while (! cryptedTemplate.done()) {
            try {
              wait();
            } catch (Exception e) { }
          this.templateInputStream = cryptedTemplate.getDecryptedInputStream();
          wS.close();Thanks, thanks, thanks in advance!
    Edoardo

    Maybe you can try setting the priority of the long-running thread to be lower? so that the UI will be more responsive...

  • I install window 8 and Unfortunatly all drive format. And all drive mix, now i have only 1 DRIVE C. I want Bit locker Drive's data Back

    Last sunday i install a window 8 and this window format my all drive & make it 1 drive (DRIVE C). Before all of this i have 5 drive in different size with 1 Bitlocker protect drive.
    So i try data recovery software to recover my data. i got back all my data without that ( bitlocker ) protected drive.
    so please guys help me how can i get back data from bitlocker protected drives.
    please please help me.

    Hi,
    I sorry for your experience, but there is no way to recovery the data encryped by BitLocker untill now.
    BitLocker is designed to make the encrypted drive unrecoverable without the required authentication. When in recovery mode, the user needs the recovery password or recovery key to unlock the encrypted drive. Therefore, we highly recommend
    that you store the recovery information in AD DS or in another safe location.
    Please refer to the link below for the statement:
    http://technet.microsoft.com/de-de/library/ee449438(v=ws.10).aspx#BKMK_RecoveryInfo
    Roger Lu
    TechNet Community Support

  • HP LaserJet Enterprise 500 Color MFP M575 - Can't scan from Windows

    We recently purchased and installed an HP LaserJet Enterprise 500 Color MFP M575 to be used as a networked all-in-one solution for a number of offices. I have been able to get it set up on our network and have installed the appropriate drivers on the requested Windows 7 x64 machines, and network printing works perfectly. However, it seems that despite the fancy scanning features available from the all-in-one itself (scan to email, scan to a network folder, etc.), I can't find any way to do an old-fashioned scan from Windows.
    I have installed the full software solution available on the driver download page for the device, and while Windows lists the device as a "Multi Function Printer; Scanner" it does not recognize it as an actual scanner. The built-in Windows Fax and Scan simply reports that no scanners are installed. The software installation did not include the HP Solution Center (which I am used to seeing from my experience with various other HP all-in-one devices) or any equivalent for direct scanning. The driver download page for the device does not include any separate scanning drivers, so I can't be certain if they were included with the full installation or exist at all.Some of our staff also use Adobe Acrobat to scan, and even that fails to recognize the MFP as a scanner.
    We'll eventually be setting up the device to scan directly to a network folder, but we need a fallback while IT takes their time getting it set up; I can't imagine that the simplest option is not available at all. I must be missing something here, any assistance would be greatly appreciated.
    Edit: To add, I also ran the HP Print and Scan Doctor. Interestingly, it reports the device as a printer and only offers to "Fix Printing" without any sort of resolution for my scanning problem.

    There is no change to this problem after 6 months since the last post. Put simply, and as stated in the previous posts, there is no way to scan a document and receive the image on your PC. If you are working with graphics for any length of time or want to create an image for inclusion as an image in a document or web page using this piece of equipment will not allow you to do so.
    Great shame as every other function works well - it cannot be beyond the wit of HP to include a Windows application that enables you to scan an image, receive it in the software you are using at the time (e.g. Outlook, Word, Photoshop...) and use it in your work.
    HP Printers several years older than this £1000+ Enterprise printer were able to do this simple job and have done so for a great many years. Just being able to use Microsoft's Fax and Scan would be start.

  • Windows no longer detecting my Audigy 4?(Non-P

    Hey all. I've had my Audigy 4 (non-Pro) installed and working super for about 50 days, but it started giving me a weird problem. Windows was no longer detecting the card! It was weird. DX Diag, programs like EVEREST... they all report no sound card whatsoever.
    Here are my PC specs:
    XP Home Edition
    Albatron K8X800 Pro
    S754 3200+ ClawHammer
    x 2 OCZ ELPE 52 MB(2-3-2-5)
    Visiontek XTASY X850XT PE
    x 80 GB SATA 2 Seagate, x 80 GB Maxtor
    Some other things to note:
    XP has been repaired. Went from Service Pack , updates, and all the way to Service Pack 2. The card requires XP w/SP2, yes, so I have that covered.
    Onboard audio is disabled through the bios. I have AC'97 integrated audio on this.
    My motherboard has fi've PCI slots - although I can only access 4 because my video card is in the way, and I have tried three of those and I get the same problem.
    I have tried it in other PCs in my house, double-checked each time - so it is not ESD as I originally believed. It works just fine on those PCs. It is being not located only on MY PC.
    So guys and gals, I do not know what to do... I am stumped. It's the weekend so I can't call Creative support until Monday. I don't want to request an RMA through my warranty because clearly it's just a problem with my PC. What should I do?!Message Edited by Celsius on -26-2005 07:36 PM

    Device not recognized in iTunes

  • IPod Touch/Phone 4gens No Longer Detected in WINDOWS MY COMPUTER but OK in iTunes

    Since I have not found help online regarding the above situation I'm looking for help accordingly.   For most folks it's iTunes not detecting i-Devices, but my situation is unique.
    It started last night after I was on the phone for hours with Norton regarding error messages I was getting with Internet Security.  Those issues have been resolved.
    Again: iTunes detects and interacts successfully with ALL my iDevices.  Windows Vista > My Computer no longer does.
    Please help.

    Just now I performed the following:
    Turned off and turned back on AMDS(Apple Mobile Device) Service.
    Disabled Norton Internet Security, and tried checking if Windows would see my devices.
    For anyone who has Windows Vista you are familiar with the notes that play when you plug in a USB device: "da-dunk!"  Low-High note dadunk indicates connected.   High-low indicates it was disconnected.
    I can tell there is a problem because right after the Low-High dadunk in Vista I get a triple Low-note Du-du-dunk.
    Please help!

  • IPod is not recognized by Windows Vista - possible solution

    During the past couple of weeks that I faced this problem I found out that a lot of people had the same question as I did.
    Here is a possible solution.
    I have HP Pavilion laptop with Windows Vista. After I connected my new iPod – it didn’t show up in My Computer as a new device and in Device Manager it was listed in “Other devices” with a question mark next to it. I already had iTunes installed – it didn’t show up in iTunes. On the attempt to reinstall the driver I had a message that the driver was found but an error occurred while installing it.
    Here is what I did:
    1. Install iTunes (it has iPod driver for Vista in it).
    2. Turn on iPod and connect it to computer.
    3. Restart computer with iPod turned on and connected to computer.
    4. On the start up the computer will begin automatically installing the driver and the message will appear in the corner that new device is being installed.
    5. After it has been installed – check My Computer – you should see it listed there.
    6. Run iTunes and configure iPod.
    iTunes might run a little bit slow when configuring iPod for the first time.
    Good luck.

    if only this fix worked for windows xp or even 2000 (at my job)
    insane, but it IS a driver/usb problem i now know, at least i've gotten that far.

  • IPod not recognized by iTunes, Windows Vista prompts to format iPod drive

    Hello,
    I have IPod 80GB which I rarely use. Yesterday  when I wanted to use it, I went to add a few new audios to it, connected to my computer and launched iTunes. I added the folder which contained audios to iPod, synced it and wanted to disconnect, but iTunes took excepionally long to finish.
    When I clicked on 'eject' icon, I go a message saying 'some files are being accessed' or something like that. I waited for 5-10 minutes but it won't finish up, so I unplugged my iPod as I had to leave.
    Later when I wanted to play, I noticed I had no audios in iPod at all.
    Later when I got home, connected it again to computer, launched iTunes, but iTunes won't show iPod. A few minutes later, windows (Vista) prompted a message saying that it needs to format N: drive (which was iPod).
    I tried diagnostics on tis site, restarted/reset iPod etc, but it didn't solve the problem. I removed and reinstalled iTunes as per instructions, still no use.
    Then I called Apple support Canada and the guy on the phone said I need to pay to get support. He said he'd send me some documents via email which would solve the problem and hen I wouldn't have to pay. I gave him my email address, but so far I have recieved no emails from him. I have checked my spam and junk folders, just in case, but nothing there.
    Anyhow, this issue came up all of a sudden, there has been no physical damage to iPod, I barely use it. maybe for few minutes here and there a month. I have had numerous problems in the past every time a new iTunes update come, it always creates problems. Last year I spent many hours after iTunes update make iPod unrecognizable so I had to go back to older version, then upgrade etc. I don't remember how I solved the issue, but it took a while and it turned out to be something of iTunes version issue.
    I wonder if this is another of such issue. I hope its not a hardware issue with iPod. I'd appreciate any help.
    Thanks

    I just got Vista too and it does recognize my ipod, but itunes can't find a lot of my songs on the computer. I tried to uninstall itunes and reinstall it thinking that it would seach for new music when I installed it again but nothing new happened when I did that.

  • Windows no longer boots up, paging file error

    I just reinstalled windows on my mac last week because until now I had been running the old beta version of boot camp.
    Just a few days ago I started getting blue screens every so often and it happened again (twice to be exact) yesterday, however one of the times it booted up and informed me I might want to change my paging file size. Not quite sure what this was I went and found the paging file option in settings and found it was clicked on a set size...so I figured I'd set it on the option that lets windows decide for me hoping this would fix the blue screen problem.
    I shut down my computer later that night and now windows won't get to the desktop.
    When I start it up normally it runs the system check (which I cannot skip for some reason) which gets to 84% and then says \windows\Dump3865.tmp is cross-linked on allocation unit 1731772
    Above it it mentions there is an invalid size for my page file.
    I tried booting it up the in safe mode multiple times and every time it generates a list in dos and stops on windows\system32\Drivers\mup.sys
    I really don't want to have to reload windows again. Is there anyway to skip the system check (it says press anykey, but that has never worked for me) or any other way to get my paging files back to the way they were?
    Thank you.
    Oh I'm running leopard with windows XP professional on a macbook pro (last years model) if that helps in anyway.
    Message was edited by: Tommmmm

    A. run chkdsk
    B. What happens if you boot from XP CD and Repair System
    C. system file checker - from command "sfc /scannow"
    http://www.informationweek.com/news/windows/showArticle.jhtml?articleID=18530125 1
    http://windowshelp.microsoft.com/Windows/en-US/Help/f768809f-ed90-415f-a83f-89b4 2108b3551033.mspx

  • Windows Vista No Disk Error

    Greetings,
    I have installed Oracle 10g Enterprise undee Windows Vista Home Edition using oracle proper installer for this OS. The installation went pretty well and so was the aftermath when I created a database and several schemas. A few days ago I have started getting a very strange and persistent error everytime Oracle's TNS and Listener are referred. The error comes fro Windows and states "Exception Processing Message 0xc0000013 Parameters 0x764F92A0 0x00000004 0x764F292A0 0x764F292A0" and the options I am prompted for are Cancell, Try Again and Continue. Whatever option I go to has to be hit over and over for about 7 times so that the message stops popping and I can continue. I say this error is reated to ORacle's TNS and Listener because when I try sqlplus /nolog I get no error, but if I enter the full connection string like slplus user/password@dbsid I get the error. The same error comes on TOAD when I first open it and it reads the TNSNAMES file to bring the TNS's within the file.
    Past this error by cancellin, trying again and again or continuing, all DB functionalities are just fine, no alerts, nor critical errors... Pretty weird hmm? Does anyone have any suggestion on what the issue is and what can be done to fix it?
    Appreciate all your inputs on this matter.
    Thiago Santana

    Actually there are no comments regarding Vista version under notes for 10.2.0.3.
    If You look at certify matrix under
    http://www.oracle.com/technology/support/metalink/index.html
    and search by Platform, then under Vista and 10gR2 You will see following notes:
    Oracle Database (EE, SE, PE and Client) are supported on these platforms:
    Business edition
    Enterprise Edition
    Ultimate Edition
    Home edition is not supported!
    But what I can suggest.
    Look into listner.log - are there any errors.
    Try to restart listener from the command line
    lsnrctl stop
    lsnrctl start
    Try to recreate listener service

  • IPod seen by windows, not by iTunes+ weird error message

    I have a first generation 2GB iPod nano and i use windows xp. I can't load any music because iTunes doesn't see my iPod and an error message pops up that reads like this: "iTunes: iTunes.exe corrupt file. The file or directory \iPod_Control\iTunes is corrupt and unredable. Please run the checkdisk utility." I've tried everything, reinstalling iTunes, different versions, reinstalling OS, resetting iPod, even on another computer, same problem. Other than that, the iPod works normally, it's just lacking music..
    and why is there no email adress from apple for service qustions? 10x

    I still don't get it, how can I put it in disk mode if I CANNOT see the iPod in iTunes..?
    Did you read the document i linked you to? here's another link to it:
    Putting iPod into Disk Mode
    whereabouts in that procedure in that document (that you get to by clicking that link) does it say that you have to connect it to iTunes to put it into disk mode?
    ... never mind ... i guess you've fixed it anyway ...

  • ITunes & Windows Vista Home - Error File C:\Program Data\Apple Computer\Installer\Cache\iTunes 10.5.142\iTunes.msi was rejected by digital signature policy.

    Tried
    https://discussions.apple.com/thread/2713232?start=0&tstart=0
    and
    http://www.vistax64.com/vista-general/159940-computer-blocking-anything-no-digit al-signature.html
    with no avail!!!
    iTunes opens after I click OK on the above message however I cannot do anything within the app its like Windows it preventing it from running.
    PLEASE HELP!!!

    Update:
    I tried what the diagnostic told me to do, and repaired the installation. I was able to burn a CD in iTunes, but after I restarted, the drives have disappeared again! Here's the diagnostic info now:
    Microsoft Windows Vista Home Edition (Build 6000)
    MICRO-STAR INC. MS-6728
    iTunes 7.6.0.29
    QuickTime 7.4
    CD Driver 2.0.6.1
    CD Driver DLL 2.0.6.2
    Apple Mobile Device 1.1.3.26
    iTunes Serial Number 20D6EAF059AB94B4
    Current user is not an administrator.
    The current local date and time is 2008-01-15 19:09:32.
    iTunes is not running in safe mode.
    Video Display Information
    ATI Technologies Inc., Radeon X1600/X1650 Series
    ATI Technologies Inc., Radeon X1600/1650 Series Secondary
    ** External Plug-ins Information **
    Plug-in Name: Last.fm iTunes plugin
    Plug-in Loaded: Yes
    Plug-in Version: 0.0.13
    Plug-in File Version: 2.0.13.0
    Plug-in Path: C:\Program Files\iTunes\Plug-ins\itw_scrobbler.dll
    No drives showed up to be tested.

Maybe you are looking for

  • Leading garbage characters when using CipherInputStream

    So, after receiving an encrypted message, I can decrypt it perfectly except that I get a random amount of leading garbabe characters. Using the same plaintext, here are examples of the beginning of the output file for two runs (using od -c to look at

  • Mail link to this page...question

    When I select the "Mail link to this page" option in Safari, the Mail compose window opens but it opens behind the main Mail application. Does anyone know what I need to change to correct this please? Thanks

  • LO'S DB Tables

    Hi All, Can anyone let me know ,when we do Lo's(Ex. in SD) in R/3, whta kind of database tables will be created background Thanks

  • Creating 1:1 Previews of ALL my photots

    Last night I set about creating 1:1 previews of all of my photos in LR3.5. The process kicked of and seemed to be getting through the files very quickly. I came to the computer this morning and the status bar says 73% complete. It is still working, a

  • Inter chassis Redundancy License

    Hi, Could anyone tell me that I am having 2 Cisco ASR 1002 and I want to do Inter chassis Redundancy between these devices. As per Cisco doc I found that Inter chassis Redundancy is available for ASR1002 but it is for Firewall/NAT configuration Repli