Aironet 1240AG error - "Previous authentication no longer valid" Help!

Greetings!
I am an IT professional that is installing my first extended range wireless AP in my companies warehouse. I am very excited!
Now I have set up many a linksys and repeater wireless networks, so when I was looking into the Aironet 1240AG I thought ?No Problem!?
And at first, it is not!
I have the AP and antenna set up here in my office before I take it out and mount it in the warehouse. And I can get connected to it, no security for now, no filters, I just want to connect and make it work.
I stay connected for maybe 3 minutes, I can get to the internet, I can ping all my servers. Full connectivity. But then for no reason the connection fails and I cannot reconnect.
The error I get in the log is
Interface Dot11Radio0, Deauthenticating Station 0006.2510.bbe3 Reason: Previous authentication no longer valid
So strange! So I have reset the AP to factory defaults and then set the SSID, and I can connect, again for a second, then nothing.
I have tried with multiple wireless cards, even laptops. Thinking maybe the problem was on the computer side.
But now I believe I must have some setting wrong.
Could someone please shed some light on this situation for me! I searched the forums but could not find this error message in this context.
Thanks!
Nate York

Interesting...I am experiencing the same problem, but when adding another laptop to the existing 5 Aironet 1100's. The existing laptops work fine, but when trying to add another node, I see the problem. I get the following error message in the error log as well as the activity screen;
Interface Dot11Radio0, Deauthenticating Station 0002.2d34.a0fe Reason:
Previous authentication no longer valid
Unit - 6 units
Cisco Aironet 1100 version 12.3.(07)JA
The error takes place with no other units online, or when other units are in use. Also the laptop in question "shows" connected to the AP (yes I have tried other APs all with negative results). The settings on the laptops are all the same, so i am at a loss.
Any suggestions greatly appreciated,
Ralph

Similar Messages

  • UTL_SMTP and SMTP-Error: 530 Authentication required

    Hi,
    I wanna use the utl_smtp-package and while testing the example of the 9i-documentation, I got the error:
    ORA-29279: Permanent SMTP-Error: 530 Authentication required
    The only help I found was the sentence in the docu:
    530: Must issue a STARTTLS command first. Encryption required for requested authentication mechanism.
    What does it mean and how can I avoid this error?
    It's true, that my smtp-account of my provider needs an authentication (pop3 before smtp!)
    Thanx a lot!
    Wolfgang

    Hey, Community Girl!  I just spent 2 days ripping my hair out over this same issue...  The answer was maddeningly simple/stupid.  In Outlook...  they ASK for your "user name" and "Password" (on the More Settings Tab).  What they
    actually WANT is your "email address" NOT your "user name", followed by your password.  This is easy.. I hope it works the same for you.
    In Outlook, go to Tools, Email Accounts, View or Change, click Next.  Highlight account information and click change.  In the lower right of the page... Click More Settings.
    Click the Outgoing Server Tab.
    Check the My outgoing server SMTP requires authorization.
    Check Log on Using:
    User Name:  Do NOT type your user name here... type your email address!
    Password:  Type in your password.
    Check the Remember password box.  OK
    That one small change FIXED 2 days of hair pulling on my part... I hope that does it for you too.
    Let me know...  I'd be interested if you fixed it.  Wish they had actually asked for what they wanted... User Name or Email Address ARE two different things!  Good luck!
    South Texan, you're a genius!  This 530 Authentication error has plagued me for 3 years now; when I call my internet service, they say it's a router firewall issue; when I call them, they say it's not their issue.  Changing the User Name field to
    my email address instead of my user account name worked!!!!! Thank you!!

  • Your role no longer valid error message and cannot edit page

    Unfortunately I don't have access to the file, am asking on
    behalf of a
    friend who is skittish about his skills navigating a forum.
    His question is:
    When I open contribute, and select the website I want to
    edit..there is a
    yellow bar across the top of the screen that says "your role
    in this website
    is no longer valid. Click connect to update your connection
    with a valid
    one" so when I click connect, it goes through some screens,
    then it asks
    what folder on the ftp server the website is in? before there
    was this
    problem, I could get into the page I wanted to edit, and make
    the changes,
    then when I would hit the publish button the old page would
    show up..so I
    could make the changes but they weren't publishing..but at
    that point I was
    getting no error message???
    He's having those two problems.
    Any thoughts? I don't know diddly about Contribute. Thanks.
    Libbi

    Hi, This is because SSRS requires a Login to connect to the datasource to process the report when subscription will be occuring at its scheduled time. I would recommend you to store the credential securily into report server.
    GoTo: Report>Properties> Click on the Data Sources tab and you will see following options:
    a)A shared data source
    b)A custom data source
    Use option b) and click on option Credentials stored securely in the report server
    and provide credential information and further you can use options: Windows credentials and Impersonate the authenticated User if you require. Click on apply button.
    *You can use any option of them provided in first option(a) also using the shared data source which is having credential saved into report server.
    Once you have done with above you will be able to create subscription.
    Cheers Sunil Gure

  • Error in Java 'Logical handle no longer valid'

    Created 2 objects and 1 collection in Oracle.
    CREATE TYPE exe_grant_scr_dtls_t AS OBJECT
         grant_id                    VARCHAR2(8),
         option_price               NUMBER(9,4),
         option_type               VARCHAR2(3),
         total_shares               NUMBER(11),
         exercise_details          EXERCISE_SCR_DTLS_LIST
    CREATE TYPE exercise_scr_dtls_list AS TABLE OF exercise_scr_dtls_t
    CREATE TYPE exercise_scr_dtls_t AS OBJECT
         exercise_id               VARCHAR2(20),
         exercise_date          DATE,
         exercise_type          VARCHAR2(15),
         shares_exercised          FLOAT,
         total_option_value     FLOAT,
         exercise_price          FLOAT,
         total_exercise_value     FLOAT,
         gross_proceeds          FLOAT,
         taxes                     NUMBER,
         net_proceeds               FLOAT
    THE OBJECT VIEW For retrieving data for the same is as follows:
    CREATE OR REPLACE VIEW EXE_GRANT_SCR_DTLS_VW of "SSTUSER".EXE_GRANT_SCR_DTLS_T WITH OBJECT IDENTIFIER (grant_id) AS SELECT g.grant_id,
    g.option_price,
         g.option_type,
         g.total_shares,
         CAST(MULTISET(SELECT x.exercise_id,
                                       x.exercise_date,
                                       DECODE(x.exercise_type, 'Same-Day Sale', 'SDS', 'Sell to cover', 'STC', x.exercise_type),
                                       x.shares_exercised,
                                       x.shares_exercised * g.option_price,
                                       x.exercise_price,
                                       x.shares_exercised * x.exercise_price,
                                       x.taxable_income,
                                       x.total_taxes,
                                       nvl(x.taxable_income,0) - nvl(x.total_taxes,0)
                        FROM stockadm.sst_exercise_vw x
                             WHERE x.grant_id = g.grant_id
                        ) AS exercise_scr_dtls_list
    FROM stockadm.sst_grant_vw g
    When we try to access the 'exercise_details' in the readSQL method of the Java object it gives us the error that 'Logical handle no longer valid'. This happens at the following step in ReadSQL.
    Object[] o = (Object[])a.getArray();
    This error occurs when we are using a connection from the Connection pool,. If however, we use the same code, bypassing the Connection pool , the above statement work.
    How can we resolve this issue? We are using Oracle 8i for our application.

    Hi James,
    I basically happens when a connection instance is refered, which was closed by another thread. It depends on the code, how you use connection pooling.
    Post the connection pooling code, so that we can have a look.
    Regards
    Elango.

  • "Your role in this website is no longer valid" error message.

    Hello all,
    Several of my clients have recently begun reporting that they
    are receiving this error message: "Your role in this website is no
    longer valid. Please obtain a new connection key." Issuing a new
    connection key doesn't solve the problem, the error persists.
    It seems an unlikely coincidence that my clients would be
    reporting this all of a sudden. Can this be related to my
    installation of Contribute CS3? I am using Contribute CS3 in
    Transition Mode. My clients are all using Contribute 3.
    I have only been able to find mention of this message in a
    single forum via Google, and it had no replies or resolution. Does
    anyone know why this is happening, or how to solve it?
    Thanks,
    Mike

    I happenned to come accross  the same problem yesterday.
    I deleted _mm folder on the root of my website and this caused all the keys to fail for the site.
    Solution:
    delete the connection in contribute.
    generate key,
    saves the kes as the old one.
    tell clients restart contribute
    And  voila !everybody is happy.
    Hope this will help somebody.

  • Error : Your session is no longer valid.in Oracle Apps 11.5.9

    Hi Friends,
    I am using Oracle Apps 11.5.9
    I am getting error message when I try to access the application:
    Error : Your session is no longer valid.
    I Tried "Clearing the Apache Cache" and "Jcache in the client",
    SESSION_COOKIE_DOMAIN in ICX_PARAMETERS table shows correct Domain.
    but I am still getting the same error.
    but i am able to able to launch the application using /dev60cgi/f60cgi and also i am able to access Oracle Application manager.
    Let me know the fix.
    Regards,
    Arun

    Hi,
    I am getting error message when I try to access the application:
    Error : Your session is no longer valid.Was this working before? If yes, what changes have you done recently?
    Review Apache log files (error_log and access_log) for more details about the error.
    Let me know the fix.In addition to the above, review the following documents and see if it helps.
    Note: 267229.1 - APPS Login Error: Your Session Is No Longer Valid
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=267229.1
    Note: 395953.1 - Your Session Is No Longer Valid. Please Login Again. Oracle error 20001: java.sql.SQLException: ORA-20160: Encountered an error while getting the ORACLE user account for your concurrent request
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=395953.1
    Regards,
    Hussein

  • Error : Your session is no longer valid. Please login again.

    Hi partners,
    I am getting next error message when users want to get access to this cloned environment:
    <b>Error : Your session is no longer valid. Please login again.</b>
    I have test everything: "AOL TEST", "Regeneration of JAR files" and "Clearing the Apache Cache" and "Jcache in the client", but I am still not able to get access by Login Page.
    I am able to get access by Forms Launcher path: /dev60cgi/f60cgi.
    Has anybody had this problem before?
    Any help or advice will be really appreciated.
    Thanks in advance.
    Kind regards,
    Francisco Mtz.

    Hi Hussein,
    Thank you very much for reply, I really appreciate it.
    This customer has 11.5.9.
    - Your hostname does not contain an "underscore"
    <b>Both servers "Database" and "Application" don't have "underscores" in their names.</b>
    - Validate the value of SESSION_COOKIE_DOMAIN in ICX_PARAMETERS table
    <b>You know, I have verified this value and seems it has the value coming from the source "server", I will change it to this new domain name.</b>
    - You have no invalid objects (ICX_% packages)
    <b>There are not invalid objects for ICX schema.</b>
    I will test again, chaning SESSION_COOKIE_DOMAIN column.
    Thanks in advance.
    Kind regards my friend.
    Francisco Mtz.

  • Error ORA-00980: synonym translation is no longer valid when i issue

    i accidentally drop one of my table. To bring it back i used Imp tool. But it gives an error ORA-00980: synonym translation is no longer valid when i issue
    Select * from ship_sched_fact_notice_det
    Action taken using Imp
    Username: erpdada
    Password:
    Connected to: Oracle Database 10g Release 10.1.0.2.0 - Production
    Import file: EXPDAT.DMP > e:\erpdada_august13.dmp
    Enter insert buffer size (minimum is 8192) 30720> 30720
    Export file created by EXPORT:V10.01.00 via conventional path
    Warning: the objects were exported by SYSTEM, not by you
    import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    import server uses AL32UTF8 character set (possible charset conversion)
    List contents of import file only (yes/no): no > y
    Import entire export file (yes/no): no > n
    Username: erpdada
    Enter table(T) or partition(T:P) names. Null list means all tables for user
    Enter table(T) or partition(T:P) name or . if done: ship_sched_fact_notice_det
    Enter table(T) or partition(T:P) name or . if done: .
    "CREATE PUBLIC SYNONYM "XMLTYPE" FOR "SYS"."XMLTYPE""
    "CREATE TABLE "SHIP_SCHED_FACT_NOTICE_DET" ("SSFND_ITEM_NOT_DET_ID" NUMBER, "
    ""SSFN_FACTORY_ID" VARCHAR2(40) NOT NULL ENABLE, "SSFN_FAC_NOTICE_ID" NUMBER"
    " NOT NULL ENABLE, "SSD_SHIP_ITEM_ID" NUMBER NOT NULL ENABLE, "OI_ITEM_ID" N"
    "UMBER NOT NULL ENABLE, "ORDER_TYPE" VARCHAR2(1), "SSFND_ITEM_CODE" VARCHAR2"
    "(300), "SSFND_QTY" NUMBER, "SSFND_CTN" NUMBER, "SSFND_TOT_CBM" NUMBER, "SSF"
    "ND_REM1" VARCHAR2(256), "SSFND_REM2" VARCHAR2(256), "SSFND_UNIT_ID" VARCHAR"
    "2(40), "SSFND_IS_EXCL_SUMMARY" VARCHAR2(1))  PCTFREE 10 PCTUSED 40 INITRANS"
    " 1 MAXTRANS 255 STORAGE(INITIAL 81920 FREELISTS 1 FREELIST GROUPS 1 BUFFER_"
    "POOL DEFAULT) TABLESPACE "ORDER_DATA01" LOGGING NOCOMPRESS"
    . . skipping table "SHIP_SCHED_FACT_NOTICE_DET"
    "GRANT DELETE ON "SHIP_SCHED_FACT_NOTICE_DET" TO "SHIPMENT_NOTICE""
    "GRANT INSERT ON "SHIP_SCHED_FACT_NOTICE_DET" TO "SHIPMENT_NOTICE""
    "GRANT SELECT ON "SHIP_SCHED_FACT_NOTICE_DET" TO "SHIPMENT_NOTICE""
    "GRANT UPDATE ON "SHIP_SCHED_FACT_NOTICE_DET" TO "SHIPMENT_NOTICE""
    "CREATE UNIQUE INDEX "PK_SHIP_SCHED_FACT_NOTICE_DET" ON "SHIP_SCHED_FACT_NOT"
    "ICE_DET" ("SSFND_ITEM_NOT_DET_ID" )  PCTFREE 10 INITRANS 2 MAXTRANS 255 STO"
    "RAGE(INITIAL 65536 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLE"
    "SPACE "ORDER_DATA01" LOGGING"
    "ALTER TABLE "SHIP_SCHED_FACT_NOTICE_DET" ADD  CONSTRAINT "PK_SHIP_SCHED_FAC"
    "T_NOTICE_DET" PRIMARY KEY ("SSFND_ITEM_NOT_DET_ID") USING INDEX PCTFREE 10 "
    "INITRANS 2 MAXTRANS 255 STORAGE(INITIAL 65536 FREELISTS 1 FREELIST GROUPS 1"
    " BUFFER_POOL DEFAULT) TABLESPACE "ORDER_DATA01" LOGGING ENABLE "
    "ALTER TABLE "SHIP_SCHED_FACT_NOTICE_DET" ADD CONSTRAINT "SHIP_SCHED_FACT_NO"
    "TICE_DE_FK1" FOREIGN KEY ("SSD_SHIP_ITEM_ID") REFERENCES "SHIPPING_SCHEDULE"
    "_DETAILS" ("SSD_SHIP_ITEM_ID") ENABLE NOVALIDATE"
    "ALTER TABLE "SHIP_SCHED_FACT_NOTICE_DET" ADD CONSTRAINT "SHIP_SCHED_FACT_NO"
    "TICE_DE_FK2" FOREIGN KEY ("SSFN_FAC_NOTICE_ID") REFERENCES "SHIP_SCHED_FACT"
    "ORY_NOTICE" ("SSFN_FAC_NOTICE_ID") ENABLE NOVALIDATE"
    "ALTER TABLE "SHIP_SCHED_FACT_NOTICE_DET" ENABLE CONSTRAINT "SHIP_SCHED_FACT"
    "_NOTICE_DE_FK1""
    "ALTER TABLE "SHIP_SCHED_FACT_NOTICE_DET" ENABLE CONSTRAINT "SHIP_SCHED_FACT"
    "_NOTICE_DE_FK2""
    Import terminated successfully with warnings.
    I drop the old synonym and re-create it but still it gives the same error...

    Since you are on 10g did you try flashback table feature - http://tonguc.wordpress.com/2007/01/01/oracle-10g-flashback-versions-query-drop-table-and-recyclebin-management/
    FLASHBACK TABLE <tabname> TO BEFORE DROP;
    If you didnt use purge option, the dropped object is on your recyclebin - http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_9018.htm#sthref9593
    Best regards.

  • I have CS2 and I use it almost every day.. Today when I tried to launch it, a prompt came up saying my Activation was no longer valid and it closed automatically.  Then when I tried to re-open it, a prompt came up saying "A serious error has occured"  Ple

    I have CS2 and I use it almost every day.. Today when I tried to launch it, a prompt came up saying my Activation was no longer valid and it closed automatically.  Then when I tried to re-open it, a prompt came up saying "A serious error has occured"  Please re-install the software...  I have no idea where my software is... That was many many years ago?  HELP!!

    When you go to the download page, you must do two things:
    Download this file: PhSp_CS2_English.exe on the download page.
    Use the serial number on the download page in order to install your non-activation copy.
    Do not use your old CD or serial number. It no longer works.
    If you have Windows 7, the advice is to turn off UAC and run the installer as Administrator.
    Gene

  • Safari won't start after showing an error message: Safari can't use the extension "Omnibar" because the extension is no longer valid.

    Since yesterday evening (19-01-2015) safari won't start. After clicking the safari application it shows an error message: Safari can't use the extension "Omnibar" because the extension is no longer valid.
    This message almost directly disappears whereupon the Problem Report opens. I've tried to find a solution on the web but without succes.
    I'm running OS X Yosemite version 10.10.1 and Safari version 8.0.2 on a:
    MacBook Pro (Retina 13-inch, Mid 2014)
    Processor 3 GHz Intel Core i7
    Memory 16 GB 1600 MHz DDR3
    Graphics Intel Iris 1536 MB
    Since I updated to Yosemite I've been having multiple problems. I already read a clean install will solve most of them. But till then I would love safari to work again.
    Thanks!

    There is no need to download anything to solve this problem.
    If Safari crashes on launch and you don't have another web browser, you should be able to launch Safari by starting up in safe mode.
    You may have installed the "Genieo" or "InstallMac" ad-injection malware. Follow the instructions on this Apple Support page to remove it.
    Back up all data before making any changes.
    Besides the files listed in the linked support article, you may also need to remove this file in the same way:
    ~/Library/LaunchAgents/com.genieo.completer.ltvbit.plist
    If there are other items with a name that includes "Genieo" or "genieo" alongside any of those you find, remove them as well.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those.
    After removing the malware, remember to reset your home page in all the web browsers affected, if it was changed.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, then you may have one of the other kinds of adware covered by the support article. Follow the rest of the instructions in the article.
    Make sure you don't repeat the mistake that led you to install the malware. Chances are you got it from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates (OS X 10.10 or later)
    or
              Download updates automatically (OS X 10.9 or earlier)
    if it's not already checked.

  • The Aironet 1240AG Autonomous Web Interface authentication

    Hi,
    I would like to know if the Aironet 1240AG Autonomous, is capable to do Web Interface authentication (like a public hotspot, so no security on Wifi, but you will only get access to the network/internet when one has opened a Internet Browser and got an Username password challange from the Access Point )
    I'm planning to use this methode to make a guest access wifi connection to Internet available.
    Had this first with a propper WPA key, but lot's of guests had many dificulties to connect this way.
    So now I'm want to try it on a way most users are used to due to the Web interface authentication they know from public hotspots (hotels etc. )

    The only way I found to do this with autonomus is with third party software, that has the function known as "captive portal". You could try the sofware based on freebsd named monowall (its a firewall) with the captive portal feature.

  • Why can't I download digital copies? Every single digial copy I attempt to download returns an error that the code is no longer valid.

    Why can't I download digital copies? Every time I attempt to download a movie, iTunes returns an error that the code is no longer valid. Thx.

    Hi,
    I have seen users reporting on the forum that there download is not working anf stucking up at 99% but when they try it out again say after a day or two then the issue gets resolved, I believe in the mean time the store team/web team fixed that issue. Did you tried it again? Any success?
    Regards,
    Ankush

  • How do I disable a previous apple ID where the email is no longer valid and it has my incorrect birthday?

    How do I disable my old apple ID where I have 1) forgotten the password, 2) the email is no longer valid (so they can't send me my password) and 3) it has my incorrect birthday (so I can't answer the security question to have them send me a new password)?
    Also, I set up a new apple ID on my iphone, but it won't accept my itunes card.  It says I need to complete all the information highlighted in red.  However, there is no information highlighted in red.  It seems to want me to put in a credit card.  Is there any way around this?

    You posted in the iPad forum instead of the iPhone forum. To get answers to your question, next time post in the proper forum. See https://discussions.apple.com/index.jspa  I'll request that Apple relocate your post.
     Cheers, Tom

  • Class is no longer valid

    Hi,I have been working mostly in Flash and only two days in Dreamweaver CS4. I recently  started a project that was based on a Tutorial for CS3
    that is called a panning widget. It look like something I can use, however, when I save all I get an error indication the class"navigator" is no longer valid.
    I'm assuming that CS4 has a new class for this function but I'm not sure how to access or change it.
    Thanks for your help
    I have highlighted the code that seems to be creating a problem
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <script type="text/javascript" src="SprySlidingPanels.js"></script>
    <style type="text/css">
    <!--
    .Widget {
        background-image: url(Tutorial%20Sample%20Files/Televisions.gif);
        position: absolute;
        height: 570px;
        width: 690px;
        left: 200px;
        top: 50px;
    .ImageMap {
        position: absolute;
        height: 150px;
        width: 315px;
        left: 175px;
        top: 58px;
    .ViewFinder {
        position: absolute;
        height: 250px;
        width: 350px;
        left: 158px;
        top: 251px;
    -->
    </style>
    <link href="Tutorial Sample Files/SprySlidingPanels.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    body {
        background-color: #333333;
    -->
    </style></head>
    <body>
    <div class="Widget">
    <div class="ImageMap"><img src="Tutorial Sample Files/RobotLounge.jpg" alt="Robot Lounge" width="315" height="150" border="0" usemap="#Map" />
      <map name="Map" id="Map">
        <area shape="rect" coords="0,0,105,75" href="#"onclick=navigator.showpanel(0);return false />
        <area shape="rect" coords="105,0,210,75" href="#"onclick=navigator.showpanel(1);return false />
        <area shape="rect" coords="210,0,315,75" href="#"onclick=navigator.showpanel(2);return false />
        <area shape="rect" coords="0,75,105,150" href="#"onclick=navigator.showpanel(3);return false />
        <area shape="rect" coords="105,75,210,175" href="#"onclick=navigator.showpanel(4);return false />
        <area shape="rect" coords="210,75,315,175" href="#"onclick=navigator.showpanel(5);return false />
      </map>
    </div>
    <div class="ViewFinder">
    <div id="ViewFinder">
    <div id="navigator"class="SlidingPanelContentGroup">
    <div id="navigator" class"SlidingPanels">
    <div class="SlidingPanelsContentGroup">
      <div id="Panel0" class = SlidingPanelsContent"><img src="images/RobotLounge_01.jpg" width="350" height="250" /></div>
      <div id="Panel1" class = SlidingPanelsContent"><img src="images/RobotLounge_02.jpg" width="350" height="250" /></div>
      <div id="Panel2" class = SlidingPanelsContent"><img src="images/RobotLounge_03.jpg" width="350" height="250" /></div>
      <div id="Panel3" class = SlidingPanelsContent"><img src="images/RobotLounge_04.jpg" width="350" height="250" /></div>
      <div id="Panel4" class = SlidingPanelsContent"><img src="images/RobotLounge_05.jpg" width="350" height="250" /></div>
      <div id="Panel5" class = SlidingPanelsContent"><img src="images/RobotLounge_06.jpg" width="350" height="250" /></div>
    </div><script type="text/javascript">
    var navigator = new Spry.Widget.SlidingPanels('navigator');
    </script>
    </body>
    </html>

    Try this:
    http://labs.adobe.com/technologies/spry/home.html
    Plus heres a link talking about previous widgets:
    http://www.lynda.com/home/Player.aspx?lpk4=48508
    Alternatively wont any of the widgets which ship with DWCS4 do what you need? Insert>Spry>Accordian or Collapsible panel.

  • Aironet 1240AG - cant use the web interface

    I am trying to configure a new Aironet 1240AG. After it picked an ip address from the DHCP in my lan, I still can't log in using the web interface. I am using an Internet Explorer 6.0 on Win 2000. It keeps telling me cannot find server. please i need assistance

    Hi Obinna,
    Sorry about the link :( The problem here is the fact that 12.3.(11)JX is a Lightweight image. Have a look;
    Warning: All Cisco Aironet Access Points receiving Cisco IOS Software Release 12.3(11)JX will only function in conjunction with a Cisco Wireless LAN Controller. They will no longer be able to function as Cisco Aironet Autonomous Access Points.
    This product bulletin describes the content and delivery information for Cisco IOS Software Release 12.3(11)JX. This is a Cisco Lightweight Access Point Protocol (LWAPP) upgrade and recovery support software image supporting Cisco Aironet 1100, Aironet 1130, Aironet 1200, Aironet 1230 AG, Aironet 1240 AG, and Aironet 1300 Series Access Points.
    http://www.cisco.com/en/US/products/ps5861/prod_bulletin0900aecd804b1a72.html
    You can use this method to convert the AP back to Autonomous Mode (and access via Web);
    Reverting the Access Point Back to Autonomous Mode
    http://www.cisco.com/en/US/products/hw/wireless/ps430/prod_technical_reference09186a00804fc3dc.html#wp161272
    You can convert an access point from lightweight mode back to autonomous mode by loading a Cisco IOS Release that supports autonomous mode (Cisco IOS release 12.3(7)JA or earlier). If the access point is associated to a controller, you can use the controller to load the Cisco IOS release. If the access point is not associated to a controller, you can load the Cisco IOS release using TFTP.
    Using a TFTP Server to Return to a Previous Release
    Follow these steps to revert from LWAPP mode to autonomous mode by loading a Cisco IOS release using a TFTP server:
    Step 1 The static IP address of the PC on which your TFTP server software runs should be between 10.0.0.2 and 10.0.0.30.
    Step 2 Make sure that the PC contains the access point image file (such as c1200-k9w7-tar.122-15.JA.tar for a 1200 series access point) in the TFTP server folder and that the TFTP server is activated.
    Step 3 Rename the access point image file in the TFTP server folder to c1200-k9w7-tar.default for a 1200 series access point, c1130-k9w7-tar.default for an 1130 series access point, and c1240-k9w7-tar.default for a 1240 series access point.
    Step 4 Connect the PC to the access point using a Category 5 (CAT5) Ethernet cable.
    Step 5 Disconnect power from the access point.
    Step 6 Press and hold MODE while you reconnect power to the access point.
    Step 7 Hold the MODE button until the status LED turns red (approximately 20 to 30 seconds) and then release.
    Step 8 Wait until the access point reboots, as indicated by all LEDs turning green followed by the Status LED blinking green.
    Step 9 After the access point reboots, reconfigure it using the GUI or the CLI.
    From this doc;
    http://www.cisco.com/en/US/products/hw/wireless/ps430/prod_technical_reference09186a00804fc3dc.html#wp161272
    Hope this helps!
    Rob

Maybe you are looking for

  • Report for last seen machines

    I'm trying to build a report to show all Serial numbers of machines, machine name, Top console user and when the machine last connected to the domain. I have the first 3 sorted and working but I don't know what variable i'm looking for when trying to

  • Major drive crash, can't find photos

    The cable that connects my external drive to my MacBook Pro came loose while I was working in iPhoto (library was on external drive). When I reconnected and tried to use iPhoto again, some of my thumbnails were missing, so had iPhoto rebuild the thum

  • Internet Sales Application (ISA)  versus WebChannel

    What is the diffrence between ISA and the CRM web channel .

  • Printing Purchase orders contiuneosuly in ME9F

    Hi,         We are printing Purchase Orders from ME9F. When we are selecting the multiple PO and Outputting the message. Then we are getting Pop up for printing the PO. We have to press enter as many times as the number of POs to be printed. But our

  • HT204249 Xsan 4: Confirm network being used for metadata

    Regarding this article: How to select an Xsan metadata network in OS X Server (Yosemite) What is the best way to confirm the IP/network that is currently in use for metadata OS X 10.10?