I cant load a CD on to my Ipod classic via itunes?

I used to be able to download a CD on to itunes and it automatically updated my ipod classic when connected. It doesnt now!

Click the heading of the Album column.
See Grouping tracks into albums for more detail and tips.
tt2

Similar Messages

  • I am trying to sync my ipod classic with itunes 11.0.4 but cant. Cant find source on itunes either.

    I am trying to sync my ipod classic with itunes 11.0.4 but cant. Cant find source on itunes either. Can anyone tell me what procedure to follow. I also cant find source on itunes. Ipod do show the connection but cant see anywhere on Itunes
    can any one help with any information

    I'm having sync issues too since I've updated to 11.0.4.  My ipod 160 will no longer sync properly or will hang when attempting to sync yet my 4th gen touch doesn't have any problems.  I am thinking about uninstalling it and rolling back to an older version of itunes.

  • I cant Update my Ipod classic with Itunes a message says the windows installer service could not be accessed this can occur when running windows in safe mode or the windows installer is not correctly installed.

    I cant update my Ipod classic with Itunes it is related to Windows installer is not done correctly.

    Sounds like you need to repair the Windows Installer Service.
    See http://blogs.msdn.com/b/astebner/archive/2006/07/20/673408.aspx
    tt2

  • I cannot sync my contacts from iMac (Address Book) to iPod Classic since iTunes 11 has loaded.  Any advice please ?

    I cannot sync my Address Book contacts from iMac to my existing iPod Classic since iTunes 11 has loaded.  Any bright ideas please ?

    I'm having the same issue. I have an iPod Classic 120gb with 2.0.1 and iTunes 11.0.1 on an iMac running Mountain Lion 10.8.2.

  • How to load videos in the ipod touch via itunes?

    Hello there! My question is the following How to load videos in the ipod touch vis itunes? I try to do it but it shows an error. I dont know what is the type of video that ipod t supports.

    You need to convert videos to iPod Touch format.
    H.264 video up to 720p, 30 frames per second, Main Profile level 3.1 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats
    MPEG-4 video up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats
    Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format
    Support for 1024 by 768 pixels with Apple VGA Adapter; 576p and 480p with Apple Component AV Cable; 576i and 480i with Apple Composite AV Cable (cables sold separately)
    After converting the videos use iTunes to Add to Library.
    Once in iTunes, connect and select iPod Touch in iTunes, go to Movies tab and select Sync Movies with your videos selected and click bottom right Sync button.

  • Cant load schema-based xml-file to default table via http/ftp

    Hola,
    we are running ORACLE 10.2.0.3.0 with installed XML-DB.
    HTTP- and ftp-listeners where configured successfully, we are able to register a designed XSD-file within XML-DB. Autogen types and tables where set "true" and default table for root object within xsd and several type objects where also created successful.
    Oracle DB is running on a Linux environment, it is possible to establish a WEBDAV-connection to this machine via my Windows client.
    As far as I understood the Oracle examples, there should be some kind of automatism. Putting a valid (and registered via xsi:noNamespaceSchemaLocation=<pointing to xsd-file>) XML file into my WEBDAV folder should create an XML object in the XML repository AND create a dataset in the default table.
    Last thing doesn´t work.
    Any idea?!

    Can you try this simple example
    SQL> set echo on
    SQL> spool testase.log
    SQL> --
    SQL> connect / as sysdba
    Connected.
    SQL> --
    SQL> set define on
    SQL> set timing on
    SQL> --
    SQL> define USERNAME = OTN
    SQL> --
    SQL> def PASSWORD = &USERNAME
    SQL> --
    SQL> def USER_TABLESPACE = USERS
    SQL> --
    SQL> def TEMP_TABLESPACE = TEMP
    SQL> --
    SQL> drop user &USERNAME cascade
      2  /
    old   1: drop user &USERNAME cascade
    new   1: drop user OTN cascade
    User dropped.
    Elapsed: 00:00:00.18
    SQL> grant create any directory, drop any directory, connect, resource, alter session, create view to &USERNAME identified by &PASSWORD
      2  /
    old   1: grant create any directory, drop any directory, connect, resource, alter session, create view to &USERNAME identified by &PASSWORD
    new   1: grant create any directory, drop any directory, connect, resource, alter session, create view to OTN identified by OTN
    Grant succeeded.
    Elapsed: 00:00:00.09
    SQL> alter user &USERNAME default tablespace &USER_TABLESPACE temporary tablespace &TEMP_TABLESPACE
      2  /
    old   1: alter user &USERNAME default tablespace &USER_TABLESPACE temporary tablespace &TEMP_TABLESPACE
    new   1: alter user OTN default tablespace USERS temporary tablespace TEMP
    User altered.
    Elapsed: 00:00:00.00
    SQL> connect &USERNAME/&PASSWORD
    Connected.
    SQL> --
    SQL> -- create or replace directory XMLDIR as '&XMLDIR'
    SQL> -- /
    SQL> var SCHEMAURL    varchar2(256)
    SQL> VAR XMLSCHEMA    CLOB;
    SQL> VAR INSTANCE     CLOB;
    SQL> VAR DOCPATH      VARCHAR2(700)
    SQL> --
    SQL> set define off
    SQL> --
    SQL> alter session set events='31098 trace name context forever'
      2  /
    Session altered.
    Elapsed: 00:00:00.01
    SQL> begin
      2    :SCHEMAURL:= 'http://oradb4.min.local:8080/public/CSBF/xsd/CSBF_Vergabemeldung_Formular.xsd';
      3    :XMLSCHEMA :=
      4  '<?xml version="1.0" encoding="UTF-8"?>
      5  <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb" version="1.0" xdb:storeVarrayAsTable="true">
      6     <xs:simpleType name="string_5">
      7             <xs:restriction base="xs:string"><xs:maxLength value="5"/></xs:restriction>
      8     </xs:simpleType>
      9     <xs:simpleType name="string_6">
    10             <xs:restriction base="xs:string"><xs:maxLength value="6"/></xs:restriction>
    11     </xs:simpleType>
    12     <xs:simpleType name="string_8">
    13             <xs:restriction base="xs:string"><xs:maxLength value="8"/></xs:restriction>
    14     </xs:simpleType>
    15     <xs:simpleType name="string_20">
    16             <xs:restriction base="xs:string"><xs:maxLength value="20"/></xs:restriction>
    17     </xs:simpleType>
    18     <xs:simpleType name="string_30">
    19             <xs:restriction base="xs:string"><xs:maxLength value="30"/></xs:restriction>
    20     </xs:simpleType>
    21     <xs:simpleType name="string_60">
    22             <xs:restriction base="xs:string"><xs:maxLength value="60"/></xs:restriction>
    23     </xs:simpleType>
    24     <xs:element name="CSBF_Vergabemeldung" xdb:defaultTable="CSBF_VERGABE_INFO_XML">
    25             <xs:complexType>
    26                     <xs:sequence>
    27                             <xs:element name="CSBF_Vergabemeldung_Info">
    28                                     <xs:complexType>
    29                                             <xs:sequence>
    30                                                     <xs:element name="Identnummer" type="string_30"/>
    31                                                     <xs:element name="Version_CSBF_Vergabevermerk_Formular" type="string_30"/>
    32                                                     <xs:element name="Fertigstellung_Vergabevermerk" type="xs:date"/>
    33                                             </xs:sequence>
    34                                     </xs:complexType>
    35                             </xs:element>
    36                             <xs:element name="Strassenbaudienststelle">
    37                                     <xs:complexType>
    38                                             <xs:sequence>
    39                                                     <xs:element name="Kennung" type="string_8"/>
    40                                                     <xs:element name="Strassenbau_Organisation_Bezeichnung" type="string_60"/>
    41                                                     <xs:element name="Adresszeile_2" type="string_60" minOccurs="0"/>
    42                                                     <xs:element name="Adresszeile_3" type="string_60" minOccurs="0"/>
    43                                                     <xs:element name="Adresszeile_4" type="string_60" minOccurs="0"/>
    44                                                     <xs:element name="Strasse" type="string_60"/>
    45                                                     <xs:element name="PLZ" type="string_6"/>
    46                                                     <xs:element name="Ort" type="string_60"/>
    47                                                     <xs:element name="NUTS" type="string_5"/>
    48                                                     <xs:element name="Telefon" type="string_20" minOccurs="0"/>
    49                                                     <xs:element name="Fax" type="string_20" minOccurs="0"/>
    50                                                     <xs:element name="E_Mail" type="string_30"/>
    51                                             </xs:sequence>
    52                                     </xs:complexType>
    53                             </xs:element>
    54                     </xs:sequence>
    55             </xs:complexType>
    56     </xs:element>
    57  </xs:schema>';
    58    :DOCPATH := '/public/CSBF_Vergabemeldung.xml';
    59    :INSTANCE :=
    60  '<?xml version="1.0" encoding="ISO-8859-15"?>
    61  <CSBF_Vergabemeldung xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://oradb4.min.local:8080/public/CSBF/xsd/CSBF
    _Vergabemeldung_Formular.xsd">
    62     <CSBF_Vergabemeldung_Info>
    63             <Identnummer>xxxxxxxxxxxxxxxxxxxxxxxxxxxxx</Identnummer>
    64             <Version_CSBF_Vergabevermerk_Formular>xxxxxxxxxxxxxxxx</Version_CSBF_Vergabevermerk_Formular>
    65             <Fertigstellung_Vergabevermerk>1900-01-01</Fertigstellung_Vergabevermerk>
    66     </CSBF_Vergabemeldung_Info>
    67     <Strassenbaudienststelle>
    68             <Kennung>xxxxx</Kennung>
    69             <Strassenbau_Organisation_Bezeichnung>xxxxxxx</Strassenbau_Organisation_Bezeichnung>
    70             <Adresszeile_2>xxxxxxxxxxxxx</Adresszeile_2>
    71             <Adresszeile_3>xxxxxxxxxxxxxx</Adresszeile_3>
    72             <Adresszeile_4>xxxxxxxxxxxxxxxxx</Adresszeile_4>
    73             <Strasse>xxxxxxxxxxxxxx</Strasse>
    74             <PLZ>xxxxx</PLZ>
    75             <Ort>xxxxxxxxxxxxxx</Ort>
    76             <NUTS>xxxxx</NUTS>
    77             <Telefon>xxxxxxxxxxx</Telefon>
    78             <Fax>xxxxxxxxxxx</Fax>
    79             <E_Mail>[email protected]</E_Mail>
    80     </Strassenbaudienststelle>
    81  </CSBF_Vergabemeldung>';
    82  end;
    83  /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.01
    SQL> begin
      2    dbms_xmlschema.registerSchema
      3    (
      4      schemaurl       => :SCHEMAURL,
      5      schemadoc       => :XMLSCHEMA,
      6      local           => TRUE,
      7      genTypes        => TRUE,
      8      genBean         => FALSE,
      9      genTables       => TRUE
    10    );
    11  end;
    12  /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:03.80
    SQL> desc CSBF_VERGABE_INFO_XML
    Name                                                                                      Null?    Type
    TABLE of SYS.XMLTYPE(XMLSchema "http://oradb4.min.local:8080/public/CSBF/xsd/CSBF_Vergabemeldung_Formular.xsd" Element "CSBF_Vergabemeldung") STORAGE Object-rel
    ational TYPE "CSBF_Vergabemeldung3270_T"
    SQL> --
    SQL> declare
      2    V_RESULT BOOLEAN;
      3  begin
      4     if dbms_xdb.existsResource(:DOCPATH) then
      5       dbms_xdb.deleteResource(:DOCPATH);
      6    end if;
      7    V_RESULT := DBMS_XDB.CREATERESOURCE(:DOCPATH,:INSTANCE);
      8    COMMIT;
      9  end;
    10  /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.79
    SQL> select count(*)
      2    from CSBF_VERGABE_INFO_XML
      3  /
             1
    Elapsed: 00:00:00.15
    SQL> set long 10000 pages 0 lines 160
    SQL> --
    SQL> select object_value
      2    from CSBF_VERGABE_INFO_XML
      3  /
    <?xml version="1.0" encoding="WINDOWS-1252"?>
    <CSBF_Vergabemeldung xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://oradb4.min.local:8080/public/CSBF/xsd/CSBF_Verg
    abemeldung_Formular.xsd">
      <CSBF_Vergabemeldung_Info>
        <Identnummer>xxxxxxxxxxxxxxxxxxxxxxxxxxxxx</Identnummer>
        <Version_CSBF_Vergabevermerk_Formular>xxxxxxxxxxxxxxxx</Version_CSBF_Vergabevermerk_Formular>
        <Fertigstellung_Vergabevermerk>1900-01-01</Fertigstellung_Vergabevermerk>
      </CSBF_Vergabemeldung_Info>
      <Strassenbaudienststelle>
        <Kennung>xxxxx</Kennung>
        <Strassenbau_Organisation_Bezeichnung>xxxxxxx</Strassenbau_Organisation_Bezeichnung>
        <Adresszeile_2>xxxxxxxxxxxxx</Adresszeile_2>
        <Adresszeile_3>xxxxxxxxxxxxxx</Adresszeile_3>
        <Adresszeile_4>xxxxxxxxxxxxxxxxx</Adresszeile_4>
        <Strasse>xxxxxxxxxxxxxx</Strasse>
        <PLZ>xxxxx</PLZ>
        <Ort>xxxxxxxxxxxxxx</Ort>
        <NUTS>xxxxx</NUTS>
        <Telefon>xxxxxxxxxxx</Telefon>
        <Fax>xxxxxxxxxxx</Fax>
        <E_Mail>[email protected]</E_Mail>
      </Strassenbaudienststelle>
    </CSBF_Vergabemeldung>
    Elapsed: 00:00:01.99
    SQL> select xdburitype(:DOCPATH).getXML()
      2    from DUAL
      3  /
    <?xml version="1.0" encoding="WINDOWS-1252"?>
    <CSBF_Vergabemeldung xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://oradb4.min.local:8080/public/CSBF/xsd/CSBF_Verg
    abemeldung_Formular.xsd">
      <CSBF_Vergabemeldung_Info>
        <Identnummer>xxxxxxxxxxxxxxxxxxxxxxxxxxxxx</Identnummer>
        <Version_CSBF_Vergabevermerk_Formular>xxxxxxxxxxxxxxxx</Version_CSBF_Vergabevermerk_Formular>
        <Fertigstellung_Vergabevermerk>1900-01-01</Fertigstellung_Vergabevermerk>
      </CSBF_Vergabemeldung_Info>
      <Strassenbaudienststelle>
        <Kennung>xxxxx</Kennung>
        <Strassenbau_Organisation_Bezeichnung>xxxxxxx</Strassenbau_Organisation_Bezeichnung>
        <Adresszeile_2>xxxxxxxxxxxxx</Adresszeile_2>
        <Adresszeile_3>xxxxxxxxxxxxxx</Adresszeile_3>
        <Adresszeile_4>xxxxxxxxxxxxxxxxx</Adresszeile_4>
        <Strasse>xxxxxxxxxxxxxx</Strasse>
        <PLZ>xxxxx</PLZ>
        <Ort>xxxxxxxxxxxxxx</Ort>
        <NUTS>xxxxx</NUTS>
        <Telefon>xxxxxxxxxxx</Telefon>
        <Fax>xxxxxxxxxxx</Fax>
        <E_Mail>[email protected]</E_Mail>
      </Strassenbaudienststelle>
    </CSBF_Vergabemeldung>
    Elapsed: 00:00:00.11
    SQL>

  • My computer crashed that had all my songs on it - why cant I add the songs from my ipod to my itunes library?

    I would like to add all the music that is on my ipod to my itunes library - for some reason the backup itunes library I have does not have all the music on it and I do not know how to get the songs from my ipod to the itunes library - I do not want to sync the ipod with the current itunes as this would wipe out all the music I have on my ipod.  please help me to get this music back on my computer or in the itunes library.

    One option is to use iTunesFS and extract songs from your iPod.

  • Help please i cant figure out how to use 2 ipods on one itunes library

    ive just got a ipod mini and i already have a 20 gig ipod and i just want to put music on the mini from my itunes library already on my computer, so i looked at the info on this site and it makes no sense to me now my computer wont work for either ipod when i plug it in it says theres no ipod connected what did i do. also when i plug them in it says that there is a user already usin itunes and to have them log out but how do you log out ot itunes. any help would be greatly appreciated thanks in advance.

    iTunes can only be run in one Windows User account at a time. So yuo can disable fast user switching (http://docs.info.apple.com/article.html?artnum=93395)
    In order for your iPod Mini to be detected you will need to first update the software if it has yet to be done (http://apple.com/ipod/download). Once this is installed follow this article to restore your iPod (http://docs.info.apple.com/article.html?artnum=60983).
    This should allow your iPod Mini to communicate with iTunes. Since the iPods arrive Mac compatible. If you plug your iPods in and neither say Do Not Disconnect simply reset the iPod holding Menu+Select.

  • Can I down load the music on my iPOD Classic to iTunes as my PC died and I no longer have many of my CDs?

    My PC recently died. I have purchased an ACER Aspire TC ATC-605-UW2U with 8 Gb Ram and an Intel I5 3.2 GHz processor. I would like to know if i can sync my ITunes to my iPod Classic (Transfer the music on  my iPod back to iTunes)?

    See tt2's tutorial here: Recover your iTunes library from your iPod or iOS device.
    Note that if you no longer own CDs you should delete any digital copies taken from them.

  • My MacBook Pro was restored recently at the Apple Store. Now I can't sync my iPod Classic to iTunes. I want to load all music and videos from my iPod back onto iTunes. It tells me that everything form my other libraries will be erased....

    Now I can't add all my files from my Ipod back to my itunes. I get a message telling me that all my files on my Ipod will be deleted and synced with another Itunes library. Since the restore, I now have a new library with about 25 new songs, but nothing from before which is still on my Ipod. Please help me. Everything I've found by Google isn't much help.....

    Your iPod is designed to sync with only one iTunes library at a time.  It will recognize the iTunes library on the PC as a new library.  If you sync the iPod with this new library, all content will be erased from the iPod and replaced with what is in the new library.  So what you will want to do is copy everything from the iPod to your new iTunes library on your PC first.
    See this excellent user tip from another forum member turingtest2 outlining the different methods and software available to help you copy content from your iPod back to your PC and into iTunes.
    Recovering your iTunes library from your iPod or iOS device
    B-rock

  • Cant update to 8.0.2 on phone or via iTunes

    I'm trying to update my 5s to 8.0.2 from 8.0.0. On the phone it won't do anything after hitting "agree" to the Terms and Conditions, so I decided to try and use iTunes. With my phone attached to the PC. though iTunes asks about downloading the 8.0.2 upgrade, it shows its trying to download a 1.3gb file instead of just the 79mb update. is the update 70mb and if so how do I get iTunes to download it correctly?

    iTunes on the computer downloads the entire file. It will download the correct file if you have connected the device and click on update. Just run with it.

  • Ipod classic 80gb, itunes not recognizing, and cant save data from mass storage

    hey guys,
    my ipod just stopped working, it shows i havent got any music on it. i think i have to restore it BUT.... I've got a lot of data on the mass storage I MUST backup, but whenever I try to copy it from its mass storage to my pc, it came up with error... i hope you guys got any solution for this, because I really need those data's. please help me asap :/
    thx in advice, admz0r

    What is the erorr message you are receiving you when try to copy data off it onto your PC's local hard drive?
    B-rock

  • Cant load printer software

    i have a epson cx 4600, in pass printer worked fine, lately i was have a few glitches with os 10.4.9, so i re installed system soft ware back to 10.3.9 ever since i cant load printer i install software from original dick it installs fine , but when i go to set up new printer through printer utility the utility goes to open then closes. I tried this several times i even re-re-installed sytem software but still nothing. i even downloaded printer utility program that was posted on this forum but nothing. i need help. my next option is to get a new printer which i really dont want to do.

    Hi Myron!
    Try this procedure.
    * Download the most current driver from Epson Stylus CX4600, Drivers & Downloads. Printer Driver v2.0cA for Macintosh OS X (v10.2.x - 10.3.x).
    * Before moving the folder & files listed below, to a Temporary Epson Trash Folder, that you should create on the Desktop, open Printer Setup Utility, and delete the CX4600.
    * Quit Printer Setup Utility
    * If present, move the files (Posted in CAPITALIZED Italics), to the newly created Temporary Epson Trash Folder
    HD > Applications >
    EPSON PRINTER UTILITY (Alias)
    HD > Users > Your Home > Library > Preferences >
    COM.EPSON.IJPRINTER.UTILITY.PLIST
    COM.APPLE.PRINT.CUSTOMPRESETS.PLIST
    COM.APPLE.PRINT.PRINTCENTER.PLIST
    COM.APPLE.PRINT.PRINTERPROXY.INTERNAL_MODEM.PLIST
    COM.APPLE.PRINT.PRINTINGPREFS.PLIST
    HD > Library > Printers >
    EPSON (Folder) Only move this folder if you have no other
    Epson products
    I also had a Epson OS X booklet.pdf, that I had saved in my Documents folder. You will get a new one. After the installation, I replaced it. You may not have saved your original one. It's no big deal, there's really not much in it, In fact I don't remember the last time I opened it!
    * Quit ALL running Applications
    * Repair Permissions using Disk Utility in the Utilities folder
    * Dig out your Epson CX4600 Start Here instruction quick sheet, for reference
    * Unplug the USB cable from the Mac & then from the CX4600
    * Re-attach the USB cable to the CX4600 & then to the Mac
    * Turn on your CX4600
    * Open the epson11111 folder
    * Double-click the .dmg file to create a disk image with the product name on your desktop
    * Open the disk image
    * Follow the prompts & instructions
    * When the Vise installer opens in a window, double click it to start the install
    * When the installation is complete, turn off the printer & restart your Mac.
    * Repair Permisions again
    * Turn on the CX4600
    * Open Printer Setup Utility
    * You have no printers available will appear. Click Add
    * Select Epson USB in the contextual menu
    * Click on CX4600 to highlight
    * Add Page Setup: select All, from the contextual menu
    * Click Add
    * Quit Printer Setup Utility
    The images that are left on the Desktop, can be trashed, unless you prefer to keep the installer.
    Good Luck!
    ali b

  • Snow leopard 10.6.8 wifi connected, cant load webpages

    hi!
    just yesterday my computer showed this problem with the internet. as the title says, it is connected to the wifi network (as it has always been) but i face the following problems:
    i cant load new webpaged in google chrome and firefox (which are the ones that I actually use)
    i can load webpsged that were already saved as bookmarks.
    i can load webpages in safari
    my icon for dropbox shows a red cross icon
    utorrent works just fine
    outlook (the software) get's my new emails
    what i tried to solve it:
    checked that my wifi networks work perfectly fine with other devices in the house
    restart computer
    changed DNS to one that was suggested in another thread in this discussions site
    resetting NVRAM/PRAM
    checked that it is updated
    so, i read that some people had similar problems with the new 10.8.2 for mountain lion, or sth like that... but in my case i have snow leopard so i don't think thst's the problem

    Hi, this has worked for a few...
    Though all of these steps may or may not be needed, I'm including them all.
    Make a New Location, Using network locations in Mac OS X ...
    http://support.apple.com/kb/HT2712
    10.5, 10.6, 10.7 & 10.8…
    System Preferences>Network, top of window>Locations>Edit Locations, little plus icon, give it a name.
    10.5.x/10.6.x/10.7.x instructions...
    System Preferences>Network, click on the little gear at the bottom next to the + & - icons, (unlock lock first if locked), choose Set Service Order.
    The interface that connects to the Internet should be dragged to the top of the list.
    If using Wifi/Airport...
    Instead of joining your Network from the list, click the WiFi icon at the top, and click join other network. Fill in everything as needed.
    For 10.5/10.6/10.7/10.8, System Preferences>Network, unlock the lock if need be, highlight the Interface you use to connect to Internet, click on the advanced button, click on the DNS tab, click on the little plus icon, then add these numbers...
    208.67.222.222
    208.67.220.220
    (There may be better or faster DNS numbers in your area, but these should be a good test).
    Click OK.

  • Facebook cant load news feed and cant search at the web browser

    Facebook in my z10 cant access my messages,my profile and cant load news feed. When i tried to use my Facebook using my web browser it seems it's not loading. I tried to reboot and reset my wifi but still the same. Pls some one help me version 10.2

    I am having the same problem...

Maybe you are looking for

  • Library Lost In Home Folder !

    Hi All, Just saw that my "Library" folder is gone from my Home folder. I still have the "Library" folder in my System folder. How can I restore it to my Home folder. I do have "Time Machine and Super Duper backups. MacMini i7 &, Running Mountain Lion

  • Photoshop won't let me deselect the hand tool

    I was sent a jpg of a web banner ad to change. It was emailed to my PC where I have Photoshop CS2 and I tried to do the changes there, but found I don't have the best copies of our logo on the PC, so I saved what I had done so far and I transferred i

  • The lower row in the dropdown menu

    So, all of a sudden, the lower row in the drop down menu is just inaccessible. No matter how much I try to click on it, nothing happens. Also, if I rotate the device the whole drop down menu is not accessible, it's been really annoying and I don't kn

  • Jobs are hanging in running status

    Hey , I have some overnight jobs that refresh materialized views over a dblink from a remote db. I came this morning and noticed that some of the jobs where hanging in RUNNING state with "more data from dblink" event but there was no corresponding se

  • Overdrive app

    Installed Overdrive app as wish to use local library ebook service.     App installs Ok and Adobe authorisation ok but when I get to "Add library" all I get is a message saying that "you are not connected to the internet".   I am connected and am usi