Question on STP when connecting 2960 with Alpine

Hi All,
I am trying to connect 2960 switches to the extreme Alpine switches.
As per the diagram below,STP is not running in the alpines.I am not very sure whether STP should be enabled in this scenario to avoid any loops.
All suggestions are appreciated.
Note:
Both Alpines are connected as trunk links.
Both 2960's are connected using Fasethernet ports as Trunk using port-channel
Then each Alpine to 2960's using the Gig interface.
Thanks
[Trunk]
Alpine---------------Alpine
| |
| [Trunk] |
2960---------------- 2960

Hi
The picture isn't terribly clear but your verbal description says that the two Alpines are connected to each other, and the two 2960s are connected to each other. Also that each Alpine is connected to a 2960.
I guess that the diagram should look like a square?
A square is just a loop with corners, so you definately want STP enabled - there are not many situations where it's recommended to disable it.
Make sure you have portfast turned on (or it's equivalent on the Aplines) on user ports and there should be no negative effects of turning it on.
Regards
Aaron
Please rate helpful posts...

Similar Messages

  • An error occured when connecting java with Ms Access

    Hello Everybody
    I am a new developer in java and want to connect java with Microsoft Access
    i am using JCreator LE
    My code is to insert 3 records for 3 members and then save them in DB and retrieve the information
    Here is the code
    import java.sql.*;
    public class Project3 {
        public static void main(String[] args) {
             try {
                  System.out.println("Beginning Connection");
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                String accessFileName = "Information";
                String connURL = "jdbc:odbc:;DRIVER=Microsoft Access Driver (*.mdb);DBQ="+accessFileName+".mdb;PWD=";
                Connection con = DriverManager.getConnection( connURL ,"","");
                Statement stmt = con.createStatement();
                System.out.println("Connection done successfully");
                stmt.execute("Create table Member(Name String,ID Integer)");
                stmt.execute("insert into Member values ('Joe','1234')");
                stmt.execute(" select * from Member");
                ResultSet rs=stmt.getResultSet();
                if (rs != null)
                     while (rs.next()){
                          System.out.println("Name: "+rs.getString("Name")+ "ID: " + rs.getString("ID"));
                stmt.close();
                con.close();
                catch (Exception e) {
                System.out.println("An error Occurred in Connecting with the DB " );
    }and the error is
    Beginning Connection
    Connection done successfully
    An error Occurred in Connecting with the DB
    it didn't insert information in the DB

    Well, thank u i have traced the error and fx it
    but
    how to modify the code and keep the user entering 3 values and search for the entered values??
    Here is the correct code
    import java.sql.*;
    public class Project3 {
        public static void main(String[] args) {
             try {
                  System.out.println("Beginning Connection");
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                String accessFileName = "jdbc:odbc:Project";
                String connURL = "jdbc:odbc:;DRIVER=Microsoft Access Driver (*.mdb);DBQ="+accessFileName+".mdb;PWD=";
                Connection con = DriverManager.getConnection( accessFileName);
                Statement stmt = con.createStatement();
                System.out.println("Connection done successfully");
                stmt.execute("Create table Member(Name String,ID Integer)");
                stmt.execute("insert into Member values ('Joe','1234')");
                stmt.execute(" select * from Member");
                ResultSet rs=stmt.getResultSet();
                if (rs != null)
                     while (rs.next()){
                          System.out.println("Name: "+rs.getString("Name")+ "ID: " + rs.getString("ID"));
                stmt.close();
                con.close();
                catch (Exception err) {err.printStackTrace();}
    }

  • TV flashes when connecting iPad with HDMI

    I bought the Apple 30-pin Digital AV Adapter to connect my iPad with the TV, with an HDMI cable. The problem is that when I connect everything, the image appears on the TV, but in two seconds it starts to blink, like making flashes. I changed the HDMI cable, but nothing goes better. HELP!!!

    I have been trying all day to transfer photos from my mac to my IPad.  When I open I Tunes as instructed there is no tab for photos.  There are only apps and music.  I can open Iphoto on a separate icon on my computer, but is this considered ITunes?  When I open iphoto and click on my ipad devices name it only shows photos I took on my ipad.  When I click on the iphoto library and select photos it won't allow me to drag them to my ipad device.  Totally frustrated and confused. I tried the ctrl+s and ctrl+B but nothing happens. 

  • SOAP SSL error when connecting in with java

    Hi,
    We are trying to make a simple application that makes requests to the CCM via the AXL SOAP interface to get personal address book information. When we do the request it errors out with a SSL handshake problem, I have pasted some of the exact error output below: Any help or ideas would be appreciated !!!
    at java.lang.Thread.run(Unknown Source)
    Caused by: javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_
    failure
    at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Unknown Source)
    at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.recvAlert(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(Un
    known Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(Unknown Sou
    rce)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(Unknown Sou
    rce)
    at sun.net.www.protocol.https.HttpsClient.afterConnect(Unknown Source)
    at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect
    (Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(Unknown S
    ource)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getOutputStream(Unk
    nown Source)
    Full logs attached, I have imported the CCM cert into the Java keystore and still no luck. The only way I can get this to work by testing is to have CCM in VM and web deployed on actual physical machine and that's only for a single user dev. environment.
    Rob

    By default, the ssl certificate from the ccm is untrusted - so you get a verification error. There are two ways to work around this.. one is importing the certificate to the trusted store (google it), the other is writing your code so that it automatically accepts untrusted certs.
    For the latter, you could have a method like this (which I stole from the axlsql application)
    public void init() throws InitializationException
    X509TrustManager xtm = new MyTrustManager();
    TrustManager[] mytm = { xtm };
    SSLContext ctx;
    try
    ctx = SSLContext.getInstance("SSL");
    ctx.init(null, mytm, null);
    SSLSocketFactory sf = ctx.getSocketFactory();
    HttpsURLConnection.setDefaultSSLSocketFactory(sf);
    HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier()
    public boolean verify(String hostname, SSLSession session)
    return true;
    catch (NoSuchAlgorithmException ex)
    throw new InitializationException("SSL Algorithm not found: " + ex.getMessage());
    catch (KeyManagementException ex)
    throw new InitializationException("Key management exception: " + ex.getMessage());

  • Unidentified Error when connecting DW with MySql

    Hi
    I am trying to connect to Mysql Database which is hosted by a hosting company on their server.  I have been given a static IP address and port to access this database remotely. I have add the information below to DW 8 in an attempt to gain access the info is below.  I get an unidentified error when i test the connection i don't know where to put this static IP and port.  Can someone help thanks
    DW information is as follows:
    My login is
    username buildingbids
    password ********
    I am trying to connect from dreamweaver
    Details of that are below
    Local Info
    Sitename buildingbids
    Local root folder C:\Documents and Settings\Main User\My Documents\WEB SITES\buildingbids\
    HTTP address http://www.buildingbids.ie
    Remote Info
    Access FTP
    FTPhost ftp1.reg365.net
    Host Directory web
    Login buildingbids.ie
    Password ******
    This works when i test it
    Testing Server
    Server Model PHP MySQL
    Access FTP
    FTPhost ftp1.reg365.net
    Host Directory web
    Login buildingbids.ie
    Password kevinmac
    This works when i test it
    URL Prefix http://ftp1.reg365.net/
    When i go to test the connection i get a message saying an unidentified error has occured.
    My connbuildingbids code is
    <?php
    # FileName="Connection_php_mysql.htm"
    # Type="MYSQL"
    # HTTP="true"
    $hostname_connbuildingbids = "ftp1.reg365.net";
    $database_connbuildingbids = "buildingbids";
    $username_connbuildingbids = "buildingbids";
    $password_connbuildingbids = "kevinmac";
    $connbuildingbids = mysql_pconnect($hostname_connbuildingbids, $username_connbuildingbids, $password_connbuildingbids) or trigger_error(mysql_error(),E_USER_ERROR);
    ?>
    My connection criteria is
    Connection name connbuildingbids
    MySql Server mysql1.mylogin.ie
    Username buildingbids
    Password *********
    Database buildingbids

    Yes they only allow it with a static IP address which i have and have been granted Remote access
    I have gone to a different server and now my code is like this
    My connbuildingbids code is
    <?php
    # FileName="Connection_php_mysql.htm"
    # Type="MYSQL"
    # HTTP="true"
    $hostname_connbuildingbids = "bono.hostireland.com";
    $database_connbuildingbids = "buildingbids";
    $username_connbuildingbids = "buildingbids";
    $password_connbuildingbids = "*********";
    $connbuildingbids = mysql_pconnect($hostname_connbuildingbids, $username_connbuildingbids, $password_connbuildingbids) or trigger_error(mysql_error(),E_USER_ERROR);
    ?>
    My connection criteris is
    Connection name     connbuildingbids
    MySql Server          bono.hostireland.com
    Username               buildingbids
    Password               *************
    Database               buildingbids
    I get a different error now it says
    Mysql error #:1045  access denied for Buildingbids@localhost (Password:Yes) 
    so it looks like its looking locally for the database by default and i cant stop it.  I did orriginally have MySql set up on my pc and had done some test databases but i have deleted everything now even MySql but i still get this error so i am missing something.  Does anyone know why or how can i stop it defaulting locally. Thanks

  • Fail to install driver HP1050 deskjet for windows 8 when connecting printer with computer

    I have this great HP desket 1050 printer for less than a year. My computer broke down so I bought a new one, but now with windows 8.1. So my printer was not working anymore, I fail to install my new printer. I can install the driver for HP1050 deskjet, but then there is a moment that you have to connect the PC and printer with an USB cable. This is the moment that the installation fails, nothing happens when I plug my printer into my PC. So I never finish the installation process complelty. The same thing happens when I choose add printer later and then add my printer. My printer is on and the cable is well plugged in. Anybody any suggestions as I would like to use this printer again. Thanks in advance

    Hi @Annemarie85 
    I understand you are unable to complete the installation of your Deskjet 1050.
    Please use the following document to troubleshoot the issue, and let me know the outcome of your efforts; Windows: 'Device Setup Failed to Complete' or 'Unknown Device' Message Displays on the Computer Duri....
    I look forward to hearing back from you.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Toshiba 40E200U1 - No sound when connecting laptop with HDMI

    Hi,
    I have a asus laptop (Windows 7) with an hdmi output. I have used it with several TV's without any problems(Philips and Samsung).
    We just bought a Toshiba 40E200U1 and when I connect the laptop I get a picture but no sound. I have configuredthe sound settings to output sound through HDMI.
    DVD and Cable box works fine, connected through HDMI, works fine and I have also tried different HDMI inputs onthe TV.
    The latest firmware update for the TV is installed.
    Thanks for any suggestions!

    Any suggestions??

  • WLAN crashes N96 when connecting! With Firmware Ve...

    Hi is anyone else having the same problem with the WLAN connection on the V.12 Firmware, I have hard reset phone and I have formatted the 16g drive as suggested elsewhere (after saving all my files!!) and I have updated my Belkin wireless G plus MIMO router firmware aswell! with no security, no MAC address control but still no luck! it finds the router after sitting there refreshing for way to long! lets me go to the web page then it just sits there saying connecting I cant cancel the operation and the hangup button does nothing so I have to turn off the phone and turn it back on again. Everything else is working like a dream now once I performed the reset and format!! Highly Recommended!!! Made a huge difference to the speed the only prob is the WLAN which I hope to get sorted out!! Thanks Guys

    Thanks for posting Mate! I initialy got onto the n-gage web site and started downloading the n-gage software as the format wiped it off! and it got about a third of it done and stopped! telling me about the "no gateway reply" error so that was when I upgraded the belkin router and I cleared any setup connections on the phone and started a fresh connection but have not been able to get any websites to open at all since then as it freezes the phone before I get to see any! Cheers mate!

  • CON-120304 when connecting BODI with TERADATA as target

    Hi
    We are unable to connect to Teradata 12.0 from BODI ETL tool. We are getting CON-120304 error.
    1.     BO Data Services / Integrator 3.1
    2.     Teradata Database Version 12.0
    3.     Teradata ODBC 12.0.0.0   and 12.0.0.5  driver 64-bit
    4.     Sun Solaris  64 Bit - Solaris 10 5/08 s10s_u5wos_10 SPARC
    5.     Error Message :
    u201CCON-120304                6/19/2009 2:21:33 PM      Cannot find ODBC function <SQLAllocConnect> in </opt/teradata/client/odbc/drivers/tdata.so>. Notify Customer Support.u201C
    Can someone please help to us on this urgently.
    Thanks and Regards,

    Matsdeep,
    Concerning configuring ODBC connectivity to Teradata on Linux / UNIX, new documentation will be provided in the release notes for XI 3.2 SP 2
    Here is a preview excerpt:
    On Unix and Linux platforms, SAP BusinessObjects Data Services requires an ODBC driver manager library and ODBC driver library to configure ODBC data sources. Some ODBC driver vendors include ODBC driver manager and ODBC driver capabilities in one single library, while others separate them into two individual libraries. To accommodate all ODBC vendors, Data Services requires configurations in two different files:
    1. The Unix ODBC driver manager configuration file ($LINK_DIR/bin/odbc.ini).
    This file contains DSN instances that reference ODBC driver manager libraries.
    2. The ODBC vendor's configuration files (referenced by the $ODBCINI environment variable).
    This file contains DSN instances that reference the ODBC driver libraries, as well as the database server connection information.
    To configure Teradata ODBC on Linux and Unix
    1. Add the data source to the Unix ODBC driver manager configuration file ($LINK_DIR/bin/odbc.ini).
    For example:
    [test_teradata]
    Driver = /usr/local/lib/libodbc.so
    2. Add the data source to the ODBC vendor's configuration file (referenced by $ODBCINI).
    For example:
    [test_teradata]
    Driver=/opt/teradata/client/odbc/drivers/tdata.so
    Description=NCR 3600 running Teradata V1R5.2
    DBCName=<host_IP_address>
    LastUser=
    Username=<user_name>
    Password=<user_name>
    Database=
    DefaultDatabase=<default_database_name>
    Disable CALL to EXEC Conversion=Yes
    3. Add the following environment settings to $LINK_DIR/db_env.sh:
    export ODBCINI=$HOME/.odbc.ini
    export LD_LIBRARY_PATH=tdata_location:libodbc_location:$LD_LIBRARY_PATH
    where tdata_location is the location of tdata.so and libodbc_location is the location of libodbc.so.

  • Questions in regards to connectivity of the E50

    Hi all,
    I have a Nokia E50 phone which I regularly connect to my PC via the USB cable. The Nokia PC Suite software is installed and everything is working fine.
    When connecting the phone to the computer a message on the phone prompts me for two modes. I can't remember what the prompt actually is, but it asks the user whether the phone should be operated in synchronisation mode, in order to sycnhronise contacts with help of the Nokia PC suite software, or whether the phone should be used as a standard USB removable device. When choosing the latter the device is detected correctly as a "removable drive" and is assigned with the native XP USB mass storage driver. As I understand the storage point of the phone in this case would be the flash memory card. OK, so far so good.
    When choosing the synchronisation mode I understand that the internal phone memory is used and the PC suite software acts as an "interpretor" between the internal phone memory and the Windows XP system. The synchronisation mode works fine, but everytime I connect the phone to the computer and choose sync mode Windows XP recognises it as a USB device, but cannot really determine which driver needs to be installed. It therefore tries to guide me through the manual installation of the USB driver, everytime I choose to connect the phone to the computer in synchronisation mode. I can cancel the manual installation and the phone remains to work fine with the PC suite software, however I have two questions:
    1. Is this behaviour normal
    2. As what kind of device is the phone supposed to show up when connecting it with the PC suite software? Will it be detected by the system as a genuine USB device in this case, which I cannot imagine because the internal memory is used, or is it detected as another device, e.g. modem?
    If anyone has any information on this please let me know. Thank you very much in advance.

    I appreciate the helpful responses!
    I was told by one of the employees at the Apple store I called, that I wouldn't need to remove the sim and just simply delete my 3G account Information. Then on my new iPad, set It up/log In with the same Information I had on the previous one and I would still retain my account. I wouldn't have any problems restoring the iPad with the sim Inside the device as well.
    I don't see a way to actually delete the Information since you would have to log In to your account beforehand. Would I need to log In and delete all the account Information or just simply complete a backup and restore the device?

  • How to specifiy the provider to be Oracle.ManagedDataAccess.Client when creating a dynamic connection string with EF Code First from Database?

    I am trying to use the relatively new Code First from Database with the newest EF (6.x) and on an Oracle database (11g, but I have installed the newest ODTwithODAC). First of all, it works fine as long as the connection string is inside the App.Config file. But when I try to build it dynamically in the C# code (or rather, statically at the moment) it fails. I have it working with a dynamically built connection string when doing Model from Database though, so I'm at a loss right now.
    First, I have created a second constructor for the context class that takes a string and does base(connectionString). Then I build the connection string via
    OracleConnectionStringBuilder oracleBuilder = new OracleConnectionStringBuilder();
    oracleBuilder.DataSource = "TEST.BLA.COM";
    oracleBuilder.UserID = "ABC";
    oracleBuilder.Password = "abc";
    oracleBuilder.PersistSecurityInfo = true;
    string connection = oracleBuilder.ToStrin();
    Now trying to open an EntityConnection by giving to it this provider-specific connection string (or even the static one from the App.Config) doesn't work; I get "keyword not supported: user id"). Trying it by creating a context and giving this connection string doesn't work either. I'm pretty sure that this is because I didn't specify the provider to use; after all, it should use the Oracle.ManagedDataAccess.Client provider and not an SQL Server based one.
    I then tried to get around this by using an EntityConnectionStringBuilder on top and specifying the provider keyword there, but then I get "keyword not supported: provider" when using it in the context constructor, and "the 'metadata' keyword is always required" when using it with the EntityConnection constructor.
    As I said above: I bet it's the provider that I have to specify somehow, but I don't know how. The code that does work is the following:
    using (var context = new Model())
    context.Database.Connection.Open();
    context.Database.Connection.Close();
    When I read context.Database.Connection.ConnectionString, it is exactly the provider-specific connection string I created above, but I don't know where to specify the provider again. Do you know of any way to do this? Certainly there must be one.
    PS: I have also posted this question on http://stackoverflow.com/questions/27979454/ef-code-first-from-database-with-managed-oracle-data-access-dynamic-connection because it is quite urgent and I'd like to use Code First from Database. Otherwise I'd have to go "back" to using Model from Database again, which is not ideal because we have updatable views where the .edmx-file has to be edited after every reload of the model, while with Code First from DB inserting into the view automatically works.

    I am trying to use the relatively new Code First from Database with the newest EF (6.x) and on an Oracle database (11g, but I have installed the newest ODTwithODAC). First of all, it works fine as long as the connection string is inside the App.Config file. But when I try to build it dynamically in the C# code (or rather, statically at the moment) it fails. I have it working with a dynamically built connection string when doing Model from Database though, so I'm at a loss right now.
    First, I have created a second constructor for the context class that takes a string and does base(connectionString). Then I build the connection string via
    OracleConnectionStringBuilder oracleBuilder = new OracleConnectionStringBuilder();
    oracleBuilder.DataSource = "TEST.BLA.COM";
    oracleBuilder.UserID = "ABC";
    oracleBuilder.Password = "abc";
    oracleBuilder.PersistSecurityInfo = true;
    string connection = oracleBuilder.ToStrin();
    Now trying to open an EntityConnection by giving to it this provider-specific connection string (or even the static one from the App.Config) doesn't work; I get "keyword not supported: user id"). Trying it by creating a context and giving this connection string doesn't work either. I'm pretty sure that this is because I didn't specify the provider to use; after all, it should use the Oracle.ManagedDataAccess.Client provider and not an SQL Server based one.
    I then tried to get around this by using an EntityConnectionStringBuilder on top and specifying the provider keyword there, but then I get "keyword not supported: provider" when using it in the context constructor, and "the 'metadata' keyword is always required" when using it with the EntityConnection constructor.
    As I said above: I bet it's the provider that I have to specify somehow, but I don't know how. The code that does work is the following:
    using (var context = new Model())
    context.Database.Connection.Open();
    context.Database.Connection.Close();
    When I read context.Database.Connection.ConnectionString, it is exactly the provider-specific connection string I created above, but I don't know where to specify the provider again. Do you know of any way to do this? Certainly there must be one.
    PS: I have also posted this question on http://stackoverflow.com/questions/27979454/ef-code-first-from-database-with-managed-oracle-data-access-dynamic-connection because it is quite urgent and I'd like to use Code First from Database. Otherwise I'd have to go "back" to using Model from Database again, which is not ideal because we have updatable views where the .edmx-file has to be edited after every reload of the model, while with Code First from DB inserting into the view automatically works.

  • Possible to select self-signed certificate for client validation when connecting to VPN with EAP-TLS

    In windows 8.2, I have a VPN connection configured with PPTP as the outer protocol and EAP : "Smart card or other certificate ..." as the inner protocol. Under properties, in the "When connecting" section I've selected "Use a certificate
    on this computer" and un-checked "Use simple certificate selection".
    My preference would be to use separate self-signed certificates for all clients rather than having a common root certificate that signed all of the individual client certificates. I've tried creating the self-signed certificate both with and without the
    client authentication EKU specified, and I've added the certificate to the trusted root certificate authority store on the client. But when I attempt to connect to the VPN I can not get the self signed certificate to appear on the "Choose a certificate"
    drop down.
    Are self signed certificates supported for this use in EAP-TLS? If it makes a difference, I'm working with makecert (not working with a certificate server).
    TIA,
    -Rick

    Hi Rick,
    Thank you for your patience.
    According to your description, would you please let me know what command you were using to make a self-signed certificate by tool makecert? I would like to try to reproduce this issue. Also based on my experience, please let me
    know if the certificate has private key associated and be present in the local machine store. Hence, please move the certificate from the trusted root certificate authority store to personal store.
    Best regards,
    Steven Song
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • What's wrong with my macbook pro (15" early 2011) when i connect it with TV via hdmi

    What's wrong with my macbook pro (15" early 2011) when i connect it with TV via hdmi

    Hello Alex,
    It sounds like you are getting excessive CPU usage when connecting an external display via HDMI to your computer. I would try the troubleshooting steps outlined in the article named:
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/ht1573
    When using an external display be sure to check the following:
    If you're using an Apple notebook, confirm the AC power cable or adapter is securely connected to the computer and the cable providing power to the display is also secure. It is always good to have your notebook connected to AC power when an external display is in use.
    Confirm display adapters are fully seated in their respective connections and that they are supported models and for the computer and display. Refer to these articles to assist you with adapter compatibility and further configuration information:
    Monitor and Display Adapter Table
    About Mini DisplayPort to HDMI adapters
    Apple Mini DisplayPort adapters: Frequently asked questions (FAQ)
    Thunderbolt ports and displays: Frequently asked questions (FAQ)
    Remove all display cable extenders, KVM switches, or other like devices and retest to determine if the issue is resolved.
    Try unplugging the video adapter or cable and then plug it back in.
    If more than one video adapter is in use (or "daisy-chained"), troubleshoot by using only one adapter.
    Example: A mini DisplayPort to DVI adapter connected to a DVI to HDMI adapter is an unsupported configuration because there is a series of adapters in use.
    If available, try using a different display and or adapter (or use a different connector by using DVI instead of VGA, for instance).
    Reset the systemYou can reset the Mac's parameter RAM and SMC.Reset the resolutionStart by resetting the Mac's parameter RAM. If the display does not come up, was previously set to an unsupported resolution, and still results in no video:
    Start up in Safe Mode.
    From the Apple () menu, choose System Preferences.
    Choose Displays from the View menu to open the preferences pane.
    Select any resolution and refresh rate that your display supports.
    Restart your computer.
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • Pioneer 8400 DVD receiver player, as iPhone ios6 update now when connecting the new iPhone with ios6 via blutooth (firmware prob) to my car DVD 8400 unit, when playing music such as on my phone or Pandora the track button does not function or work at all

    pioneer 8400 DVD receiver player, as iPhone ios6 update now when connecting the new iPhone with ios6 to my car DVD 8400 unit, when playing music such as on my phone or Pandora the track button does not function or work at all not even if i press skip track forward or back on the unit it doesn't function everything works except that. on listening to radio or anything else related not pairing thru Bluetooth unit works fine, seems there to be Bluetooth update that is not making iPhone and unit not compatible at all. does pioneer need fix this problem with update firmware or thru apple need help. my iPhone was working fine before with previous ios 5 before.

    Dear Valued Pioneer Customer:
    We would like to inform you of the availability of an optional Bluetooth® firmware update (HW05-SW01.27.20) that enables Bluetooth AVRCP control and metadata display from a compatible Pioneer CD or DVD Receiver when used with an iPhone® 5 or iOS 6 device.  If you do not own an iPhone 5 or iOS 6 device, there is no need to install this update.
    This firmware update may be used only with the following 2012 Pioneer products:
    CD Receivers
    DVD Receivers
    DEH-P8400BH
    DEH-P9400BH
    DEH-80PRS
    AVH-P2400BT
    AVH-P3400BH
    AVH-P4400BH
    AVH-P8400BH
    In order to perform this update, the following items are needed:
    A Pioneer CD or DVD Receiver above with built-in Bluetooth
    Laptop with built-in Bluetooth running Windows® 7
    Bluetooth firmware update (HW05-SW01.27.20)
    How to Obtain the Free Firmware Update
    1. Download the INSTRUCTIONS for the optional Bluetooth firmware update (HW05_SW01.27.20).
    2. Download the UPDATE FILE to a computer and transfer the file to a compatible 2012 Pioneer CD or DVD Receiver via a Bluetooth-enabled Windows 7 laptop.
    You can also arrange for Pioneer to update your 2012 Pioneer CD or DVD Receiver by calling Pioneer Customer Service toll free at 800-421-1404 during regular business hours (M-F 10AM-7:30PM Eastern Time, except on holidays). If this firmware update is performed by Pioneer, there is a charge of $60.00 (this charge includes return shipping of the updated unit within the U.S.). Charges for removal/reinstallation of the unit and shipment to Pioneer are the customer’s responsibility.
    How to Determine if the Firware Update has Already been Installed
    CD Receivers:
    • With the unit turned off (press and hold the source button until the CD Receiver turns off), press and hold the center of the volume knob to bring up the Settings menu → rotate the volume knob until "BT Version Info" is displayed and then press the center of the volume knob → The firmware version should show HW05-SW01.27.20.
    DVD Receivers:
    • With the unit turned off (press the home button and select ‘OFF’ from the source icons), press the home button → Press the “System” icon at the bottom of the screen → Select the “Bluetooth Version Info” option → The firmware version should show HW05-SW01.27.20.
    If the Bluetooth firmware version shows HW05-SW01.27.20, no further action is necessary.
    Questions
    If you have any questions, please contact the Pioneer Customer Service Center toll free at 1-800-421-1404, Monday through Friday, 10:00 a.m. to 7:30 p.m. (Eastern Time), except on holidays.
    Sincerely,
    Pioneer Electronics (USA) Inc.

  • My MacBook Pro with Retina display displays power point and not other windows when connected to a projector

    My MacBook Pro with Retina display displays power point and not other windows when connected to a projector. Can anyone help out please?

    You should also ask this in the MacBook Pro forum. This is the forum for the white and black plastic MacBooks that were discontinued in 2010. You should also post this question there to increase your chances of getting an answer.
    https://discussions.apple.com/community/notebooks/macbook_pro

Maybe you are looking for

  • Warranty Void MSI GE60 2PE APACHE PRO

    Hello guys.I have a question about warranty.I just bought a notebook MSI GE60 2PE APACHE PRO and i figure this notebook HDD is so slow just 5200 rpm.I want to ask if i can install 1-2 SSD without to void thw warranty because the warranty sticker is o

  • Error while trying to export data from Solution Manager 3.1

    Hello, when trying to export a project via SOLAR_MIGRATION in Solution Manager 3.1, I get the following error when trying to release the transport: COMMUNICATION_FAILURE for RFC call SCMS_CONT_EXPORT (destination SAPKPROTP): / RfcExecProg: SAP0451. E

  • Ora-01031 error while starting oracle9i server on linux advanced redhat 3.1

    I am encountering some errors while trying to start the oracle9i database on linux server. I am getting the error ora-01031 while trying to connect to the server as sysdba. I give the following commands sqlplus /nolog Sql> conn sys/xxxx as sysdba ERR

  • Controling a sigma koki motorrized stage via a PCI 7334

    Hi everyone, I am trying to control a sigma koki motorized stage via a PCI 7334. The motor is a stepper motor. For information, here is the connection diagram of the stage via the driver (SG55M on the diagram) to the controler: http://www.sigma-koki.

  • RH 11: Conditional Build tags applied: Content still showing up in search

    Hello. I am generating WebHelp using conditional build tags using RH 11. I have marked books in the TOC with a CBT of Not in 6.1. I generated help and excluded content marked with the CBT Not in 6.1. When the Web Help is generated, the books marked w