SOLUTION: Problems using Muvo N200 with PCMCIA USB 2.0 C

The Muvo apparently requires more than 2 Am
ps.
to operate, inorder for
the Muvo not to shut-off and malfunction you need to have an auxilary
power supply connected to your card. Most cards have a single 5VDC 3A
input for this. I found this out that hard way buying a fifty dollar
belkin to replace my $9.00 no-name (with NEC chipset). It took me
a little bit to figure out that I had to have the Belkin plugged into
the wall via the AC Adapt. in order to get the Muvo to work correctly.
SO I expiremented with my "Cheapo" card and found that if I plugged the
Belkin AC Adpater into my "Cheapo" card it worked perfect.... Ahh computers
I hate them and I love them!!!
Didn't see this problem anywhere else on the forums so wasn't sure if it
had been addressed or not.
Thanks
Jesse Fout

USB should only need to provide 0.5A...

Similar Messages

  • Problem using SQL Loader with ODI

    Hi,
    I am having problems using SQL Loader with ODI. I am trying to fill an oracle table with data from a txt file. At first I had used "File to SQL" LKM, but due to the size of the source txt file (700MB), I decided to use "File to Oracle (SQLLDR)" LKM.
    The error that appears in myFile.txt.log is: "SQL*Loader-101: Invalid argument for username/password"
    I think that the problem could be in the definition of the data server (Physical architecutre in topology), because I have left blank Host, user and password.
    Is this the problem? What host and user should I use? With "File to SQL" works fine living this blank, but takes to much time.
    Thanks in advance

    I tried to use your code, but I couldn´t make it work (I don´t know Jython). I think the problem could be with the use of quotes
    Here is what I wrote:
    import os
    retVal = os.system(r'sqlldr control=E:\Public\TXTODI\PROFITA2/Profita2Final.txt.ctl log=E:\Public\TXTODI\PROFITA2/Profita2Final.txt.log userid=MYUSER/myPassword @ mySID')
    if retVal == 1 or retVal > 2:
    raise 'SQLLDR failed. Please check the for details '
    And the error message is:
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (innermost last):
    File "<string>", line 5, in ?
    SQLLDR failed. Please check the for details
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
         at com.sunopsis.dwg.codeinterpretor.k.a(k.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlC.treatTaskTrt(SnpSessTaskSqlC.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.h.y(h.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)

  • Problem using CORBA clients with RMI/EJB servers..!!!???

    Hi,
    I have a question on using EJB / or RMI servers with CORBA clients using
    RMI-IIOP transport, which in theory should work, but in practice has few
    glitches.
    Basically, I have implemented a very simple server, StockTreader, which
    looks up for a symbol and returns a 'Stock' object. In the first example, I
    simplified the 'Stock' object to be a mere java.lang.String, so that lookup
    would simply return the 'synbol'.
    Then I have implemented the above, as an RMI-IIOP server (case 1) and a
    CORBA server (case 2) with respective clients, and the pair of
    client-servers work fine as long as they are CORBA-to-CORBA and RMI-to-RMI.
    But the problem arises when I tried using the RMI server (via IIOP) with the
    CORBA client, when the client tries to narrow the object ref obtained from
    the naming service into the CORBA idl defined type (StockTrader) it ends up
    with a class cast exception.
    This is what I did to achieve the above results:
    [1] Define an RMI interface StockTrader.java (extending java.rmi.Remote)
    with the method,
    public String lookup( String symbol) throws RMIException;
    [2] Implement the StorckTrader interface (on a PortableRemoteObject derived
    class, to make it IIOP compliant), and then the server to register the stock
    trader with COS Naming service as follows:
    String homeName =....
    StockTraderImpl trader =new StockTraderImpl();
    System.out.println("binding obj <" homeName ">...");
    java.util.Hashtable ht =new java.util.Hashtable();
    ht.put("java.naming.factory.initial", args[2]);
    ht.put("java.naming.provider.url", args[3]);
    Context ctx =new InitialContext(ht);
    ctx.rebind(homeName, trader);
    [3] Generate the RMI-IIOP skeletons for the Implementation class,
    rmic -iiop stock.StockTraderImpl
    [4] generate the IDL for the RMI interface,
    rmic -idl stock.StockTraderImpl
    [5] Generate IDL stubs for the CORBA client,
    idlj -v -fclient -emitAll StockTraderImpl.idl
    [6] Write the client to use the IDL-defined stock trader,
    String serverName =args[0];
    String symList =args[1];
    StockClient client =new StockClient();
    System.out.println("init orb...");
    ORB orb =ORB.init(args, null);
    System.out.println("resolve init name service...");
    org.omg.CORBA.Object objRef
    =orb.resolve_initial_references("NameService");
    NamingContext naming =NamingContextHelper.narrow(objRef);
    ... define a naming component etc...
    org.omg.CORBA.Object obj =naming.resolve(...);
    System.out.println("narrow objRef: " obj.getClass() ": " +obj);
    StockTrader trader =StockTraderHelper.narrow(obj);
    [7] Compile all the classes using Java 1.2.2
    [8] start tnameserv (naming service), then the server to register the RMI
    server obj
    [9] Run the CORBA client, passing it the COSNaming service ref name (with
    which the server obj is registered)
    The CORBA client successfully finds the server obj ref in the naming
    service, the operation StockTraderHelper.narrow() fails in the segment
    below, with a class cast exception:
    org.omg.CORBA.Object obj =naming.resolve(...);
    StockTrader trader =StockTraderHelper.narrow(obj);
    The <obj> returned by naming service turns out to be of the type;
    class com.sun.rmi.iiop.CDRInputStream$1
    This is of the same type when stock trader object is registered in a CORBA
    server (as opposed to an RMI server), but works correctly with no casting
    excpetions..
    Any ideas / hints very welcome.
    thanks in advance,
    -hari

    On the contrary... all that is being said is that we needed to provide clearer examples/documentation in the 5.1.0 release. There will be no difference between the product as found in the service pack and the product found in the 5.1.1. That is, the only substantive will be that 5.1.1 will also
    include the examples.
    "<=one way=>" wrote:
    With reference to your and other messages, it appears that one should not
    expect that WLS RMI-IIOP will work in a complex real-life system, at least
    not now. In other words, support for real-life CORBA clients is not an
    option in the current release of WLS.
    TIA
    "Eduardo Ceballos" <[email protected]> wrote in message
    news:[email protected]...
    We currently publish an IDL example, even though the IDL programmingmodel in Java is completely non-functional, in anticipation of the support
    needs for uses who need to use IDL to talk to the Weblogic server,
    generically. This example illustrates the simplest connectivity; it does not
    address how
    to integrate CORBA and EJB, a broad topic, fraught with peril, imo. I'llnote in passing that, to my knowledge, none of the other vendors attempt
    this topic either, a point which is telling if all the less happy to hear.
    For the record then, what is missing from our distribution wrt RMI-IIOPare a RMI-IIOP example, an EJB-IIOP example, an EJB-C++. In this you are
    correct; better examples are forth coming.
    Still, I would not call our RMI-IIOP implementation fragile. I would saythat customers have an understandably hard time accepting that the IDL
    programming model is busted; busted in the sense that there are no C++
    libraries to support the EJB model, and busted in the sense that there is
    simply no
    support in Java for an IDL interface to an EJB. Weblogic has nothing to doit being busted, although we are trying to help our customers deal with it
    in productive ways.
    For the moment, what there is is a RMI (over IIOP) programming model, aninherently Java to Java programming model, and true to that, we accept and
    dispatch IIOP request into RMI server objects. The way I look at it is this:
    it's just a protocol, like HTTP, or JRMP; it's not IDL and it has
    practically nothing to do with CORBA.
    ST wrote:
    Eduardo,
    Can you give us more details about the comment below:
    I fear that as soon as the call to narrow succeeds, the remainingapplication will fail to work correctly because it is too difficult ot
    use an idl client in java to work.It seems to me that Weblogic's RMI-IIOP is a very fragile
    implementation. We
    don't need a "HelloWorld" example, we need a concrete serious example(fully
    tested and seriously documented) that works so that we can get a betteridea
    on how to integrate CORBA and EJB.
    Thanks,
    Said
    "Eduardo Ceballos" <[email protected]> wrote in message
    news:[email protected]...
    Please post request to the news group...
    As I said, you must separate the idl related classes (class files and
    java
    files) from the rmi classes... in the rmic step, you must set a newtarget
    (as you did), emit the java files into that directory (it's not clearyou
    did this), then remove all the rmi class files from the class path... ifyou
    need to compile more classes at that point, copy the java files to theidl
    directly is you must, but you can not share the types in any way.
    I fear that as soon as the call to narrow succeeds, the remainingapplication will fail to work correctly because it is too difficult otuse
    an idl client in java to work.
    Harindra Rajapakshe wrote:
    Hi Eduardo,
    Thanks for the help. That is the way I compiled my CORBA client, by
    separating the IDL-generated stubs from the RMI ones, but still I
    get a
    CORBA.BAD_PARAM upon narrowing the client proxy to the interfacetype.
    Here's what I did;
    + Define the RMI interfaces, in this case a StockTrader interface.
    + Implement RMI interface by extendingjavax.rmi.PortableRemoteObject
    making
    it IIOP compliant
    + Implemnnt an RMI server, and compile using JDK1.2.2
    + use the RMI implementation to generate CORBA idl, using RMI-IIOPplugin
    utility rmic;
    rmic -idl -noValueMethods -always -d idl stock.StockTraderImpl
    + generate Java mappings to the IDL generated above, using RMI-IIOPplugin
    util,
    idlj -v -fclient -emitAll -tf src stocks\StockTrader.idl
    This creates source for the package stock and also
    org.omg.CORBA.*
    package, presumably IIOP type marshalling
    + compile all classes generated above using JDK1.2.2
    + Implement client (CORBA) using the classes generated above, NOTthe
    RMI
    proxies.
    + start RMI server, with stockTrader server obj
    + start tnameserv
    + start CORBA client
    Then the client errors when trying to narrow the obj ref from the
    naming
    service, into the CORBA IDL defined interface using,
    org.omg.CORBA.Object obj =naming.resolve(nn);
    StockTrader trader =StockTraderHelper.narrow(obj); // THIS
    ERRORS..!!!
    throwing a CORBA.BAD_PARAM exception.
    any ideas..?
    Thanks in advance,
    -hari
    ----- Original Message -----
    From: Eduardo Ceballos <[email protected]>
    Newsgroups: weblogic.developer.interest.rmi-iiop
    To: Hari Rajapakshe <[email protected]>
    Sent: Wednesday, July 26, 2000 4:38 AM
    Subject: Re: problem using CORBA clients with RMI/EJBservers..!!!???
    Please see the post on june 26, re Errors compiling... somewherein
    there,
    I suspect, you are referring to the rmi class file when you are
    obliged
    to
    completely segregate these from the idl class files.
    Hari Rajapakshe wrote:
    Hi,
    I have a question on using EJB / or RMI servers with CORBA
    clients
    using
    RMI-IIOP transport, which in theory should work, but in practice
    has
    few
    glitches.
    Basically, I have implemented a very simple server,
    StockTreader,
    which
    looks up for a symbol and returns a 'Stock' object. In the firstexample, I
    simplified the 'Stock' object to be a mere java.lang.String, so
    that
    lookup
    would simply return the 'synbol'.
    Then I have implemented the above, as an RMI-IIOP server (case
    1)
    and a
    CORBA server (case 2) with respective clients, and the pair of
    client-servers work fine as long as they are CORBA-to-CORBA andRMI-to-RMI.
    But the problem arises when I tried using the RMI server (via
    IIOP)
    with
    the
    CORBA client, when the client tries to narrow the object ref
    obtained
    from
    the naming service into the CORBA idl defined type (StockTrader)
    it
    ends
    up
    with a class cast exception.
    This is what I did to achieve the above results:
    [1] Define an RMI interface StockTrader.java (extending
    java.rmi.Remote)
    with the method,
    public String lookup( String symbol) throws RMIException;
    [2] Implement the StorckTrader interface (on a
    PortableRemoteObject
    derived
    class, to make it IIOP compliant), and then the server to
    register
    the
    stock
    trader with COS Naming service as follows:
    String homeName =....
    StockTraderImpl trader =new StockTraderImpl();
    System.out.println("binding obj <" homeName ">...");
    java.util.Hashtable ht =new java.util.Hashtable();
    ht.put("java.naming.factory.initial", args[2]);
    ht.put("java.naming.provider.url", args[3]);
    Context ctx =new InitialContext(ht);
    ctx.rebind(homeName, trader);
    [3] Generate the RMI-IIOP skeletons for the Implementation
    class,
    rmic -iiop stock.StockTraderImpl
    [4] generate the IDL for the RMI interface,
    rmic -idl stock.StockTraderImpl
    [5] Generate IDL stubs for the CORBA client,
    idlj -v -fclient -emitAll StockTraderImpl.idl
    [6] Write the client to use the IDL-defined stock trader,
    String serverName =args[0];
    String symList =args[1];
    StockClient client =new StockClient();
    System.out.println("init orb...");
    ORB orb =ORB.init(args, null);
    System.out.println("resolve init name service...");
    org.omg.CORBA.Object objRef
    =orb.resolve_initial_references("NameService");
    NamingContext naming=NamingContextHelper.narrow(objRef);
    ... define a naming component etc...
    org.omg.CORBA.Object obj =naming.resolve(...);
    System.out.println("narrow objRef: " obj.getClass() ":"
    +obj);
    StockTrader trader =StockTraderHelper.narrow(obj);
    [7] Compile all the classes using Java 1.2.2
    [8] start tnameserv (naming service), then the server to
    register
    the
    RMI
    server obj
    [9] Run the CORBA client, passing it the COSNaming service ref
    name
    (with
    which the server obj is registered)
    The CORBA client successfully finds the server obj ref in the
    naming
    service, the operation StockTraderHelper.narrow() fails in thesegment
    below, with a class cast exception:
    org.omg.CORBA.Object obj =naming.resolve(...);
    StockTrader trader =StockTraderHelper.narrow(obj);
    The <obj> returned by naming service turns out to be of the
    type;
    class com.sun.rmi.iiop.CDRInputStream$1
    This is of the same type when stock trader object is registeredin a
    CORBA
    server (as opposed to an RMI server), but works correctly with
    no
    casting
    excpetions..
    Any ideas / hints very welcome.
    thanks in advance,
    -hari

  • Can I use time capsule with a USB cellular modem?

    Can I use time capsule with a USB cellular modem?

    No, since the USB port on the Time Capsule will only support a compatible printer and/or hard drive.

  • Can I use Airport Express with a USB Hard disk as a NAS solution?

    What have people tried for NAS solutions that work really well wirelessly? Can I use my Airport Express with its USB port to attach a hard disk? Or do I need an Airport Extreme base station? Or some other solution?

    The price of the Time Capsule includes the NAS backup system plus a hardware router for your network.
    Macs do not support USB 3.0 and most likely won't because Apple's weight is behind Thunderbolt which is considerably faster and more versatile than USB.

  • Using Time MACHINE with a USB drive connected to an Airport Extreme

    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software products that may be mentioned in the topic below. Apple encourages you to first seek a solution at Apple Support. The following links are provided as is, with no guarantee of the effectiveness or reliability of the information. Apple does not guarantee that these links will be maintained or functional at any given time. Use the information below at your own discretion.
    Please click here:
    |
    Using Time Machine with an Airport Extreme AirDisk
    |
    Note: If you got here by clicking a link that looks like this:
    _. . . discussions.apple.com/thread.jspa?threadID=2299608#Q1_
    Note the number at the end, after the +*pound sign,+* (#) and click the corresponding item below:
    Please pardon the inconvenience.
    |
    QUESTIONS
    *Q1. Can I use the USB drive(s) for Time Machine backups AND other data?*
    *Q2. How do I set up Time Machine to back up to a USB drive connected to my Airport Extreme?*
    *Q3. How do I delete backups?*
    *Q4. How do I back-up my backups?*
    If you don't see your question here, try Time Machine - Frequently Asked Questions.
    |
    PROBLEMS
    *P1. The Backup disk image could not be created.*
    *P2. Time Machine could not complete the backup . . sparsebundle could not be accessed. (Error 109).*
    If you don't see your problem here, try Time Machine - Troubleshooting
    This is the 3rd version of this tip. It was submitted on May 16, 2010 by Pondini.
    Do you want to provide feedback on this User Contributed Tip or contribute your own? If you have achieved Level 2 status, visit the User Tips Library Contributions forum for more information.

    Hi, Nubz!
    Yes, I just saw that, and am still chuckling.
    Maybe that will mollify the Jive gods?
    Thanks again,
    Jim

  • Compatability with PCMCIA USB 2 & Zen Touch

    Hi,
    My laptop only has USB . built in so I have recently purchased a PCMCIA USB 2 card. It appears that the card is functioning correctly and there are no problems when used with my digital camera, printer or mouse. However, when I connect the Zen Touch it starts working initially...the player says that it's docked and it seems to communicate with the computer (bringing files up in MediaSource etc...) but as soon as I try to transfer files to or from the devide the computer crashes. Firstly MediaSource stops responding, then Windows entirely freezes meaning I have to hold the power down button to reset the machine.
    Please, please, please can someone help me with this problem...it's driving me insane!!
    Thanks, Tom.

    I know it works properly on USB but I dont own a desktop PC to try try it on there. There was a suggestion that it may be that there is not enough power getting to the Zen from the USB socket but the software with the USB card shows the power levels and it is being supplied plenty of power.
    I am becoming more curious about what is going on here becasue now I am unable to transfer music through the USB sockets on the laptop. MediaSource start to transfer then brings up and error saying that some other application is using the Zen or something along those lines.
    Anyhow, I am now stuck because I dont have any other way of transferring music to or from the player.

  • Problems Using Logic Express with Alesis Multimix 8

    Hi,
    Does anybody have any experience of using the Alesis Multimix 8 USB with Logic Express 7.0.1? As far as I can tell the software is set up OK. The problem is that there is an awful amount of noise present on both the input and the output (sounds like inordinatley loud dither). The problem is also present on Garageband and iTunes but not with Cubase LE (bundled in with the Multimix).
    I have searched and searched the internet for drivers for the Multimix but with no luck. At the moment I am just using the "core audio" USB codec drivers that are built in as I seem to have no other option.
    Does anybody have any suggestions before I go ahead and buy another external audio interface? (got my eye on the new Behringer F-CONTROL AUDIO FCA202)
    Rev. G Rock
    PS I am running OS X (10.3.9) on a G4 iBook (1.33 GHz, 1.25 GB RAM) and have done all the updates available for Logic Express 7.0(.1)
    iBook G4   Mac OS X (10.3.9)  

    OK I understand it's helpful to others to post solutions should you find them so here goes:
    It would seem that the problem is with the built in CODEC used by OS X. You can update using the drivers available at http://www.usb-codec.com
    I used the demo version to see if it solved the problem which it did. However you need to buy the software to get rid of the annoying beep every 30 secs on the demo version. well worth it to get my hardware working properly though.
    Rev. G Rock

  • Problem on sending fax with Apple USB modem

    Hello everyone,
    I use my macmini to manage faxes to help my father's business, as fax is one of the most important mean of communication to our clients. While I can only receive fax from outside to my mac, but I cannot send fax from my mac through "Send PDF" option, it just stop working, and "Waiting for modem to become available" without using my telephone-line. It is weird when I plug it into my macbook that it works.
    Look forward to your advice. Thank you,
    Victor Tang
    Message was edited by: victan7300

    I am having problems sending and receiving faxes, too, and have been working with AppleCare level 2. They are off for a couple of days, and the solution is nowhere in sight. They did capture information from my system as I tried to fax, and sent it to engineering. They have determined that I am not getting a dial tone.
    When I connect my phone to the jack, I do get a dial tone and can talk on the phone (which I do frequently). I have been provided with two additional new Apple USB modems to try to see if that would fix the problem. It did not make any difference which of the three modems I use, I cannot send or receive faxes. Yesterday, I booted up my old iMac (OS X 10.4.11 with a collapsing hard drive, but an internal modem). I attached this computer to the same phone jack and was able to freely send faxes - every single try.
    I downloaded and set up the application PageSender just to see if it was the fax software (I have been trying to just use what came with my MacBook Pro). Using the Apple USB external modem (as I have had to do with this computer and operating system), I could not send any faxes - could not get a dial tone, according to PageSender.
    I, therefore, believe that the problem is with the external modem and/or the extensions that operate the external modem.
    I did try what you have suggested above - the substitution of the IOSerialFamily.kext:
    I partitioned my harddrive into two partitions HD and HD_2. I loaded OS X 10.5.5 (from my CD) onto the second partition. I then copied the IOSerialFamily.kext on my thumb drive (from OS X 10.5.5 the version was 92). Then I upgraded to 10.5.6, and copied the ioSerialFamily.kext on my thumb drive - this time with 10.5.6 the version was 93. I went back to my first partition where I have 10.5.7 (version 94) and tried to transfer version 93 IOSerialFamily.kext to the extensions. As soon as I tried to mount the Apple USB modem I received the following message:
    "System extension cannot be used
    The system extension”/system/Library/Estensions/IOSerialFamily.kext/contents/PlugIns/Motor olaSM56KUSB.kext was installed improperly and cannot be used. Please try reinstalling it or contact the product’s vendor for an update."
    At that point I tried to exchange the version 93 with the one that I removed - version 94, but I continued to get the same message. I decided to reinstall 10.5.7 again hoping that this would solve the message problem. No such luck! I did now have version 94, but the same error message. At this point, I tried a permissions repair. This solved the error problem... but I was still not able to send or receive faxes, because the fax programs could detect not dial tone.
    Because I have never sent or received faxes with this computer - only my iBook (10.4.11), I decided to go back to the second partition on my computer and see if I could send a fax from the macBook Pro with 10.5.6. The results are sporadic. I had to try several times, and occasionally I would get a dial tone and could send the fax, but more often, I could not. There was no difference in any of the 2 modems I tried (by now I had returned 1 to the Apple Store), or whether I used the front USB port or the rear USB port. The sending of a fax with MacBook Pro and 10.5.6 was not consistent or reliable and I could only occasionally get a dial tone... with 10.5.7 I can never get a dial tone.
    According to my AppleCare representative the engineers are "on this". But I see that the original post was in November, which was prior to 10.5.7; I purchased my MacBook Pro with 10.5.5 in December, so imagine that this problem has been around through several upgrades of 10.5.
    This is unbelievably frustrating! Has anyone been able to easily send and receive faxes with 10.5.5?
    Chris (hopefully you are still around), did you get any error messages when you exchanged your 10.5.6 IOSerialFamily.kext for the 10.5.7 IOSerialFamily.kext - especially when you mounted- or tried to attach the external modem? If so, how did you handle that?
    Sorry that this has been such a long post. I have tried to provide as much information as I could in the hopes of finding a solution. Any ideas???
    THANKS!

  • Problem using docking station with ipod 5th generation

    just bought an ipod touch, 5th generation, with the Lightening connector. Bought an Acoustic solutions docking station with the same small lightening connector but when I dock I can only charge the ipod and not play music through the docking station. Does anyone have same problems playing music with a 5th generation ipod that has the new small lightening connector?...I bumped into someone at Argos who said they are having the same problem not being able to play music from the new iphone 5 that has the lightening connector and even if you use a adaptor to make it 30 pin connector compatable it still doesnt work, any help will be appreciated, thanks

    Does Acoustic Solutions say it will work with your model iPod and iOS 7.0.4?
    Have you went to their support site?
    Sometimes this works
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                                
    iOS: How to back up                                                                                     
    - Restore to factory settings/new iOS device.             
    Sometimes an iOS updates breaks compatibility and yo will have to wait for iOS update or an update to the dock's firmware.

  • Solution to using Site Root with Sub-folders on Testing Server & Browser Previews

    Hi Everyone
    Have found an elegant solution when using Site Root relative linking for a website, that allows browser previews, even when the testing server uses sub-folders and the live code references just the server site root " / " of the live server and not the sub-folder structure of the testing server.  This is really useful when you don't want to use document relative linking, which normally takes care of this problem in Dreamweaver.
    The solution is to use sub-domains referencing the sub-folders on the testing server, so the sub-folders appear as the root of each website and the html code pointing to the site root works correctly on both testing & live servers without alteration.
    Testing Server Setup
    One testing server domain is used for all client development work:
    For example:  www.testingserver.com
    On the testing server there are multiple sub-folder (one for each client website being developed):
    For example:  www.testingserver.com/clientA/ ,  www.testingserver.com/clientB/ , www.testingserver.com/clientC/
    Live Server Setup
    The site code needs to be developed with the final live server folder structure (url references) in mind:
    For example:  www.livesite.com (with all pages referencing the root of the live site server)
    Page URLs on Testing & Live Servers
    /page-name.html
    Testing server url:  www.testingserver.com/clientA/page-name.html
    Live server url:  www.livesite.com/page-name.html (without /clientA/ sub-folder)
    Browser Previews Don't Work
    You want to be able to run browser previews on the testing server while developing the website.  To do this you normally have to reference the sub-folder structure of the testing server in the url for things to work right:
    For example www.testingserver.com/clientA/page-name.html
    What do you do, when you can't keep switching all the urls in the code from pointing to the sub-folder to pointing to the site root, and you don't want to use document relative linking?
    One Solution - Sub-domains on Testing Server
    In your domain hosting (outside of Dreamweaver) setup a sub-domain to point to the testing server sub-folder.
    For example:  Sub-domain clientA.testingserver.com points to www.testingserver.com/clientA (sub-folder)
    So now when you reference the sub-domain it sees the sub-folder as the site root and all your problems are solved.
    Dreamweaver Site Definition Setup
    Site Definition under "Local Info"
    Links relative to: Site Root
    Site Definition under "Remote Info" (live server)
    Access: FTP
    FTP host:  ftp.livesite.com
    Host directory: /
    Site Definition under "Testing Server" 
    Access: FTP
    FTP host:  clientA.testingserver.com
    Host directory: /
    URL prefix: http://clientA.testingserver.com
    (location of the site's root folder on the testing server, the sub-domain redirection takes care of pointing to the sub-folder)
    This is just one solution but it works well for me as it doesn't have any cost associated with it under our hosting package where you can have multiple sub-domains setup.
    Hope this helps someone in a similar situation.
    Aly

    Just Google it, or run out and buy a copy of David Powers' Foundations Dreamweaver CS4 with CSS, Ajax and PHP, a book that is never out of reach for me.  He details the process explicitly for both Mac and PC.
    For me, on W7, I edit the C:/Windows/System32/drivers/etc/hosts file, and add the ip of my testing server along with the site alias -
    192.168.1.82  site.local
    Then I add this same designation to my httpd.conf file in Apache on the testing server.  Finally I restart Apache.
    Now from my production machine if I browse to "http://site.local", I get to see either the default file in the root of the site on the testing server, or a directory of the site on the testing server (my testing server is a unix box running on my LAN at that ip address).  Furthermore, all of my root relative links now work as they would if the pages were being browsed from the live server.

  • Problem using Time Machine with Seagate BackUp Plus Pls HELP!!

    I have a late 2006 iMac (running OS 10.5.8) & am trying to back up using Time Machine with a new Seagate BackUp Plus drive. When I select the Seagate drive in Time Machine it tells me I msut first erase the (Seagate) disk. When I hit ERASE, I get a Time Machine error : COULD NOT UNMOUNT DISK. I see from various posts that 10,5 & 10,6 have issues with some external drives so want to upgrade to Mavericks (to get around this incompatibility issue): HOwever apparently my iMac is too old (by 1 year) to allow this. Can anyone give me any advice on how to get my iMac content backed up via Time Machine using the Seagate BackUP PLus drive I  bought (becasue it is supposedly "compatible with PCs & Macs".
    Thank you!!
    Wendy

    Your Seagate drive should work just fine. If it doesn't have any important data on it, try re-formatting it with Disk Utility to blank it out. Or run the Disk verify/repair and see if you can get it to fix any problems.
    I have a Drobo FS too. You probably need a firmware update, they issued one a while back to fix problems with Time Machine. Use the Dashboard or download it from their support site, http://www.drobo.com/support/updates.php
    Just curious how long you let it run after it "stalled". If it is a big file it could just be taking a while to copy over, do you see activity lights on the USB drive? The first time you use time machine let it run overnight, it's going to take a while, after that it will update quickly.
    While you're at it, you might want to verify your start-up disk too with Disk Utility.

  • Problem using dual monitors with Radeon 9000 Pro and 2 x Samsung SM223BW

    Hello all
    I really need an expert opinion here:
    I am using quite a lot my MDD 1.25Ghz that is still equipped with the OEM ATI 9000 Pro Mac Edition with 64MBs of Video RAM and as most if not all Mac-specific cards it has an ADC and a DVI port. I recently purchased a couple of Samsung monitors; the afore mention in the subject SM223BW. The monitors have two inputs, both DVI and D-SUB (Analog VGA or otherwise plain old RGB).
    I have purchased a Formac ADC to DVI converter and connected this output to the DVI input of the first monitor. It works like a charm and the picture quality it is quite good (not as with an Apple Display but I couldn't afford them at this stage). For the second monitor I used a DVI to VGA cable (going from the DVI output of the card to the VGA In of the monitor).
    Now here is the problem: The monitor that is connected ADC to DVI has all the available 16:10 ratio option that are suitable for this monitor. The DVI to VGA one gives me only a 1680x1050 and all the rest are 4x3 resolutions.
    Would anyone know why this happens? Could it be a monitor issue? Could it be that perhaps TFT monitors offer different resolutions according to the input used. Or could it be the graphics card? Or even perhaps the cable?
    Under OS X, same settings and same computer I am given more resolution options. Would that mean that it might be as well my beloved OS 9 in combination with the card?
    Or am I stressing this too far?
    Please any ideas are more than welcome
    PS: I have a dual 2.0Ghz G5 connected to the rest of the DVI and VGA inputs to be able to run both without having to repatch. Otherwise a DVI to DVI connection would have made more sense and solved the problem

    Hey Simon
    I bought these monitors for their dual input functionality. The reason that I have the G4 connected to VGA is because I have another G5 connected the other way around in order to be able to use both computers, at any given time, with two screens.
    Perhaps to make clear the connections I've done (if of course anyone is interested :)) ...
    The G4 connects via ADC to DVI to the DVI input of Monitor No.1
    The G5 connects via VGA to VGA to Monitor No.1
    The G4 connects via DVI to VGA to Monitor No.2
    The G5 connects via DVI to DVI to Monitor No.2
    Another question would be why simply one mac isn't connected solely via DVI and the other one via VGA? The reason is that the VGA input looks awful on these screens for whatever reason. The image is seriously not sharp, the fonts looks horrendous and even with a lot of tweaking from the monitor settings, still I'd say the image is minging. If anyone knows why a VGA input can look that bad and still a monitor being in the market please let me know. It could be that this monitor is aimed to PC users and with the accompanying PC-only drivers all such are non-existent...Anyway I decided to go with the half DVI-half VGA solution to get the best out of the situation.
    But on the question asked, I decided to use a 2 DVI input Avocent KVM that I've got with interesting results. I am pretty sure it is boring to read but if anyone has spare time here it goes:
    The G4 connects via ADC to DVI to Monitor 1.
    Monitor 2 DVI output connects to DVI KVM Input
    The G4 connects via DVI to DVI to KVM Output 1
    The G5 connects via DVI to DVI to KVM Output 2
    The G5 still connects via VGA to VGA to Monitor 2
    In this manner I am guaranteed to utilize the DVI inputs for both monitors, at least on my G4 and the G5 be forced to utilize one VGA. The plus side of the situation is that I can use both systems with the flick of a button without having to get up to change the Source on the monitors plus of course one keyboard and a mouse. Now here is the interesting bit:
    Under OS 9, with the resolution 1280x800 on Monitor No.1 (the one connected via ADC to DVI) flips to - I think - 1680x1050 - it could be higher than that - with a thick black frame around the Desktop occupying a good chunk of the screen and the actual OS 9 looking minuscule at the center of it.
    Monitor No.2 (the DVI to DVI connected one) looks just fine.
    Now on top of that, when the G5 is switched on but the KVM is outputting the G4 desktop on Monitor No.2, whenever the mouse cursor slides on this monitor, it goes black! Just simply black and when I move the mouse cursor back on Monitor No.1 goes Desktop again.
    Under OS X, none of the afore mentioned problems exist. Everything runs fine and I am give more 16:10 resolutions as well.
    Confused? I am

  • Problem using iPad mirroring with an Apple TV and 4:3 Projector

    I'm a teacher and I've been using my iPad 2 in the classroom for about a year and a half. I would use Apple's VGA Adapter to connect to my projector, which worked fine. I just didn't like being tied down, and the dock connector would come loose very easily and lose connection to the projector, which interrupted the flow of the lesson.
    So this summer, I got an Apple TV and a projector with an HDMI port so I could start using Airplay Mirroring to get the iPad screen onto the projector. But I'm having trouble with the aspect ratio. Forgive my drawing, but the genius at the Apple store had a hard time understanding my explanation, so I'm hoping this will help show what I mean.
    My projector (ViewSonic DLP PJD5133) can be set to either a 4:3 or 16:9 aspect ratio (4:3, 800x600 is the native resolution). My projector screen in the front of the classroom is 4:3, so when the projector is set to 4:3, the image fills up the screen (which is what I want - it needs to be as big as possible so the entire class can see it clearly; plus it means all the output pixels are being used). When the projector is set to 16:9, the image is letterboxed (not ideal unless I'm showing a widescreen video or image).
    The Apple TV's native aspect ratio is widescreen, and the iPad's native aspect ratio is 4:3, so if you use Airplay mirroring on a widescreen TV, the Apple TV will pillarbox the image (add horizontal black bars on each side), so that the image will not be stretched/distorted. (I know that it will show widescreen videos and a few widescreen-ready apps without the pillarbox, but the apps I use in class - Keynote, Noteshelf, etc. - don't fall in that category). The effect on my projector screen is a tiny 4:3 image taking up half the area it would have taken if I had used the VGA connection.
    So in the Apple TV, I went to Settings>Audio & Video>TV resolution, and chose 800x600 60Hz (the max 4:3 resolution for my projector). Since the Apple TV is natively widescreen, it seems to accomplish this change be stretching the image vertically; but it basically works because the Apple TV home screen fills up the projector screen. However, when I turn on Airplay Mirroring on my iPad, the image does not fill up the screen. The Apple TV still puts a pillarbox on the image, so I end up with a distorted, square image of my iPad screen. It's the right height - the max 600 pixels for my projector - but it's not as wide as it should/could be.
    Is there a setting that I'm missing? I understand that the Apple TV has to stretch its home screen image to accommodate the 4:3 resolution, but I think it should be smart enough to realize that if it's receiving a 4:3 image from the iPad and sending it out to a 4:3 TV, it doesn't need to pillarbox the image.
    Before you answer - this is not a problem with the projector settings, and my Apple TV is not defective. You could simulate what's happening on your Apple TV, even if it's hooked up to a widescreen TV. In the Apple TV settings, change the TV Resolution to 800x600 as mentioned above (or any other of the 4:3 options). Now go to the Apple TV home screen, and note the amount of space the image is taking up on your screen (on a widescreen TV, it will be pillarboxed, and it will look like it's been squished horizontally). Then turn on Airplay mirroring on the iPad, and you'll see that the iPad image does not have the same width as the Apple TV home screen and it looks square/squished.
    Also, while my projector does have a zoom function, it will not magnify the small iPad mirror image correctly (if I were to leave the Apple TV and projector on a 16:9 setting). It cuts off the top and sides. But even if it didn't crop the image, it's a digital zoom, so that option still won't fix the fact that I'm not getting a full 800x600 image on the projector. The same problem would apply if I were to move the projector farther away from the screen (so that the widescreen image takes up the full height of the projector screen, while spilling off the sides). I'll still have a lower resolution image, which isn't ideal since I'm often showing text on the screen through Keynote. Also, widescreen videos wouldn't fit on the screen, and I can't move the projector easily because it's fixed to the ceiling.
    Sorry for the long explanation. Any ideas? I'd really appreciate some insight.

    We have the same problem, and not only with ipads. Macbook Air is doing something similar. it can only use airplay with 1080 and 720 resolution, so the image is squeezed on a 4:3 projector. We use AppleTV 3 and Mountain Lion OS. We use ATVPRO from Kanex.
    Apple must get its act together and fix this, they promise gold and green forests, but nothing works.
    DO SOMETHING!

  • Using Muvo^2 with naps

    I have a Muvo^2 and Napster says that it is a Windows Compatible device and as such can be used in conjunction with Napster. I've tried all the logical things and consulted all the FAQs to try and put tracks onto it though, from Napster, but to no avail
    Any clues anyone? Thanks

    The player isn't compatible with subscription music such as Napster To Go. You can only use it with pay-per download type of online music. Also, for these type of music, you will need to use either Windows Media Player or MediaSource to transfer it to the player.
    Jason

Maybe you are looking for

  • Apple TV Video Playlists? How do I create one?

    Forgive me if this is redundant question. My boss came to me and wants 500+ short 30 second commercials on an Apple TV unit. Now many these commercials are for a different products. How do I create a video playlist for each product? Or can I create s

  • Using the Express as Bridge with an SMC Gateway device for VOIP Possible?

    Hi there: I want to purchase a VOIP Internet phone & line and am concerned that it may not work with my Airport Express. I can use any old phone as long as it is hooked up to the VOIP gateway device which must be connected directly to my High Speed D

  • Implementation problem

    Hi I wrote a frame class: public class MyFrame extends javax.swing.JFrame{     private MyPanel buttonPanel;     private initGUI(){             buttonPanel = new MyPanel();             getContentPane().add( buttonPanel, new GridBagConstraints( 1, 4, 5

  • Lightroom exporting to JPEG without Detail settings

    In Lightroom 3.3 (on OS X 10.6.4), when I export a photo with Detail  settings (noise reduction, etc) to JPEG, these settings are not in the JPEG. Am I doin it rong? This is illogical and frustrating. Library: Develop with Detail on: Develop with Det

  • ACS migration tool fails

    Hi, running the migration tool, I receive the following request: Make sure that the database is running. ACS 4.x DB is not available, Enter ACS 4.x database password(Encrypted Password) With the plain database password, used during the ACS installati