Problem importing a vbox gold image, need help

Hi ppl, I finally got VDI3 up and running, following the installation instructions
on the wiki page, the servers seems to be up:
venezuela - Sun xVM VirtualBox Desktop Provider Summary
Status: Desktop Provider Status Image OK
Pools: TestPool
Hosts:
CPU Usage:0%
Total Memory:3.87 GB
Memory Usage:95%
Storage:
Number of Storages: 1
Total Capacity:75.32 GB
Usage:12%
General Information
Connections:Enabled
Desktop Assignments: Flexible
Provider: venezuela
Cloning Enabled
Template: -     
Clone Jobs Running: 0
but when I try to import the image, copied from the xVM server to the vdi core
secondary via nfs, it fails without any error that I can see:
Importing Desktop      TestPool      12:21:41      12:21:41      Job Failed
what should I start looking for to correct this?

Hi Velithion ,
After you import the desktop to VDI,you need to convert this desktop to a template.You can either use Admin UI
or ./vda desktop-template <desktop-id> .This will convert the desktop to template.
Now when you do pool settings,I mean defining the pool size,recycling,etc. there you can specify what template(in the drop down list) you want to use.
(Note : Only the desktops which are converted to a template will be shown under this drop-down list)
Also refer to
http://wikis.sun.com/display/VDI3/How+to+Enable+Cloning+for+an+xVM+VirtualBox+Platform
--Chirag                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • I updated to the 7.1.2 and now my wifi is messed up and my service is screwed up and I wasn't having any problems until I updated! I need help!!

    I updated to the 7.1.2 and now my wifi is messed up and my service is screwed up and I wasn't having any problems until I updated! I need help!!

    Hopefully you won't have to make a trip to the Apple Store.
    Reset the device:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that doesn't help, tap Settings > General > Reset > Reset All Settings
    If that does not help, restore the software >  iTunes: Restoring iOS software

  • 'Easy Set-up' Option - Problem with edit canvas/windows - really need help!

    Hello Everyone. . .
    Have a problem that i really need help with, i have tried so many different things to sort this - but with no sucess.
    I usually work in High Definition and i have recently done a small project for someone in DV. When changing to work in DV, i selected the DV setup from the 'Easy Setup' menu. I have now changed back to HD and there are a few things different with Final Cut that i can't shift!
    When i move a clip from the capture bin into the edit window, the clip no longer fills that window like it always used to and there are lines at the top and the bottom of the clip - almost like it is in widescreen.
    Editing like this wasn't too much of a problem, but when i came to compress and do a final render of the whole film - there was the same black lines on the top and bottom of the film.
    I can't figure out how to get the setting back to how they were, and have the clips fill the edit windows and fix the end render/compress.
    Any ideas from anyone on what i am experiancing with all this? And. . . how to fix this problem?
    Any help on all this will be very much appreciated!

    Hello Everyone. . .
    Have a problem that i really need help with, i have tried so many different things to sort this - but with no sucess.
    I usually work in High Definition and i have recently done a small project for someone in DV. When changing to work in DV, i selected the DV setup from the 'Easy Setup' menu. I have now changed back to HD and there are a few things different with Final Cut that i can't shift!
    When i move a clip from the capture bin into the edit window, the clip no longer fills that window like it always used to and there are lines at the top and the bottom of the clip - almost like it is in widescreen.
    Editing like this wasn't too much of a problem, but when i came to compress and do a final render of the whole film - there was the same black lines on the top and bottom of the film.
    I can't figure out how to get the setting back to how they were, and have the clips fill the edit windows and fix the end render/compress.
    Any ideas from anyone on what i am experiancing with all this? And. . . how to fix this problem?
    Any help on all this will be very much appreciated!

  • Header with 3 backgroud images, need help

    Hi! I'm learning Dreamweaver CC atm, and i am confused in building my header, i need help, if you got time for a beginner.
    First, i made a Wrapper Div, added an header div inside that include 3 more div. Each of those 3 div inside my header have a backgroud image: left side, middle side and right side. They are both relative, left and right have a fixed size. The right one float right of the screen. I have trouble with the middle div: it's a 1px width backgroup that reapeat on x. I cant find the way to make it reapeat up to the right div. How can i do it?
    I want my page width to adjust to the user screen.
    (sorry for my bad english, second language )
    Thx for your time and help!

    Copy & paste this code into a new, blank document.  SaveAs test.html and preview in browsers.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5, Responsive Header</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <style>
        /**put this into your CSS Reset**/
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    #wrapper {width: 98%; margin:0 auto}
    header {
        width: 100%;
        margin: 0 auto;
        min-height: 50px;
        color: #FFF;
        text-align: center;
    #col-1 {
        width: 10%;
        float: left;
        background: #333;
        min-height: 50px;
    #col-2 {
        float: left;
        width: 80%;
        background: #A200A2;
        min-height: 50px;
    #col-3 {
        width: 10%;
        float: left;
        background: #333;
        min-height: 50px;
    .gradient {
    background: #000333;
    background: -moz-linear-gradient(left,  #000333 0%, #a200a2 16%, #a200a2 84%, #000333 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#000333), color-stop(16%,#a200a2), color-stop(84%,#a200a2), color-stop(100%,#000333));
    background: -webkit-linear-gradient(left,  #000333 0%,#a200a2 16%,#a200a2 84%,#000333 100%);
    background: -o-linear-gradient(left,  #000333 0%,#a200a2 16%,#a200a2 84%,#000333 100%);
    background: -ms-linear-gradient(left,  #000333 0%,#a200a2 16%,#a200a2 84%,#000333 100%);
    background: linear-gradient(to right,  #000333 0%,#a200a2 16%,#a200a2 84%,#000333 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000333', endColorstr='#000333',GradientType=1 );
    </style>
    </head>
    <body>
    <div id="wrapper">
    <h3>WITH FLOATED DIVS</h3>
    <header>
    <div id="col-1">10%</div>
    <div id="col-2">80%</div>
    <div id="col-3">10%</div>
    </header>
    <h3>WITH CSS BACKGROUND GRADIENT</h3>
    <header class="gradient">
    <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis.  Vestibulum luctus mauris sed sem dapibus luctus.</p>
    </header>
    </div>
    </body>
    </html>
    Nancy O.

  • Cannot view some important buttons in iTunes. Need Help.

    I need some help, my problem is there are buttons I need to click in iTunes, but I can't see them.
    You can see here, I can't agree to the iPhone Software License Agreement http://img179.imageshack.us/img179/1871/iphonega3.jpg
    And in this one I can't click the "OK" button so I can manage my iPod, http://img230.imageshack.us/img230/5215/ipodan7.jpg
    Any and all help is appreciated.
    Thanks,
    Blake

    This is most often due to screen resolution settings. Make sure you are set to at least 1024x768

  • Problems with poor wifi signal strength, need help?

    Any suggestions would be greatly appreciated? This is a lengthy explanation. Thanks in advance.
    I have a 3rd generation Airport Extreme wirelessly bridged to a 4th generation Time Capsule. I have noticed only mild increase in signal strength.  Surprisingly I have only 1 – 2 bars of signal strength when standing next to the bridged Airport Extreme. There are areas of the house that continue to have very weak coverage ranging from 0 – 2 bars depending on the day and others that continue to have no wifi coverage.
    The house has Cat 5 cable in all rooms. Most rooms only have a phone jack wired to the end of the Cat 5 cable but two rooms have data ports. All the wires (phone and data) run to the same junction box and are connected to, what appears to be, a simple parallel bridge.  (There are a couple unused access points on the bridge. A few years back, I ran an additional line for a phone by simply pressing the colored wire into the corresponding site and the phone works fine)
    It was suggested to plug the two routers directly into the data ports rather than have them communicate wirelessly. When doing this, I had no signal at the other end and the phone stopped working.
    What is the best way to fix the weak wifi signal problem?
    1.     Do I need to tweak my current wireless set up? (FYI, In the Airport Utility, both devices are listed and have green dots)
    2.     Do I need to buy an additional Airport Extreme to bridge to the Time Capsule to cover the current dead areas? (unless there is something I should do different in the set up, hesitant to do this, since I have only seen a marginal boost with my current bridge)
    3.     Would it be better to use the existing cat 5 cable and create a functional “hard wired” network that I can use to connect the two wireless routers? (If this is the answer, is this something relatively simple that I can do myself or should I hire a professional?)
    Thanks again.

    The house has Cat 5 cable in all rooms. Most rooms only have a phone jack wired to the end of the Cat 5 cable but two rooms have data ports. All the wires (phone and data) run to the same junction box and are connected to, what appears to be, a simple parallel bridge.  (There are a couple unused access points on the bridge. A few years back, I ran an additional line for a phone by simply pressing the colored wire into the corresponding site and the phone works fine)
    It was typical awhile back, where you have "whole-house" Ethernet running back to a patch panel to use the cable runs for both data and phone service. This works fine as long as you only wanted 100 Mbps Ethernet (or Fast Ethernet) connections for data. Gigabit Ethernet requires all of the twisted pairs in the CAT-5 cable and cannot share any of those pairs for phone lines.
    So any wall outlet that is wired for both phone & data will not provide Gigabit Ethernet ... unless there are at least two CAT-5 cables going to that outlet. I am only mentioning this as to the potential for reduced bandwidth on some of your connections as all of your AirPort base stations are Gigabit capable.
    As far as "weak" signals, I am assuming that you have configured all of your AirPort base stations for a roaming and NOT an extended wireless network ... correct? Even if you already have, please review the following Apple Support article to make sure you didn't miss anything. Please post back your results.

  • Import file to GUI! Need help!!!

    Hi everyone,
    I have a question regarding to "importing file". I will appreciate any help!
    I want to use text file in my program. What I need is "file path" to the file in computer so that i can read this text file to filter the necessary information to build
    objects that i need after that. The file path should be navigated through the file system by user.
    What i need is something like JFileChooser. But JFileChooser is too simple. It is very difficult to have extreme makeover.
    Is there anyway to just get input that is "file path" to text file without using JFileChoose. What I want is file path only and the user can navigate the file. Simple GUI is enough.
    Thank you very much!
    Edited by: atemu on May 3, 2009 4:43 AM

    The [JFileChooser tutorial|http://java.sun.com/docs/books/tutorial/uiswing/components/filechooser.html] includes a working example of using your own icons for specific types of files. It ammounts to extending FileView and setting it on the JFileChooser via
    JFileChooser#setFileView(...);So that's what I did. And for the icons, I return the appropriate icon according to the installed FileSystemView.
    import javax.swing.filechooser.*;
    import javax.swing.JFileChooser;
    import javax.swing.Icon;
    import java.io.File;
    public class Tester {
        public static void main(String[] args) {
            final JFileChooser chooser = new JFileChooser();
            chooser.setFileView(new FileView() {
                FileSystemView systemView = chooser.getFileSystemView();
                @Override
                public Icon getIcon(File f) {
                    return systemView.getSystemIcon(f);
            chooser.showOpenDialog(null);
            System.exit(0);
    }

  • Having problems starting Web Services... need help!

    I'm running Mac Server 10.5.7 currently configured for email and I've just decided to start hosting websites. The problem I'm having is that Web Services will fail to start with any sites configured. Web Services will start if I don't have any sites configured. I've messed around with the Terminal app using some advice from online posts, but that didn't help. I'm not even sure I did it right.
    http://discussions.apple.com/thread.jspa?messageID=9508628
    I tried to understand the error log, but I'm not savy enough to translate. Does anyone have any idea why this would be happening.
    Here's the log error:
    166.137.132.186 - - [25/Jun/2009:15:58:49 -0400] "GET / HTTP/1.1" 403 1043
    192.168.5.2 - - [25/Jun/2009:16:00:02 -0400] "OPTIONS * HTTP/1.0" 200 -
    192.168.5.2 - - [25/Jun/2009:16:00:02 -0400] "OPTIONS * HTTP/1.0" 200 -
    192.168.5.2 - - [25/Jun/2009:16:03:23 -0400] "OPTIONS * HTTP/1.0" 200 -
    192.168.5.2 - - [25/Jun/2009:16:03:23 -0400] "OPTIONS * HTTP/1.0" 200 -
    166.137.133.190 - - [25/Jun/2009:16:03:36 -0400] "GET / HTTP/1.1" 403 1053
    192.168.5.2 - - [25/Jun/2009:16:03:41 -0400] "OPTIONS * HTTP/1.0" 200 -
    66.150.226.65 - - [25/Jun/2009:16:08:01 -0400] "GET /coupon.html HTTP/1.1" 404 1072
    66.150.226.65 - - [25/Jun/2009:16:08:08 -0400] "GET / HTTP/1.1" 403 1062
    208.99.193.6 - - [25/Jun/2009:16:09:34 -0400] "GET / HTTP/1.0" 403 1062
    192.168.5.2 - - [25/Jun/2009:16:10:11 -0400] "OPTIONS * HTTP/1.0" 200 -
    192.168.5.2 - - [25/Jun/2009:16:10:12 -0400] "OPTIONS * HTTP/1.0" 200 -
    166.137.133.190 - - [25/Jun/2009:16:10:24 -0400] "GET / HTTP/1.1" 403 1053
    192.168.5.2 - - [25/Jun/2009:16:10:40 -0400] "OPTIONS * HTTP/1.0" 200 -
    192.168.5.2 - - [25/Jun/2009:16:13:36 -0400] "OPTIONS * HTTP/1.0" 200 -
    192.168.5.2 - - [25/Jun/2009:16:13:36 -0400] "OPTIONS * HTTP/1.0" 200 -
    166.137.132.179 - - [25/Jun/2009:16:13:47 -0400] "GET / HTTP/1.1" 403 1053
    192.168.5.2 - - [25/Jun/2009:16:15:23 -0400] "OPTIONS * HTTP/1.0" 200 -
    192.168.5.2 - - [25/Jun/2009:16:15:23 -0400] "OPTIONS * HTTP/1.0" 200 -
    192.168.5.2 - - [25/Jun/2009:16:15:23 -0400] "OPTIONS * HTTP/1.0" 200 -
    166.137.133.30 - - [25/Jun/2009:16:15:31 -0400] "GET / HTTP/1.1" 403 1053
    192.168.5.2 - - [25/Jun/2009:16:15:41 -0400] "OPTIONS * HTTP/1.0" 200 -
    192.168.5.2 - - [25/Jun/2009:16:21:01 -0400] "OPTIONS * HTTP/1.0" 200 -
    192.168.5.2 - - [25/Jun/2009:16:21:01 -0400] "OPTIONS * HTTP/1.0" 200 -
    192.168.5.2 - - [25/Jun/2009:16:21:01 -0400] "OPTIONS * HTTP/1.0" 200 -
    119.63.193.56 - - [25/Jun/2009:16:21:13 -0400] "GET /robots.txt HTTP/1.1" 404 1066
    166.137.133.137 - - [25/Jun/2009:16:21:31 -0400] "GET / HTTP/1.1" 403 1059
    192.168.5.2 - - [25/Jun/2009:16:21:40 -0400] "OPTIONS * HTTP/1.0" 200 -
    Any help would be greatly appreciated.
    Thanks in advance. -m

    So, I've read through all the documents and tried to apply what I've learned. I must say, I dove in head first. There's a lot to digest here. Maybe I'm reading too much.
    I ran the Terminal and 'sudo' command you requested. This is the result.
    "Syntax Ok."
    Since posting this question I've installed mySQL, but I'm not exactly sure what it does.
    I've tried changing to the httpd.conf file, but nothing is working. All I get when I type in "localhost" is cannot "connect to web server". At least before I was getting the "apple default page".
    Need some advice on how to get this all straightened out. Looks like I made a pretty good mess of things.
    Thanks for all the help!

  • Z Index, layering images, need help (going crazy!)

    Need some help on layering images. As you can see, the "polaroid" has tape on it - I want that tape to overlap the menu bar.
    The menu bar is a grapic (there is a slight gradient to it) and on top of it are the actual menu graphics.  If I remove the menu graphics, the photo overlaps fine.  But if I insert the menu graphics, they lie on top of the polaroid.  Thanks in advance for any help you can provide.
    Gary
    Here is the code for the page:
    <h1>SanDiegoHomegrown.com</h1>
    <img src="images/menuBar.gif" />
    <ul id="menuBar">
       <li id="listen"><a href="songs.html">Listen</a></li>
      <li id="submit"><a href="submit.html">Submit Songs</a></li>
      <li id="seals"><a href="seals.html">Help the Seals</a></li>
      <li id="about"><a href="about.html">Our Story?</a></li>
      <li id="sponsors"><a href="sponsors.html">Sponsors</a></li>
    </ul>
    <div id="polaroid">
    <img src="images/band2_polaroid.png" width="280" height="354" />
    </div><!--polaroid-->
    Here is the CSS:
    #polaroid {
        height: 354px;
        width: 280px;
        padding-left: 50px;
        margin-top: -40px;
    #menuBar {
        height: 30px;
        width: 960px;
        padding: 0px;
        font-family: "Courier New", Courier, monospace;
        list-style-type: none;
        position: absolute;
        display: block;
        background-repeat: no-repeat;
        margin-top: -30px;
    #menuBar a {
        width: 175px;
        display: inline-block;
        color: #2F3032;
        text-align: left;
        vertical-align: 0%;
        margin: 0px;
        list-style-type: none;
        float: left;
        height: 35px;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 10px;
        text-indent: -9999px;
    #menuBar #listen {
        background-repeat: no-repeat;
        position: absolute;
        background-image: url(images/titles/listen_bar_orig.gif);
    #menuBar #submit {
        background-image: url(images/titles/submit_bar_orig.gif);
        background-repeat: no-repeat;
        position: absolute;
        margin-left: 150px;
        width: 200px;
        z-index: 1;
    #menuBar #seals {
        background-image: url(images/titles/seals_bar_orig.gif);
        background-repeat: no-repeat;
        position: absolute;
        margin-left: 375px;
        width: 225px;
    #menuBar #about {
        background-image: url(images/titles/about_bar_orig.gif);
        background-repeat: no-repeat;
        position: absolute;
        margin-left: 625px;
    #menuBar #sponsors {
        background-image: url(images/titles/sponsor_bar_orig.gif);
        background-repeat: no-repeat;
        position: absolute;
        margin-left: 800px;

    Auggh, just figured it out.  The Polaroid needed to be relative positioning!

  • Import catalogue .. going mad: need help Please

    o.k. i backed up catalogue from C: drive on xp to ehdd labeled h:/. now trying to import into lr 3 with win 7 from h:/ to C:/ no go. i  get the number of images for all photos and all subs but no images after 9 hours. no activity on H:/ nor C: drive. do i copy catalogue to .lrcat to c then open?? if you can help i would be grateful. i have 7,600 images.
    thank you, thank you.

    After finally loading, all of my files and icons were gone..it was still my profile..
    Sounds to me like it is not your profile. If your profile is not available, Windows will create a new one.
    Let's try to repair your real profile from the Recovery Environment. This works for Windows 7 too.
       How to launch the Windows Recovery Environment
    Run Startup Repair from there.
    Which Satellite A665? There is a label on the bottom.
    it's going soooo slow
    That could indicate a failing hard disk.
    -Jerry

  • SCOM 2012 SP1 - Trying to import Unix / Linux Management packs - need help

    Hello all, I am using SCOM 2012 SP1.   I am trying to install the following management packs for Unix/Linux:
    http://www.microsoft.com/en-us/download/details.aspx?id=29696
    When I try to do so, it says that I'm missing some dependent management packs.  Two main ones it looks like:
    Microsoft.SystemCenter.WSManagement.Library - Version 7.1.10000.0
    Microsoft.SystemCenter.OperationsManager.Library - Version 7.1.10000.0
    However, I cannot figure out where to get these two other management packs from.  I've been googling for an hour now and I'm starting to go in loops.  Can anyone give me any suggestions on how to get this updated version of these two management
    packs listed above please?

    For Microsoft.SystemCenter.WSManagement.Library , you can check below link
    http://www.microsoft.com/en-us/download/details.aspx?id=29266
    For Microsoft.SystemCenter.OperationsManager.Library, it's already deployed with SCOM installation
    http://technet.microsoft.com/en-us/library/hh212701.aspx
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"
    Mai Ali | My blog: Technical
    That link for WS Management looks like its the "Microsoft.SystemCenter.OutofBand.SMASH.Library" management pack.  It does not appear to be "Microsoft.SystemCenter.WSManagement.Library"
    Also, about the "Microsoft.SystemCenter.OperationsManager.Library" one, I do have a version of that in my SCOM already.  It appears to be version 7.0.9538.0 though.  Apparently theres a version 7.1.10000.0 out there somewhere, based on what I saw
    in the messages above when attempting to import the Unix/Linux MPs.   I don't know how to update this management pack.  I tried searching the catalog for "Microsoft System Center Operations Manager Library" but that didn't find any results.
    So I still do not have either of the versions I need of either management packs. 

  • Problems sending and receiving texts, please need help ASAP!

    So for the past few days I have had trouble receiving texts on my Samsung Intensity II. I can send them just fine but when receiving them they are either very very late or they dont show up at all. Why is this? What should I do to fix it?
    Here are the questions I need answered:
    1. How do I improve this and start being able to receive texts again? I havent been able to receive any texts for the last few hours.
    2. I dialed *228 and chose option 2 to update my roaming thinking it might help but it didnt. I can still send text messages but havent received any. All it did was remove the Verizon Wireless banner from the top of my phone. Is this bad? I sort of want that back..is it bad that its missing? Does it mean *228 was detrimental to my phone? How do I get the banner back?
    3. Lastly, is there a way to possibly reset my phone and fix this problem WITHOUT deleting my texts and photos?
    I really need some help with this ASAP. I'm in a long distance relationship that requires the use of my phone quite a bit and its irritating not to be able to really use it.
    Thanks
    Now, I was going through settings, checking on things. Went to phone settings and then NAM settings, my phone was set to NAM 1. I didn't change it but instead accidentally pressed down on the already selected NAM 1. Now I cant even send messages because it cant authenticate the network! SOMEONE PLEASE HELP ME!
    I have tried restarting the phone, removing the battery pack and now I am having more trouble than ever before, since the NAM restart I havent been able to send or receive anything with my phone and I am extremely frustrated at this point. HELP PLEASE!
    Edit: Seemed to have fixed the NAM issue, I am no longer getting the network authentication failed message when I try to send messages. I can send again but still can no longer receive...help?

    goaliegirl34,
    Hi there! You this link here to contact us or PM me with your name and number if this is still an issue for you.  If you need immediate assistance, please use the link. The forums are primarily peer-to-peer advice and it sounds like you will need our technical support assistance.

  • Problem updateing itunes on my pc. need help

    I ran an update for itunes and ran into a problem. when I rebooted my pc it would not open itunes said to reinstall. went to Apple store and download itunes again and now can not open itunes

    Hello loranges,
    The following article provides steps that can help get iTunes back up and running.
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Cheers,
    Allen

  • Serious problem with my 3720 classic! NEED HELP!

    Hi! Today I switched on my pnone and after a while it rebooted. After that reboot, its rebooting after a couple o minutes again and again and again. Yesterday it was just fine! i have about 8000+ messages, but I cant back them up with ovi suite or nokia pc suite (older) because its rebooting constantly. What to do? I did a soft factory settings reset, but no effect...

    No, I have not upgraded my phone. My phone is as it was the first ime i bought it. The weird is that the day before the problems it was just fine, then I switched it of, and the next day it was malfunctioning.
    If I dont create any new playlist or try to delete any folder (files I can) th phone works fine, unless  there are things that I haven't go to yet and might cause the phone to malfunction again..
    If I try to create a playlist, it reboots constatly until I make a hard reset.
    ""Updating / Re-installing the firmware may help.. but there is a danger of phone re-booting during the process.. that may prevent a successful update and create more problem for you..""
    What do you mean? When I tried the first time the hard reset, it failed, and I had to do it 2 more times untill it was successful. Do you mean this,or a firmware update? (I didnt made any firmware update)
    If I make a firmware update, is it going to solve the problem??

  • Problem with remote rollover of images, please help.

    Hello,
    I got some great help yeserday on how to set up remote rollovers for a image gallery. It all works great except for when you have the curser in between the thumbnail images at bottom, the 1st image that I placed in large photo spot shows up. Any thoughts on how to fix this? Here is the page so you can look at the code. http://www.test.detarconstruction.com/homes/howard/howard.html
    Thank you so very much in advance for all your help
    Amy Sue

    You have added a "Mouse Exit" action to each of the thumbnails which always replaces the big photo with the startup image 'outside.jpg' each time you leave a thumbnail.
    (In source view you can see:
      onmouseout="changeImages('big_photo','outside.jpg');return true"
    for each of the thumbnails).
    If you simply remove all "Mouse Exit" actions the big image that belongs to the last touched thumbnail remains visible even if you leave the thumbnail and until you touch another one.
    This may be the effect you were searching for.

Maybe you are looking for

  • How do I add my bank website to the list?

    How do I add my bank opening page on the bookmark list?

  • How do I find missing .mov files in Organizer?

    I imported some .mov files from my iPhone.  I saw them in Organizer, now they don't show.  The files are there.  When I try to import them again, Organizer says they exist in the catalog and won't import again.  I created a new catalog and imported t

  • Import option not working - please help

    Hi I have MacBook Pro Retina 15 inch Early 2013. I use Motion (latest update 5.1.2) to convert my photo sequences to video files (time lapse). After importing first sequence I can export it with no problem. When I try to use Import option again nothi

  • Cant transmitt and Recieve data when USER INTERFACE Execution Mode selected

    Hi.. I am working on a project in which I have to continuously send and recieve serial data.. Again, in my application, I want to use AciveX control to open PDF (Theory related to the project). PDF can be opened only in USER INTERFACE Execution Mode.

  • Duplicate files inside and outside of iphoto

    Hi there When I first set up my new mac I had a folder of about 20Gb of photos organised into different folders, transfered from my old PC. I started to import them into iPhoto one folder at a time. After a couple of folders were imported - each with