[solved] Need DEFINITE solution to 'no more qt-config' problem

The qt-config utility (the one with which you could "switch" between qt3 and qt4) recently vanished. Is there a known definite solution to this problem, i.e. a way to set EXACTLY the same states/variables/symlinks/whatever that were set with "qt-config qt" and "qt-config qt4"?
And by the way, why was qt-config removed?
Last edited by Rulatir (2009-01-11 11:14:19)

Because KDE 4.0 is just around the corner, qt4 from [community] will be moved to [extra] as qt. qt (3.3.8) will then be renamed to qt3 (still in [extra]).
http://archlinux.org/pipermail/arch-dev … 02910.html
As for the QT4 compilation, you won't need the qt-config anymore because qt4 is the "default" qt.
$ which qmake
/usr/bin/qmake
$ qmake -v
QMake version 2.01a
Using Qt version 4.3.2 in /usr/lib
For Qt4 compilation:
source /etc/profile.d/qt4.sh
qmake (I explicitly use the /usr/bin prefix though)
make
For Qt3:
source /etc/profile.d/qt.sh
${QTDIR}/bin/qmake
make

Similar Messages

  • Is there a definitive solution to the "Leopard Printer Pause" problem?

    Curious if there was any definitive solution to the problem of networked printers pausing instead of printing when a job has been sent to it. I've combed these forums looking for solutions and everything that seems to have work for some has not worked for me, including: connecting via LPD rather than AppleTalk and IP, connecting using HP Jet Direct, setting up the printer using CUPS instead of using the System Prefs, etc. I have a Xerox Phaser 4500 that worked fine under Tiger, but refuses to print without pause issues under 10.5.2 (except, oddly enough and unlike others, it WILL print immediately in CS3 apps, or at least InDesign, where I spend 90% of my time). I've got the latest firmware and PPD for the 4500, but no luck. Here's what Console throws up:
    2/19/08 1:24:59 PM Phaser_4500N[8964] CMSCreateDataProviderOrGetInfo : Malformed colorspace
    I sure would love to know what's going on. Anything else I should try?

    RESOLVED
    I had the same problem with both my Epson R1800 and CX9400. After 30 minutes with Epson, resulting in the best way to do a clean install of your drivers (outlined in this post:<http://discussions.apple.com/message.jspa?messageID=6761221#6761221>), the CSR said that the issue was Apple Related.
    I am hesitant to call Apple, but in this case it proved to be the smartest and best solution. The Apple expert found that this is a known issue stemming from the last security update (Security Update 2008-002) resulting in a conflict involving SSH and printing outlined here: ,http://blogs.zdnet.com/Apple/?p=1437>
    The conflict is with a small piece of software called "Instant Hijack" that is installed with many applications offered by Rogue Amoeba. The fix is an update to Rogue Amoeba software such as Audio Hijack Pro. "Instant hijack 2.0.3" is not a stand alone installer, it can only be updated through Rogue Amoeba's software such as Audio Hijack. <http://www.rogueamoeba.com/audiohijackpro/>
    Hope this helps, it worked perfectly for me and I have been unable to print a single page since the security update.
    Henry

  • Need definitive solution Suite 6.83.14.1 not worki...

    I see a lot of comments of frustration. but no one solution.
    I just received my CA-42 cable with software.
    I have Windows XP with Service Pack 2
    2118 nokia phone
    6.83.9.0 Nokia Connectivity Cable Driver
    6.83.14.1 Suite
    I got a disk with the cable... I couldn't get the driver to work with what ever version it came with and so decided to get the latest software.
    What I've read is that the installation should take care of installing the driver.
    I get to a point in the Nokia suite "Get Connected" and it appears that it can not find the cable or cable with phone
    I the XP wizard keep responding "new hardware found" but it can not resolve the connection. I'm not sure if Nokia suite is suppose to do this without the xp wizard or not.
    Can this be made to work or not?
    I've never tried this setup out before on any phone.. I'm new to this. I just wanted to be able to back up the data on the phone.
    What is the solution please

    Removing the cable driver did not work.. Your suggestion was not quite as specific as I was hoping for
    I left the 6.83.14.1 Suite installed.
    Is the xp wizard for installing drivers part of the process?
    I have yellow ? marks in the system hardware listing with these cable drivers
    I've found two other cable drivers... This term cable drives why don't the just say USB driver?
    The Cable Drivers/USB I found are came from http://www.nokia.com.au/nokia/0,,81050,00.html
    Will they work with any Suite or do I have to find a particular suite to match them up with?
    I've tried them both. Nokia_Conn_Cable_Driver_150_2_eng.exe and Nokia_Conn_Cable_Driver_145_5_eng.exe.
    with one of them I did get something to flash on my phone at one point... It came and went and now I'm not even sure which one of the drivers it was. Xp is a pain in the butt forcing one to have to reboot after an installation.
    This being the case I'm going to go through the process of installing these two cable drivers once again to see if I can get a handle on where and when I get something.
    Still I'm looking for that definitive step one step two etc etc. using which driver which suite downloaded from where etc etc. on how to get it all working..
    Is this available?

  • Solved: Need suggestions/solution on passing multiple records among forms

    I have a form that is used for sign in. e.g LOGIN, after sign in, users are moved to a called form e.g. MYTOOLS
    Before they are moved to MYTOOLS, I want to search the PRIVILEGES table and search for privileges the user has.
    For example user # 1 signs in. In PRIVILEGES table, the user has 3 records or privileges e.g ADD_TOOL, ISSUE, RETURN
    Whats the best way to get these records and pass them to other forms. ParameterList or Variables or RecordGroup or other better way?
    Need your suggestions.
    Working on Forms 6 and 10g database

    This is what in the Login button.
    DECLARE
         button_stop NUMBER;
         staffno VARCHAR2(4);
         pword VARCHAR2(20);
         rg_name VARCHAR2(40) := 'This_User_Roles';
         rg_id RecordGroup;
         errcode NUMBER;
    BEGIN
         IF(:LOGIN.USERID IS NULL OR :LOGIN.PWORD IS NULL) THEN
              SET_ALERT_PROPERTY('STOP',ALERT_MESSAGE_TEXT, 'Please provide all details');
              button_stop := SHOW_ALERT('STOP');
         ELSE
              SELECT STAFF_NO INTO staffno FROM UM_USERS WHERE STAFF_NO = :LOGIN.USERID;
              SELECT STAFF_PASSWORD INTO pword FROM UM_USERS WHERE STAFF_NO = :LOGIN.USERID;
              IF :LOGIN.PWORD != pword THEN
                   SET_ALERT_PROPERTY('STOP',ALERT_MESSAGE_TEXT, 'You have entered an invalid password');
                   button_stop := SHOW_ALERT('STOP');
                   RAISE Form_Trigger_Failure;
              END IF;
              -- Creating Recorg Group for Users Roles
              rg_id := Find_Group( rg_name );
              IF Id_Null(rg_id) THEN
                   rg_id := Create_Group_From_Query( rg_name,
                   'SELECT ROLE FROM UM_ROLES WHERE ROLE_ID IN (SELECT ROLE_ID FROM UM_PRIVILEGES WHERE STAFF_NO=3)');
              END IF;
              errcode := Populate_Group( rg_id );
              :GLOBAL.STAFFNO := :LOGIN.USERID;
              -- Calling Next form
              CALL_FORM('MYTOOLS', HIDE, NO_REPLACE, NO_QUERY_ONLY, SHARE_LIBRARY_DATA);
         END IF;
         EXCEPTION
              WHEN NO_DATA_FOUND THEN
              SET_ALERT_PROPERTY('STOP',ALERT_MESSAGE_TEXT, 'You have entered an invalid username or password');
              button_stop := SHOW_ALERT('STOP');          
              WHEN OTHERS THEN
              SET_ALERT_PROPERTY('STOP',ALERT_MESSAGE_TEXT, SQLERRM);
              button_stop := SHOW_ALERT('STOP');
    END;

  • Need HP solution center software for hp psc 2110 running windows 7 32 bit

    Hi,
    The HP Solution Center Software has disappeared since I upgrade my HP laptop OS from Vista to Windows 7 32 bit.  I use the HP Solution Center Software for years to create .pdf documents from the scanned documents of my HP PSC 2110 All-in-One printer.
    Can you provide the link to download the HP Solution Center Software for Win 7? I searched the HP support website using the product name HP PSC 2110, it pointed me to the driver section; I followed the instructions however there is no link to download the the software.
    The printer is connected via USB and works well.  It is just annoying I cannot use the HP Solution Center Software (previously HP Director) to copy scanned documents to my computer.
    Thanks.
    This question was solved.
    View Solution.

    You are welcome.
    You may download it from the following link:
    http://sourceforge.net/projects/naps2/files/3.0b1/​naps2-3.0b1-setup.exe/download
    That means that as an older model its functionality is limited but there are some workarouds available. it surely worth trying.
    For a Wirelss printer you will need a different printer indded, there are many factors to consider and recommend you any specific printer, do you have any specific needs? for example would you use a fax or not, I assume it should be a color printer with a scanner... do you use to print photos or use it more often for a daily printing and scanning capabilities, those factors may highly affect any possible recommendation so further clarification will be helpful.
    Regardless, any current HP device with a scanner fully support scanning PDF scanning within the HP Software.
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • I need a solution of this complicated problem to finalize my final project

    Introduction
    This project revolves around an important text processing task, text compression. In particular, you will be required to encode a sequence of words read from a source file into binary strings (using only the characters 0 and 1). It is important to note that text compression makes it possible to minimize the time needed to transmit text over a low-bandwidth channel, such as infrared connection. Moreover, text compression is helpful in storing large documents more efficiently. The coding scheme explored in this project is the Huffman Coding Scheme. While standard encoding schemes, such as Unicode and ASCII, use fixed-length binary strings to encode characters, Huffman coding assigns variable-length codes to characters. The length of a Huffman code depends on the relative frequency of its associated character. Specifically, Huffman coding capitalizes on the fact that some characters are used more frequently than others to use short codewords when encoding high-frequency characters and long codewords to encode low-frequency characters. Huffman coding saves space over state of the art fixed-length encoding and is therefore at the heart of file compression techniques in common use today. Figure 1 shows the relative frequencies of the letters of the alphabet as they appear in a representative sample of English documents.
    Letter     Frequency     Letter     Frequency
    A     77     N     67
    B     17     O     67
    C     32     P     20
    D     42     Q     5
    E     120     R     59
    F     24     S     67
    G     17     T     85
    H     50     U     37
    I     76     V     12
    J     4     W     22
    K     7     X     4
    L     42     Y     22
    M     24     Z     2
    Figure 1. Relative frequencies for the 26 letters of the alphabet.
    Huffman coding and decoding
    Huffman’s algorithm for producing optimal variable-length codes is based on the construction of a binary tree T that represents the code. In other words, the Huffman code for each character is derived from a full binary tree known as the Huffman coding tree, or simply the Huffman tree. Each edge in the Huffman tree represents a bit in a codeword, with each edge connecting a node with its left child representing a “0” and each edge connecting a node with its right child representing a “1”. Each external node in the tree is associated with a specific character, and the Huffman code for a character is defined by the sequence of bits in the path from the root to the leaf corresponding to that character. Given codes for the characters, it is a simple matter to use these codes to encode a text message. You will have simply to replace each letter in the string with its binary code (a lookup table can be used for this purpose).
    In this project, you are not going to use the table given in Figure 1 to determine the frequency of occurrence per character. Instead, you will derive the frequency corresponding to a character by counting the number of times that character appears in an input file. For example, if the input file contains the following line of text “a fast runner need never be afraid of the dark”, then the frequencies listed in the table given in Figure 2 should be used per character:
    Character          a     b     d     e     f     H     i     k     n     O     r     s     t     u     v
    Frequency     9     5     1     3     7     3     1     1     1     4     1     5     1     2     1     1
    Figure 2. The frequency of each character of the String X.
    Based on the frequencies shown in Figure 2, the Huffman tree depicted in Figure 3 can be constructed:
    Figure 3. Huffman tree for String X.
    The code for a character is thus obtained by tracing the path from the root of the Huffman tree to the external node where that character is stored, and associating a left edge with 0 and a right edge with 1. In the context of the considered example for instance, the code for “a” is 010, and the code for “f” is 1100.
    Once the Huffman tree is constructed and the message obtained from the input file has been encoded, decoding the message is done by looking at the bits in the coded string from left to right until all characters are decoded. This can be done by using the Huffman tree in a reverse process from that used to generate the codes. Decoding the bit string begins at the root of the tree. Branches are taken depending on the bit value – left for ‘0’ and right for ‘1’ – until reaching a leaf node. This leaf contains the first character in the message. The next bit in the code is then processed from the root again to start the next character. The process is repeated until all the remaining characters are decoded. For example, to decode the string “0101100” in the case of the example under study, you begin at the root of the tree and take a left branch for the first bit which is ‘0’. Since the next bit is a ‘1’, you take a right branch. Then, you take a left branch (for the third bit ‘1’), arriving at the leaf node corresponding to the letter a. Thus, the first letter of the coded word is a. You then begin again at the root of the tree to process the fourth bit, which is a ‘1’. Taking 2 right branches then two left branches, you reach the leaf node corresponding to the letter f.
    Problem statement
    You are required to implement the Huffman coding/decoding algorithms. After you complete the implementation of the coding/decoding processes, you are asked to use the resulting Java code to:
    1.     Read through a source file called “in1.dat” that contains the following paragraph:
    “the Huffman coding algorithm views each of the d distinct characters of the string X as being in separate Huffman trees initially with each tree composed of a single leaf node these separate trees will eventually be joined into a single Huffman tree in each round the algorithm takes the two binary trees with the smallest frequencies and merges them into a single binary tree it repeats this process until only one tree is left.”
    2.     Determine the actual frequencies for all the letters in the file.
    3.     Use the frequencies from the previous step to create a Huffman coding tree before you assign codes to individual letters. Use the LinkedBinaryTree class that we developed in class to realize your Huffman coding trees.
    4.     Produce an encoded version of the input file “in1.dat” and then store it in an output file called “out.dat”.
    5.     Finally, the decoding algorithm will come into play to decipher the codes contained in “out.dat”. The resulting decoded message should be written to an output file called “in2.dat”. If nothing goes wrong, the text stored in “in1.dat” and the one in “in2.dat” must match up correctly.

    jschell wrote:
    I need a solution of this complicated problem to finalize my final project The solution:
    1. Write code
    2. Test code3. If test fails, debug code, then go to step 2.

  • What technology that can be used for the creation of Need Definition?

    Being on SAP SRM 4.0, we currently have a requirement for creation of Need Definition( Basically a build up for the contract ). Need being collected from the Backend systems need to be validated and approved by Buyers & Lead Buyers in the SRM system.
    Technically, this task is broken down to below tasks.
    1) Creation of need definition screen - Basically a template where a need can be created with Items, Sub Items and other related information
    2) Selection Screen for Buyers and Lead Buyers - This enables the the Buyers to select the Need Definition assigned to them based on the status. 
    3) Report - List of all the Need Definition( Item and Sub Item)satisfying the selection of step 2. with the possibility to navigate to the Need Definition screen ( Step 1) upon selection.
    Now the question is,
    what technology is recommended for the above Tasks? We thought it would be BSP but do you guys have any suggestions...
    Do we have any issues in displaying the report in BSP? please let me know
    Remember we are version 4.0 of SRM.
    Thanks in Advance..
    Mohan.

    You can use conditional styles to address specific browser issues (this is more than likely the markup you noticed).
    Here's a good guide:
    http://www.quirksmode.org/css/condcom.html

  • I NEED A SOLUTION ON HOW TO UNLOCK THE AFTER EFFECT "Action Trailer.aep"

    I NEED A SOLUTION ON HOW TO UNLOCK THE AFTER EFFECT File, "Action Trailer.aep"

    We seriously don't have enough information to help you.
    What do you mean by "unlock"?
    My wild, shot-in-the-dark guess is that you've got some sort of template that, when you try to save, says that it's locked. If that's the case, try using "Save As" instead. If that's not your problem, refer to Todd's link and provide more info.

  • A definitive solution to stop Mail constantly asking for my password??

    I have Snow Leopard running on Intel iMac.
    Like so many others my Mac Mail keeps on asking for my password even though its saved on my keychain.
    I have read pretty every solution I can find find from Keychain repair to deleting and creating a new account.... No joy... problem still occurs a few times a day on both my Hotmail pop and Gmail pop.....
    I wanted to know if there is a definitive solution to this problem... is there a software release for this or an ABSOLUTE .... PROVEN TO FIX ALL OCCURRENCES SOLUTION.... that works for everyone.??
    If not then I suppose I must use a different email client
    Thanks for your replies

    Dodgy servers being likely... is that going to happen with both Gmail and Hotmail?
    Doesn't happen with my GMail account. I'm connecting to GMail via IMAP, what about you? As to Hotmail, that one's notorious for having trouble with Mail.
    As to the fact that you don't see the problem with Entourage, it could be that there's something wrong with your Mail setup, but I don't know what might be different about how Entourage communicates with the server. I'm sure Ernie might have some insights.
    In the "Preferences" "Accounts" "Account Information" I put in my password and then save on exiting... as far as I am concerned it is saved within the software. But whenever this issue occurs, the saved password has vanished.
    It's actually stored in the Keychain, which could be one source of problems. If your keychain is damaged, it would cause problems for Mail but probably not Entourage. Try opening Keychain Access and choose Keychain Access -> Keychain First Aid. Also, try deleting the account passwords in the keychain completely, then enter the password when Mail prompts for it and check the box to save it in the keychain.
    Why would a "troublesome server from a location with bad internet service" delete the password I have saved on an Apple software product...
    If you get a password prompt, and you try to enter the password but it gets rejected due to some difficulty communicating with the server, Mail might decide to remove the "incorrect" password. That's just theory, as I've never actually done that. On the rare occasion that I get a password prompt, I just hit cancel, wait a little while and take the account online again. Typically, unless the server is still having difficulty, mail is retrieved without the need to re-enter the password.

  • Need a solution on which page template to opt for my requirement..

    Hi Forum,
    I need a solution how to proceed with this requirement.
    I need a Two pages on my application
    First Page : It need to be displaying approx 7 to 10 cloumns of data from 5 tables based on QUERY1, out which one is the hyper link to the second page ( say JOBNUM as one of the column ). These data are located in a flat database.There are no PK in the tables. Once you click on the JOBNUM it needs to navigate to the second page displaying data based on a QUERY2 which runs with the JOBNUM we clicked and the clumns on the second page needs to be alligned as per my design. Example is shown below.
    DATA1 DATA2 DATA3
    DATA4
    DATA5 DATA6
    I started this by designing a FORM ON REPORT.
    The first page which is report is fine displaying data and I changes one of the columns JOBNUM on the first page to Hyperlink onto 2 page ( FORM ). But now I need some help from the forum how to generate that FORM page based on
    1) on a SQL query which runs on 5 tables
    2) and the JOBNUM selected as this JOBNUM is in those 5 tables
    and How to change the allignment of the cloumns on the form
    Thanks for your time and help in advance.
    Krishna.

    Krishna...
    When you ask about creating page two as a FORM page, are you wanting the ability to update the record(s) that are queried from those five tables? If so, you'll more than likely need to build the page by hand without using one of the wizard options that do all the DML for you. If you are updating information of just one of those tables, you should include the ROWID of the table you wish to update in your query since you said there is no PK on any of those tables. You can easy store the ROWID in a hidden item on the page. If you wish to update more than one table, you should include all of the ROWIDs of each table with different aliases. Then your page processing needs to be savvy to which columns were updated in order to perform update statements against each table individually using the appropriate ROWID.
    If you are not updating and simply want to display the information in a report region and the query on page 2 will be retrieving more than one record based on your JOBNUM parameter, you could look into using a custom region template that you build using a combination of standard HTML tags and special Application Express placeholder tags. An example of this is in the Aria People Search packaged application found at this link, http://www.oracle.com/technology/products/database/application_express/packaged_apps/packaged_apps.html, and look at (hopefully) page 2. There is a report region on one of the main pages that displays a lot of information about a person and uses a custom region template that positions the resulting columns of a query into specific locations in of a table. Not necessarily positioned exactly like how you want it, but the concept is the exact same -- you can use HTML [table] [table] syntax to put the results of your query into specific locations.
    Hopefully I have not completely misunderstood your request.
    Shane.

  • Need simple solution to finding unique printer address

    Even after printing out the page with code, I still don't know what the address.
    I need  to see a sample of what it should look like.  Thanks.
    This question was solved.
    View Solution.

    Hi,
    The printed sheet does not contain the email address as you need to set it.
    Follow the directions on that sheet and access the hpeprint site, then register your account and by providing the printed code while adding the printer you will be able to choose your personalized ePrint email address.
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Sharing is not pirating -- I need a solution

    I used to be able to go to my vacation home and watch my home videos on my Apple TV or go to my friends house with my laptop and stream my photos to his Apple TV, but now I can't. My family of 6 can only share with 5 computers and we used to be able to stream from everybody's computer to our home theater. All the things we loved about Apple TV are gone. I am needing a solution.

    It's not quite what you think...
    The "new" Apple TV has no hard drive. The hard drive probably added close to $100 to the cost of the device. By removing the drive, they can drop the price to $99 and this will probably get more business from impulse-buyers who are willing to take a chance on a $99 purchase.
    What the new Apple TV has instead of a hard drive, is 8GB of solid-state storage. But it really uses it as a filesystem "cache" for streaming. A single TV show episode might be 2GB. A movie is longer and thus bigger. If the 8GB storage was used the same way the original Apple TV used it's hard drive, it would be full after just a couple of movies or a few TV show episodes. So it doesn't make sense to use it that way. Hence as a "standalone" device, it can really only "stream" and that means you are "renting" from the Internet or streaming from another local computer running iTunes. But the good news is it's cheap.
    As for the 5 computers in the house... no problem. In fact the new Apple TV is easier than the old Apple TV because it uses iTunes new "Home Sharing" feature.
    To use it, make sure each computer in your house has been upgraded to run the latest version of iTunes. On each computer, go into iTunes -> Advanced -> Turn on Home Sharing. You will need to provide your iTunes ID (this is the email address you use to buy content from iTunes.)
    You then turn on Home Sharing on the Apple TV. If you own any iPhones or an iPod Touch, download the latest version of Apple's "Remote" app (free) and turn on "Home Sharing" there as well.
    The simplicity of "Home Sharing" is that the Apple TV will "just see" every computer in your house as long as it is running iTunes at the time. No need to set a sharing password on each computer and pair the Apple TV to each iTunes individually.
    You can now browse from computer to computer to find movies, TV shows, music, etc.
    If you want to use take a computer to your vacation cottage, you'd still need the original Apple TV and/or a laptop. I use a small portable hard drive with my laptop so I can take a copy of my movies with me when I travel.
    One last point... old iTunes "sharing" would allow +streaming only+! Even if all computers used the same iTunes account it didn't matter. This was a huge annoyance as content purchased on different computers would not be available on all computers and re-syncing your collection was a pain. "Home Sharing" actually recognizes that the content was all purchased via a common iTunes account so in addition to streaming, it actually allows COPYING. If the content was purchased via iTunes, then syncing is automatic. If the content was purchased elsewhere, you can tell "Home Sharing" in iTunes to display only "Items not in my library". From that screen you can do a select all and drag to your own library.

  • Hello i have a problem with onfocus function on ipad. i am trying to bring my cursor on a text box on a button click. It works fine with safari web browser but not on ipad. Need a solution.

    Hello i have a problem with onfocus function on ipad. I am trying to bring my cursor on a text box on a button click. It works fine with safari web browser but not on ipad. Need a solution.

    I don't think that a software update from Apple will solve the issues that you are having. You have a rogue installation. After you posted I have just done the following:
    Disk Utility can verify  my partitioned Volume (including my boot disk) AND REPAIR the non-boot disks on the same Volume without a glitch. It repairs the non-boot disks containing data smoothly.
    I have used Mail to send some mails from some Yahoo and Hotmail accounts to my Thunderbird client containing GMail accounts - absolutely normal.
    I have iLife '09 but my iMovie '09 and iPhoto '09 open in a jiffy and I see no issues here. I have 6GB RAM (Maximum) on an early 2008 Macbook Pro with a 750GB hard drive partitioned with 120GB reserved for the Boot Drive.
    I am sorry that I cannot help further but I am sure there must be a way to reinstall the software without having to revert to restoring your ML backup. I have two clones and if you have such I would attempt to do that through that rather than through Time Machine - that is of course if you have a cloned drive.
    Good luck!

  • Apple Logo is all I get on my Apple TV I need a solution

    Apple Logo is all I get on my Apple TV I need a solution
    The Apple TV logo is all i get nothing else why? or how do i solve this.

    just the logo or also an usb and itunes logo ?
    and have you tried to pull the plug and wait 30sec?

  • My ITunes got corrupted and I kept getting a message when updating iTunes64msi missing so I uninstalled all files and I thought I removed all registry values but  when reinstalling I get an older version is installed and cannot be removed. I need a soluti

    My ITunes got corrupted and I kept getting a message when updating iTunes64msi missing so I uninstalled all files and I thought I removed all registry values but  when reinstalling I get an older version is installed and cannot be removed. I need a solution.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any Bonjour entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

Maybe you are looking for