Java not working, need help from the pros!!!

Whenever i go to a website that uses java (like runescape), the window that has the java is all white screen and on the top left side there is a little sheet of paper with a folded corner with a red X on it.
Java doesn't work, please i need help!
i am sure i have the current version
i think it may have something to do with a failed classloader (maybe)

when i click on the red X, and go java consol, this is that appears:
+Java Plug-in 1.5.0+
+Using JRE version 1.5.0_13 Java HotSpot(TM) Client VM+
+User home directory = /Users/***********+
+c: clear console window+
+f: finalize objects on finalization queue+
+g: garbage collect+
+h: display this help message+
+l: dump classloader list+
+m: print memory usage+
+o: trigger logging+
+p: reload proxy configuration+
+q: hide console+
+r: reload policy configuration+
+s: dump system and deployment properties+
+t: dump thread list+
+v: dump thread stack+
+x: clear classloader cache+
+0-5: set trace level to <n>+

Similar Messages

  • TS1717 This article is vague and unhelpful. My iTunes needs help from a pro. I have over 120,000 songs -- NO movies, TV, radio, or books... I have other programs which efficiently run things which are not audio-based. So why can I not get iTunes working w

    This article is vague and unhelpful. My iTunes needs help from a pro.
    I have over 120,000 songs -- NO movies, TV, radio, or books...
    I have other programs which efficiently run things which are not audio-based.
    So why can I not get iTunes working well?? It now takes at least 10 secs for any operation to be completed!
    That is just plain evil. But I am sure I could do something to help.
    All the music is on an 2T external drive.

    TS1717 as noted in the thread title...
    Brigancook, is the library database on the external or just the media? iTunes reevaluates smart playlists and rewrites its database after every action on the library. I've found this can make a library half that size, with a lot of smart playlists, quite sluggish. That said I'm aware part of my problem is aging hardware. Having the database on the internal drive may improve performance if it is currently on the external.
    I'd expect to see an exponential relationship between size and response time which may explain what you see. Cutting down on the number of smart playlists might help. If we're really lucky the long awaited iTunes 11 might have streamlined some of the background processes as well as cleaning up the front end.
    tt2

  • I sign in tol my Firefox is out of date. did try to do the upgrade but did not work need help

    ''locking this thread as duplicate, please continue at [https://support.mozilla.org/en-US/questions/978554 /questions/978554]''
    I need help to get my sign in working. Need to upgrade?
    how to do that?
    <sub>edit: removed personal information for your protection. (philipp)</sub>

    I sign in told my Firefox is out of date. did try to do the upgrade but did not work. Need help
    Let me know how to get my sign in working

  • Success_URL in web.xml not working - Need help

    Hi:
    I developed my whole application in Jdeveloper 10.1.3.2 and all the security are done through custom module. Everything is working fine except one of the part that is success_url in web.xml.
    1. There are total 10 pages in my application independent of each other.
    2. I configured the custom login procedure and it is working fine.
    3. From Jdeveloper if I run any page (i.e. one of 10 pages) it is prompting me to login and after login it is redirecting to the page I ran.
    My issue is that after the login is completed as in step 3, I want the page to be redirected to predefined page called UserResp.jspx. I don't want to redirect to the page from where the login page was called. As per the notes in the ADF document, I configured the success_url in the adfAuthentication servlet as below. But after login it is not redirecting to the success_url but it is redirecting to the page from where the login was prompted.
    Do I need to perform any other step for this success_url to work. Could you please guide.
    Below is the details of my web.xml.
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee">
    <description>Empty web.xml file for Web Application</description>
    <context-param>
    <param-name>javax.faces.CONFIG_FILES</param-name>
    <param-value>/WEB-INF/efile-faces-config.xml</param-value>
    </context-param>
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
    </context-param>
    <context-param>
    <param-name>CpxFileName</param-name>
    <param-value>userinterface.DataBindings</param-value>
    </context-param>
    <context-param>
    <param-name>oracle.adf.view.faces.CHECK_FILE_MODIFICATION</param-name>
    <param-value>false</param-value>
    </context-param>
    <filter>
    <filter-name>adfFaces</filter-name>
    <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
    </filter>
    <filter>
    <filter-name>adfBindings</filter-name>
    <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>REQUEST</dispatcher>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jspx</url-pattern>
    </filter-mapping>
    <servlet>
    <servlet-name>adfAuthentication</servlet-name>
    <servlet-class>oracle.adf.share.security.authentication.AuthenticationServlet</servlet-class>
    <init-param>
    <param-name>success_url</param-name>
    <param-value>faces/app/user/UserResp.jspx</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>resources</servlet-name>
    <servlet-class>oracle.adf.view.faces.webapp.ResourceServlet</servlet-class>
    </servlet>
    <servlet>
    <servlet-name>UploadMultiFileServlet</servlet-name>
    <servlet-class>oracle.apps.xxcust.servlet.UploadMultiFileServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>resources</servlet-name>
    <url-pattern>/adf/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>UploadMultiFileServlet</servlet-name>
    <url-pattern>/UploadMultiFileServlet</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>adfAuthentication</servlet-name>
    <url-pattern>/adfAuthentication/*</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>35</session-timeout>
    </session-config>
    <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    <jsp-config/>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>All Pages</web-resource-name>
    <url-pattern>faces/app/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>ADMIN</role-name>
    <role-name>MANAGER</role-name>
    <role-name>USER</role-name>
    </auth-constraint>
    </security-constraint>
    <login-config>
    <auth-method>FORM</auth-method>
    <form-login-config>
    <form-login-page>/Login.jsp</form-login-page>
    <form-error-page>/Login.jsp</form-error-page>
    </form-login-config>
    </login-config>
    <security-role>
    <role-name>ADMIN</role-name>
    </security-role>
    <security-role>
    <role-name>MANAGER</role-name>
    </security-role>
    <security-role>
    <role-name>USER</role-name>
    </security-role>
    </web-app>

    Hi All:
    Thanks for all your help regarding the adfAuthentication success_url. Now I am able to configure to make this work. But now I am facing another issue i.e. I am getting 401 Not authorized message when the success_url is pointed to the jspx page.
    Note: I am using custom login module similar to DBProcOraDataSourceLoginModule so my roles are stored in the custom Role class. So I am not sure how to pass this role info to the security in ADF in order to authorize the page to be viewed.
    Could you please help and can you point me to any specific link.
    Thanks & Regards
    Sridhar Doki

  • I am trying to add lightbox widget to my site but its not working NEED HELP

    i can create the light box widget as a new page but when i paste the codes into the actual site it will not work and the images will not enlarge
    what or where did i go wrong.  This is all the codes for the site including the lightbox widget. i can use all the help i can get even if some one or anyone
    can show me the corrections i need to fix that would be great i am using dreamweaver cs6 incase you need to know...
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <title>MachoMan Madness</title>
    <map name="11_1x1">
    <area shape="rect" coords="474,138,578,150" href="http://macho-madness.net" alt="">
    <area shape="rect" coords="606,136,712,150" href="mailto:[email protected]" alt="">
    <area shape="rect" coords="737,136,835,152" href="http://daxstudios.net" alt="">
    </map>
    <style type="text/css">
    <!--
    .index{
              margin:0px;
              padding:0px;
              border:0px;
              background-image:url(back.jpg);
              background-repeat:repeat-x;
              background-color: #f5f5f5;
    h1{
              margin:0px;
              padding:15px;
              background-color:#222;
              font-family: Verdana, Geneva, sans-serif;
              font-size: 20px;
              line-height: 25px;
              color: #c8c8c8;
              letter-spacing:-1px;
    h2{
              margin:0px;
              padding:10px;
              background-color:#333;
              font-family: Verdana, Geneva, sans-serif;
              font-size: 14px;
              line-height: 15px;
              color: #c8c8c8;
              letter-spacing:-1px;
    p {
              padding:3px;
              padding-top:0px;
              font-family: Verdana, Geneva, sans-serif;
              font-size: 13px;
              line-height: 20px;
              color: #777;
              text-align:justify;
    b, strong {color: #7fa0af;}
    em {color: #555;}
    u {color: #555;}
    a:link, a:visited, a:active {text-decoration:none;color: #ada295;}
    a:hover {text-decoration:none;color:#c8c8c8;}
    -->
    </style>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>Lightbox Gallery : grey</title>
    <script type='text/javascript' src='scripts/jquery.js'></script>
    <script type='text/javascript' src='scripts/lightbox.js'></script>
    <link type='text/css' href='css/lightbox.css' rel='stylesheet'/>
    <link type='text/css' href='css/sample_lightbox_layout.css' rel='stylesheet'/>
    <style type="text/css">
    .lbGallery {
                                  /*gallery container settings*/
                                  background-color: #666666;
                                  padding-left: 20px; 
                                  padding-top: 20px; 
                                  padding-right: 20px; 
                                  padding-bottom: 20px; 
                                  width: 540px;
                                  height: auto;
                                  text-align:left;
                                  box-shadow: 10px 10px 10px black;
                                  border-radius: 20px;
                                  margin-left:auto;
                                  margin-right:auto;
                        .lbGallery ul { list-style: none; margin:0;padding:0; }
                        .lbGallery ul li { display: inline;margin:0;padding:0; }
                        .lbGallery ul li a{text-decoration:none;}
                        .lbGallery ul li a img {
                                  /*border color, width and margin for the images*/
                                  border-color: #ffffff;
                                  border-left-width: 10px;
                                  border-top-width: 10px;
                                  border-right-width: 10px;
                                  border-bottom-width: 20px;
                                  margin-left:5px;
                                  margin-right:5px;
                                  margin-top:5px;
                                  margin-bottom:5px:
                        .lbGallery ul li a:hover img {
                                  /*background color on hover*/
                                  border-color: #cccccc;
                                  border-left-width: 10px;
                                  border-top-width: 10px;
                                  border-right-width: 10px;
                                  border-bottom-width: 20px;
                        #lightbox-container-image-box {
                                  border-top: 2px solid #ffffff;
                                  border-right: 2px solid #ffffff;
                                  border-bottom: 2px solid #ffffff;
                                  border-left: 2px solid #ffffff;
                        #lightbox-container-image-data-box {
                                  border-top: 0px;
                                  border-right: 2px solid #ffffff;
                                  border-bottom: 2px solid #ffffff;
                                  border-left: 2px solid #ffffff;
    </style>
    </head>
    <body class="index">
    <!-- Begin Table -->
    <table border="0" cellpadding="0" cellspacing="0" width="909" align="center">
    <tr>
    <td rowspan="1" colspan="3" width="909" height="166">
              <img name="a10" src="11_1x1.jpg" usemap="#11_1x1"  width="909" height="166" border="0" alt="" /></td>
    </tr>
    <tr>
    <td rowspan="1" colspan="1" width="54" height="320">
              <img name="a11" src="11_2x1.jpg" width="54" height="320" border="0" alt="" /></td>
    <td rowspan="1" colspan="1" width="796" height="320" background="11_2x2.jpg">
              <link rel="stylesheet" type="text/css" href="slides/style.css" />
              <style type="text/css">a#vlb{display:none}</style>
              <script type="text/javascript" src="slides/jquery.js"></script>
              <script type="text/javascript" src="slides/slider.js"></script>
              <div id="wowslider-container1">
              <div class="ws_images">
    <span><img src="slides/9.jpg" alt="" title="" id="wows0"/></span>
    <span><img src="slides/2.jpg" alt="" title="" id="wows1"/></span>
    <span><img src="slides/3.jpg" alt="" title="" id="wows2"/></span>
    <span><img src="slides/4.jpg" alt="" title="" id="wows3"/></span>
    <span><img src="slides/5.jpg" alt="" title="" id="wows4"/></span>
    <span><img src="slides/6.jpg" alt="" title="" id="wows5"/></span>
    <span><img src="slides/7.jpg" alt="" title="" id="wows6"/></span>
    <span><img src="slides/8.jpg" alt="" title="" id="wows7"/></span>
    <span><img src="slides/1.jpg" alt="" title="" id="wows8"/></span>
    </div>
    <div class="ws_bullets"><div>
    <a href="#wows0" title="">1</a>
    <a href="#wows1" title="">2</a>
    <a href="#wows2" title="">3</a>
    <a href="#wows3" title="">4</a>
    <a href="#wows4" title="">5</a>
    <a href="#wows5" title="">6</a>
    <a href="#wows6" title="">7</a>
    <a href="#wows7" title="">8</a>
    <a href="#wows8" title="">9</a>
    </div></div></div></div>
              <script type="text/javascript" src="slides/script.js"></script></td>
    <td rowspan="1" colspan="1" width="59" height="320">
              <img name="a13" src="11_2x3.jpg" width="59" height="320" border="0" alt="" /></td>
    </tr>
    <tr>
    <td rowspan="1" colspan="3" width="909" height="63">
              <img name="a14" src="11_3x1.jpg" width="909" height="63" border="0" alt="" /></td>
    </tr>
    </table>
    <!-- End Table -->
    <table width="840" border="0" cellspacing="0" cellpadding="0" align="center">
      <tr>
       <td class="mainlink">
    <center>
    <!--drop down menu start HTML-->
    <link rel="stylesheet" type="text/css" href="ddlevelsfiles/ddlevelsmenu-base.css" />
    <link rel="stylesheet" type="text/css" href="ddlevelsfiles/ddlevelsmenu-topbar.css" />
    <link rel="stylesheet" type="text/css" href="ddlevelsfiles/ddlevelsmenu-sidebar.css" />
    <script type="text/javascript" src="ddlevelsfiles/ddlevelsmenu.js"></script>
    <div id="ddtopmenubar" class="mattblackmenu">
    <ul>
    <li><a target=main href="index.html">Home</a></li>
    <li><a target=main href="#" rel="ddsubmenu2">Biography</a></li>
    <li><a target=main href="#" rel="ddsubmenu3">To Be Lead</a></li>
    <li><a target=main href="#" rel="ddsubmenu4">Gallery</a></li>
    <li><a target=main href="#">Videos</a></li>
    <li><a target=main href="#">Memorial Page</a></li>
    <li><a target=main href="#">Wallpaper</a></li>
    <li><a target=main href="#">Shop</a></li>
    <li><a target=main href="#">Blog</a></li>
    <li><a target=main href="#">Join Us</a></li>
    <li><a target=main href="#">Contact</a></li>
    </ul>
    </div>
    <script type="text/javascript">
    ddlevelsmenu.setup("ddtopmenubar", "topbar") //ddlevelsmenu.setup("mainmenuid", "topbar|sidebar")
    </script>
    <!--Biography HTML-->
    <ul id="ddsubmenu2" class="ddsubmenustyle">
    <li><a target=main href="randy savage bio.html">Randy Savage Bio</a></li>
    <li><a target=main href="Randy facts 101.html">Randy's Facts 101</a></li>
    <li><a target=main href="his early career.html">His Early Career</a></li>
    <li><a target=main href="Randys career in wwf.html">Randy's Career in the WWF</a></li>
    <li><a target=main href="randys career wcw.html">Randy's Career in WCW</a></li>
    <li><a target=main href="#">The Mega Powers </a>
      <ul>
      <li><a target=main href="mega powers bio.html">Mega powers Bio</a></li>
      <li><a target=main href="mega powers facts 101.html">Mega Powers Facts 101</a></li>
      </ul>
    </li>
    <li><a target=main href="pm from randy.html">PM to fans & Elizabeth</a></li>
    <li><a target=main href="#">Randy's Radio interview</a></li>
    <li><a target=main href="#">His Death</a></li>
    </ul>
    <!--To be Lead HTML-->
    <ul id="ddsubmenu3" class="ddsubmenustyle">
    <li><a target=main href="#">Elizabeth Hulette</a>
      <ul>
      <li><a target=main href="#">Elizabeth Bio</a></li>
      <li><a target=main href="#">Elizabeth Facts 101</a></li>
      <li><a target=main href="#">Her Career in the WWF</a></li>
      <li><a target=main href="#">Her Career in WCW</a></li>
      <li><a target=main href="#">Later Life</a></li>
      <li><a target=main href="#">Farewell to a Princess</a></li>
      <li><a target=main href="#">Elizabeth's Radio Interview</a></li>
      <li><a target=main href="#">Elizabeth Death</a></li>
      </ul>
    </li>
    <li><a target=main href="#">Sherri Martel</a></li>
    <li><a target=main href="#">Gorgeous George</a></li>
    <li><a target=main href="#">Team Madness</a></li>
    </ul>
    <!--Photo Gallery HTML-->
    <ul id="ddsubmenu4" class="ddsubmenustyle">
    <li><a target=main href="#">Early Years</a></li>
    <li><a target=main href="#">ICW Gallery</a></li>
    <li><a target=main href="#">WWF Gallery</a></li>
    <li><a target=main href="#">WCW Gallery</a></li>
    <li><a target=main href="#">NWO Gallery</a></li>
    </ul>
    <!--drop down menu end HTML-->
    </center>
    </td>
      </tr>
    </table>
    <br><Br>
    <table width="840" border="0" cellspacing="0" cellpadding="0" align="center">
      <tr>
        <td>
        <!-- Start Page Content-->
        <h1>Early Years Gallery</h1>
    <div id="gallery" class="lbGallery">
                                  <ul>
                                            <li>
                                                      <a href="images/images (11).jpg" title=""><img src="images/images (11)_thumb.jpg" width="72" height="72" alt="Flower" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/images (16).jpg" title=""><img src="images/images (16)_thumb.jpg" width="72" height="72" alt="Tree" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/images (17).jpg" title=""><img src="images/images (17)_thumb.jpg" width="72" height="72" alt="" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/images (18).jpg" title=""><img src="images/images (18)_thumb.jpg" width="72" height="72" alt="" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/images (19).jpg" title=""><img src="images/images (19)_thumb.jpg" width="72" height="72" alt="" /></a>
                                            </li>
                    <li>
                                                      <a href="images/images (20).jpg" title=""><img src="images/images (20)_thumb.jpg" width="72" height="72" alt="Flower" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/images (22).jpg" title=""><img src="images/images (22)_thumb.jpg" width="72" height="72" alt="Tree" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/images (23).jpg" title=""><img src="images/images (23)_thumb.jpg" width="72" height="72" alt="" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/images (25).jpg" title=""><img src="images/images (25)_thumb.jpg" width="72" height="72" alt="" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/images (27).jpg" title=""><img src="images/images (27)_thumb.jpg" width="72" height="72" alt="" /></a>
                                            </li>
                    <li>
                                                      <a href="images/images (29).jpg" title=""><img src="images/images (29)_thumb.jpg" width="72" height="72" alt="Flower" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/images (30).jpg" title=""><img src="images/images (30)_thumb.jpg" width="72" height="72" alt="Tree" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/images (31).jpg" title=""><img src="images/images (31)_thumb.jpg" width="72" height="72" alt="" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/images (32).jpg" title=""><img src="images/images (32)_thumb.jpg" width="72" height="72" alt="" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/images.jpg" title=""><img src="images/images_thumb.jpg" width="72" height="72" alt="" /></a>
                                            </li>
                    <li>
      </ul>
                </div>
    <script type="text/javascript">
    $(function(){
                                  $('#gallery a').lightBox({
                                            imageLoading:                              'images/lightbox/lightbox-ico-loading.gif',                    // (string) Path and the name of the loading icon
                                            imageBtnPrev:                              'images/lightbox/lightbox-btn-prev.gif',                              // (string) Path and the name of the prev button image
                                            imageBtnNext:                              'images/lightbox/lightbox-btn-next.gif',                              // (string) Path and the name of the next button image
                                            imageBtnClose:                              'images/lightbox/lightbox-btn-close.gif',                    // (string) Path and the name of the close btn
                                            imageBlank:                                        'images/lightbox/lightbox-blank.gif',                              // (string) Path and the name of a blank image (one pixel)
                                            fixedNavigation:                    true,                    // (boolean) Boolean that informs if the navigation (next and prev button) will be fixed or not in the interface.
                                            containerResizeSpeed:          400,                               // Specify the resize duration of container image. These number are miliseconds. 400 is default.
                                            overlayBgColor:                     "#cccccc",                    // (string) Background color to overlay; inform a hexadecimal value like: #RRGGBB. Where RR, GG, and BB are the hexadecimal values for the red, green, and blue values of the color.
                                            overlayOpacity:                              .6,                    // (integer) Opacity value to overlay; inform: 0.X. Where X are number from 0 to 9
                                            txtImage:                                        'Image',                                        //Default text of image
                                            txtOf:                                                  'of'
    </script>
        <div align="left"></div>
    </p>
        <!-- End Page Content-->
        </td>
      </tr>
    </table>
    <br><br><bR>
    <div style="background-color:#222;width:100%;"><bR>
    <table width="870" border="0" cellspacing="10" cellpadding="0" align="center">
      <tr>
       <td width="35%" valign="top">
    <h2>Site Disclaimer</h2>
    <p><strong>Macho-madness</strong> is in no way in contact with World Wrestling Entertainment. All photos are copyright to World Wrestling Entertainment or their respective owners and is being used under the fair copyright of Law 107.</p>
    <p><font color="#000000">©macho-madness.net All right's Reserved.</font> </p>
       </div></td>
        <td width="35%" valign="top">
    <h2>Offical Links</h2>
    <div align="center">
      <table width="269" border="0">
        <tr>
          <td width="94"><div align="center"><a href="https://www.facebook.com/TheMadnessWillNeverBeForgotten"><img src="fb logo.jpg" width="94" height="87" alt="fb logo" longdesc="http://www.macho-madness.net" /></a></div></td>
          <td width="76"><div align="center"><a href="https://twitter.com/machomadnessnet"><img src="twitter logo.jpg" width="76" height="91" alt="twitter logo" longdesc="http://www.macho-madness.net" /></a></div></td>
          <td width="85"><div align="center"><a href="http://pinterest.com/machomadness/"><img src="pinterest logo.jpg" width="79" height="87" alt="pin logo" longdesc="http://www.macho-madness.net" /></a></div></td>
          </tr>
        <tr>
          <td><div align="center"><a href="https://vimeo.com/user13202435"><img src="vimeo.jpg" width="98" height="90" alt="vimeo" longdesc="http://www.macho-madness.net" /></a></div></td>
          <td><div align="center"><a href="http://www.youtube.com/user/mich0679"><img src="youtube logo.jpg" width="83" height="95" alt="youtube logo" longdesc="http://www.macho-madness.net" /></a></div></td>
          <td><div align="center"></div></td>
          </tr>
      </table>
    </div>
    </div></td><td width="29%" valign="top">
    <h2>About Us</h2>
    <p>Macho-madness.net is the  place for all things Randy Savage and is dedicated to the &quot;Memories of Randy Savage.&quot;  We hope you'll take some time to look around and relive some classic moment's from Randy's long time career, and Enjoy!</p>
    </td></tr></table></div>
    </body>
    </html>

    i have done all repairs you have adviced but there are still 32 errors and 3 warnings.
    <!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>
    <title>MachoMan Madness</title>
    </head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <script type='text/javascript' src='scripts/jquery.js'></script>
    <script type='text/javascript' src='scripts/lightbox.js'></script>
    <link type='text/css' href='css/lightbox.css' rel='stylesheet'/>
    <link type='text/css' href='css/sample_lightbox_layout.css' rel='stylesheet'/>
    <style type="text/css">
    .lbGallery {
                                  /*gallery container settings*/
                                  background-color: #666666;
                                  padding-left: 20px; 
                                  padding-top: 20px; 
                                  padding-right: 20px; 
                                  padding-bottom: 20px; 
                                  width: 540px;
                                  height: auto;
                                  text-align:left;
                                  box-shadow: 10px 10px 10px black;
                                  border-radius: 20px;
                                  margin-left:auto;
                                  margin-right:auto;
                        .lbGallery ul { list-style: none; margin:0;padding:0; }
                        .lbGallery ul li { display: inline;margin:0;padding:0; }
                        .lbGallery ul li a{text-decoration:none;}
                        .lbGallery ul li a img {
                                  /*border color, width and margin for the images*/
                                  border-color: #ffffff;
                                  border-left-width: 10px;
                                  border-top-width: 10px;
                                  border-right-width: 10px;
                                  border-bottom-width: 20px;
                                  margin-left:5px;
                                  margin-right:5px;
                                  margin-top:5px;
                                  margin-bottom:5px:
                        .lbGallery ul li a:hover img {
                                  /*background color on hover*/
                                  border-color: #cccccc;
                                  border-left-width: 10px;
                                  border-top-width: 10px;
                                  border-right-width: 10px;
                                  border-bottom-width: 20px;
                        #lightbox-container-image-box {
                                  border-top: 2px solid #ffffff;
                                  border-right: 2px solid #ffffff;
                                  border-bottom: 2px solid #ffffff;
                                  border-left: 2px solid #ffffff;
                        #lightbox-container-image-data-box {
                                  border-top: 0px;
                                  border-right: 2px solid #ffffff;
                                  border-bottom: 2px solid #ffffff;
                                  border-left: 2px solid #ffffff;
    </style>
    <style type="text/css">
    <!--
    .index{
              margin:0px;
              padding:0px;
              border:0px;
              background-image:url(back.jpg);
              background-repeat:repeat-x;
              background-color: #f5f5f5;
    h1{
              margin:0px;
              padding:15px;
              background-color:#222;
              font-family: Verdana, Geneva, sans-serif;
              font-size: 20px;
              line-height: 25px;
              color: #c8c8c8;
              letter-spacing:-1px;
    h2{
              margin:0px;
              padding:10px;
              background-color:#333;
              font-family: Verdana, Geneva, sans-serif;
              font-size: 14px;
              line-height: 15px;
              color: #c8c8c8;
              letter-spacing:-1px;
    p {
              padding:3px;
              padding-top:0px;
              font-family: Verdana, Geneva, sans-serif;
              font-size: 13px;
              line-height: 20px;
              color: #777;
              text-align:justify;
    b, strong {color: #7fa0af;}
    em {color: #555;}
    u {color: #555;}
    a:link, a:visited, a:active {text-decoration:none;color: #ada295;}
    a:hover {text-decoration:none;color:#c8c8c8;}
    -->
    </style></head>
    <body class="index">
    <!-- Begin Table -->
    <table border="0" cellpadding="0" cellspacing="0" width="909" align="center">
    <tr>
    <td rowspan="1" colspan="3" width="909" height="166">
              <img name="a10" src="11_1x1.jpg" usemap="#11_1x1"  width="909" height="166" border="0" alt="" /></td>
    </tr>
    <tr>
    <td rowspan="1" colspan="1" width="54" height="320">
              <img name="a11" src="11_2x1.jpg" width="54" height="320" border="0" alt="" /></td>
    <td rowspan="1" colspan="1" width="796" height="320" background="11_2x2.jpg">
              <link rel="stylesheet" type="text/css" href="slides/style.css" />
              <style type="text/css">a#vlb{display:none}</style>
              <script type="text/javascript" src="slides/jquery.js"></script>
              <script type="text/javascript" src="slides/slider.js"></script>
              <div id="wowslider-container1">
              <div class="ws_images">
    <span><img src="slides/9.jpg" alt="" title="" id="wows0"/></span>
    <span><img src="slides/2.jpg" alt="" title="" id="wows1"/></span>
    <span><img src="slides/3.jpg" alt="" title="" id="wows2"/></span>
    <span><img src="slides/4.jpg" alt="" title="" id="wows3"/></span>
    <span><img src="slides/5.jpg" alt="" title="" id="wows4"/></span>
    <span><img src="slides/6.jpg" alt="" title="" id="wows5"/></span>
    <span><img src="slides/7.jpg" alt="" title="" id="wows6"/></span>
    <span><img src="slides/8.jpg" alt="" title="" id="wows7"/></span>
    <span><img src="slides/1.jpg" alt="" title="" id="wows8"/></span>
    </div>
    <div class="ws_bullets"><div>
    <a href="#wows0" title="">1</a>
    <a href="#wows1" title="">2</a>
    <a href="#wows2" title="">3</a>
    <a href="#wows3" title="">4</a>
    <a href="#wows4" title="">5</a>
    <a href="#wows5" title="">6</a>
    <a href="#wows6" title="">7</a>
    <a href="#wows7" title="">8</a>
    <a href="#wows8" title="">9</a>
    </div></div></div></div>
              <script type="text/javascript" src="slides/script.js"></script></td>
    <td rowspan="1" colspan="1" width="59" height="320">
              <img name="a13" src="11_2x3.jpg" width="59" height="320" border="0" alt="" /></td>
    </tr>
    <tr>
    <td rowspan="1" colspan="3" width="909" height="63">
              <img name="a14" src="11_3x1.jpg" width="909" height="63" border="0" alt="" /></td>
    </tr>
    </table>
    <!-- End Table -->
    <table width="840" border="0" cellspacing="0" cellpadding="0" align="center">
      <tr>
       <td class="mainlink">
    <center>
    <!--drop down menu start HTML-->
    <link rel="stylesheet" type="text/css" href="ddlevelsfiles/ddlevelsmenu-base.css" />
    <link rel="stylesheet" type="text/css" href="ddlevelsfiles/ddlevelsmenu-topbar.css" />
    <link rel="stylesheet" type="text/css" href="ddlevelsfiles/ddlevelsmenu-sidebar.css" />
    <script type="text/javascript" src="ddlevelsfiles/ddlevelsmenu.js"></script>
    <div id="ddtopmenubar" class="mattblackmenu">
    <ul>
    <li><a target="main" href="index.html">Home</a></li>
    <li><a target="main" href="#" rel="ddsubmenu2">Biography</a></li>
    <li><a target="main" href="#" rel="ddsubmenu3">To Be Lead</a></li>
    <li><a target="main" href="#" rel="ddsubmenu4">Gallery</a></li>
    <li><a target="main" href="#">Videos</a></li>
    <li><a target="main" href="#">Memorial Page</a></li>
    <li><a target="main" href="#">Wallpaper</a></li>
    <li><a target="main" href="#">Blog</a></li>
    <li><a target="main" href="#">Join Us</a></li>
    <li><a target="main" href="#">Contact</a></li>
    </ul>
    </div>
    <script type="text/javascript">
    ddlevelsmenu.setup("ddtopmenubar", "topbar") //ddlevelsmenu.setup("mainmenuid", "topbar|sidebar")
    </script>
    <!--Biography HTML-->
    <ul id="ddsubmenu2" class="ddsubmenustyle">
    <li><a target="main" href="randy savage bio.html">Randy Savage Bio</a></li>
    <li><a target="main" href="Randy facts 101.html">Randy's Facts 101</a></li>
    <li><a target="main" href="his early career.html">His Early Career</a></li>
    <li><a target="main" href="Randys career in wwf.html">Randy's Career in the WWF</a></li>
    <li><a target="main" href="randys career wcw.html">Randy's Career in WCW</a></li>
    <li><a target="main" href="#">The Mega Powers </a>
      <ul>
      <li><a target="main" href="mega powers bio.html">Mega powers Bio</a></li>
      <li><a target="main" href="mega powers facts 101.html">Mega Powers Facts 101</a></li>
      </ul>
    </li>
    <li><a target="main" href="pm from randy.html">PM to fans & Elizabeth</a></li>
    <li><a target="main" href="#">Randy's Radio interview</a></li>
    <li><a target="main" href="#">His Death</a></li>
    </ul>
    <!--To be Lead HTML-->
    <ul id="ddsubmenu3" class="ddsubmenustyle">
    <li><a target="main" href="#">Elizabeth Hulette</a>
      <ul>
      <li><a target="main" href="#">Elizabeth Bio</a></li>
      <li><a target="main" href="#">Elizabeth Facts 101</a></li>
      <li><a target="main" href="#">Her Career in the WWF</a></li>
      <li><a target="main" href="#">Her Career in WCW</a></li>
      <li><a target="main" href="#">Later Life</a></li>
      <li><a target="main" href="#">Farewell to a Princess</a></li>
      <li><a target="main" href="#">Elizabeth's Radio Interview</a></li>
      <li><a target="main" href="#">Elizabeth Death</a></li>
      </ul>
    </li>
    <li><a target="main" href="#">Sherri Martel</a></li>
    <li><a target="main" href="#">Gorgeous George</a></li>
    <li><a target="main" href="#">Team Madness</a></li>
    </ul>
    <!--Photo Gallery HTML-->
    <ul id="ddsubmenu4" class="ddsubmenustyle">
    <li><a target="main" href="#">Early Years</a></li>
    <li><a target="main" href="#">ICW Gallery</a></li>
    <li><a target="main" href="#">WWF Gallery</a></li>
    <li><a target="main" href="#">WCW Gallery</a></li>
    <li><a target="main" href="#">NWO Gallery</a></li>
    </ul>
    <!--drop down menu end HTML-->
    </center>
    </td>
      </tr>
    </table>
    <br/><br/>
    <table width="840" border="0" cellspacing="0" cellpadding="0" align="center">
      <tr>
        <td>
        <!-- Start Page Content-->
    </head>
    <body>
        <map name="11_1x1" id="logo_11_1x1">
    <area shape="rect" coords="474,138,578,150" href="http://macho-madness.net" alt=""/>
    <area shape="rect" coords="606,136,712,150" href="mailto:[email protected]" alt=""/>
    <area shape="rect" coords="737,136,835,152" href="http://daxstudios.net" alt=""/>
    </map>
        <h1>Early Years Gallery</h1>
    <div id="gallery" class="lbGallery">
                                  <ul>
                                            <li>
                                                      <a href="images/11.jpg" title=""><img src="images/11_thumb.jpg" width="72" height="72" alt="Flower" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/16.jpg" title=""><img src="images/16_thumb.jpg" width="72" height="72" alt="Tree" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/17.jpg" title=""><img src="images/17_thumb.jpg" width="72" height="72" alt="" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/18.jpg" title=""><img src="images/18_thumb.jpg" width="72" height="72" alt="" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/19.jpg" title=""><img src="images/19_thumb.jpg" width="72" height="72" alt="" /></a>
                                            </li>
                    <li>
                                                      <a href="images/20.jpg" title=""><img src="images/20_thumb.jpg" width="72" height="72" alt="Flower" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/22.jpg" title=""><img src="images/22_thumb.jpg" width="72" height="72" alt="Tree" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/23.jpg" title=""><img src="images/23_thumb.jpg" width="72" height="72" alt="" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/25.jpg" title=""><img src="images/25_thumb.jpg" width="72" height="72" alt="" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/27.jpg" title=""><img src="images/27_thumb.jpg" width="72" height="72" alt="" /></a>
                                            </li>
                    <li>
                                                      <a href="images/29.jpg" title=""><img src="images/29_thumb.jpg" width="72" height="72" alt="Flower" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/30.jpg" title=""><img src="images/30_thumb.jpg" width="72" height="72" alt="Tree" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/31.jpg" title=""><img src="images/31_thumb.jpg" width="72" height="72" alt="" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/32.jpg" title=""><img src="images/32_thumb.jpg" width="72" height="72" alt="" /></a>
                                            </li>
                                            <li>
                                                      <a href="images/images.jpg" title=""><img src="images/images_thumb.jpg" width="72" height="72" alt="" /></a>
                                            </li>
                    <li>
      </ul>
    </div>
    <script type="text/javascript">
    $(function(){
                                  $('#gallery a').lightBox({
                                            imageLoading:                              'images/lightbox/lightbox-ico-loading.gif',                    // (string) Path and the name of the loading icon
                                            imageBtnPrev:                              'images/lightbox/lightbox-btn-prev.gif',                              // (string) Path and the name of the prev button image
                                            imageBtnNext:                              'images/lightbox/lightbox-btn-next.gif',                              // (string) Path and the name of the next button image
                                            imageBtnClose:                              'images/lightbox/lightbox-btn-close.gif',                    // (string) Path and the name of the close btn
                                            imageBlank:                                        'images/lightbox/lightbox-blank.gif',                              // (string) Path and the name of a blank image (one pixel)
                                            fixedNavigation:                    true,                    // (boolean) Boolean that informs if the navigation (next and prev button) will be fixed or not in the interface.
                                            containerResizeSpeed:          400,                               // Specify the resize duration of container image. These number are miliseconds. 400 is default.
                                            overlayBgColor:                     "#cccccc",                    // (string) Background color to overlay; inform a hexadecimal value like: #RRGGBB. Where RR, GG, and BB are the hexadecimal values for the red, green, and blue values of the color.
                                            overlayOpacity:                              .6,                    // (integer) Opacity value to overlay; inform: 0.X. Where X are number from 0 to 9
                                            txtImage:                                        'Image',                                        //Default text of image
                                            txtOf:                                                  'of'
    </script>
        <div align="left"></div>
    </p>
        <!-- End Page Content-->
        </td>
      </tr>
    </table>
    <br/><br/><br/>
    <div style="background-color:#222;width:100%;"><br/>
    <table width="870" border="0" cellspacing="10" cellpadding="0" align="center">
      <tr>
       <td width="35%" valign="top">
    <h2>Site Disclaimer</h2>
    <p><strong>Macho-madness</strong> is in no way in contact with World Wrestling Entertainment. All photos are copyright to World Wrestling Entertainment or their respective owners and is being used under the fair copyright of Law 107.</p>
    <p><font color="#000000">&copy;macho-madness.net All right's Reserved.</font> </p>
       </div></td>
        <td width="35%" valign="top">
    <h2>Offical Links</h2>
    <div align="center">
      <table width="269" border="0">
        <tr>
          <td width="94"><div align="center"><a href="https://www.facebook.com/TheMadnessWillNeverBeForgotten"><img src="fb logo.jpg" width="94" height="87" alt="fb logo" longdesc="http://www.macho-madness.net" /></a></div></td>
          <td width="76"><div align="center"><a href="https://twitter.com/machomadnessnet"><img src="twitter logo.jpg" width="76" height="91" alt="twitter logo" longdesc="http://www.macho-madness.net" /></a></div></td>
          <td width="85"><div align="center"><a href="http://pinterest.com/machomadness/"><img src="pinterest logo.jpg" width="79" height="87" alt="pin logo" longdesc="http://www.macho-madness.net" /></a></div></td>
          </tr>
        <tr>
          <td><div align="center"><a href="https://vimeo.com/user13202435"><img src="vimeo.jpg" width="98" height="90" alt="vimeo" longdesc="http://www.macho-madness.net" /></a></div></td>
          <td><div align="center"><a href="http://www.youtube.com/user/mich0679"><img src="youtube logo.jpg" width="83" height="95" alt="youtube logo" longdesc="http://www.macho-madness.net" /></a></div></td>
          <td><div align="center"></div></td>
          </tr>
      </table>
    </div>
    </div></td><td width="29%" valign="top">
    <h2>About Us</h2>
    <p>Macho-madness.net is the  place for all things Randy Savage and is dedicated to the &quot;Memories of Randy Savage.&quot;  We hope you'll take some time to look around and relive some classic moment's from Randy's long time career, and Enjoy!</p>
    </td></tr></table></div>
    </body>
    </html>

  • Software Update Not Working -- need help!

    Hello everyone. Was wondering if anyone could help me with an annoying problem I've now had for several weeks. My new MacBook Pro purchased in July, 2010 as well as an older iMac both will not update software automatically. In Software Update, updates are set to "daily," however the last time checked is when I did it manually. I've now tried deleting preference files in my user as well as system Library folders for Software Update and even reinstalling OS10.6. However, something must be corrupted in my user profile because it still will not perform checks automatically. They work fine when done manually. If I create a new test user with admin privileges, automatic updates work just fine. That is why I believe something is corrupting it for my specific user (Intego VirusBarrier?? Parallels?? MobileMe??). I've checked all the logs and reports and can't find any clues as to what's going on.
    Anyone have ideas? Please help! Thanks.

    OK. Since the issue is specific to your original user account, you can proceed in two ways. One is to log into your new account, make a list of the preference files (plists) located in /username/Library/Preferences/, including any in the ByHost subfolder, log back into the original account, move everything on that other account's list from the original account's Preferences folder into a newly created folder on the Desktop, log out and back in, and see if the problem goes away. If so, you can copy the ones in the Desktop folder (one at time) back into /Preferences/, restart, and see if the problem returns. If so, you've identified the corrupt/conflicting one. Continue with all of them until isolating the bad ones. That'll save you the trouble of resetting preferences.
    The second way is much more detailed and I'll not burden you with the steps unless the above doesn't fix the issue.

  • Trackpoint does not work after switching from the tablet to laptop mode.

    I use my tablet to run a smartboard. Sometimes when I switch to the tablet mode and back by reversing the display, the trackpoint and mouse keys stop working. The touchpad below it still works. I am running windows 7. I have gone into the control panel, under mouse, and both the trackpoint and touchpad are still both checked. ?? When I restart the functions return.

    Hi Remaxjoe,
    Welcome to Lenovo Community Forums!
    I’m really sorry to hear that trackpoint is not working properly in your Lenovo system.
    I would suggest you to download the Ultranav drivers for your system and install it.
    Below is the link to enter downloads page and install the Ultranav driver.
    •             Support Drivers & Software downloads
    Please click on "QUICK PATH”, enter your system model and select the exact model depending on the MTM number of your device.
    Spoiler (Highlight to read)
    You can refer here for further information.
    Hope this helps!
    Best regards,
    Mithun.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • IEPG Titan tv not working ,Need help please

    I recently installed MSI tv@nywhere Master into a new Dell XPS system, using all the latest drivers, and programs avaliable on MSI's website, i'm happy to say that everything worked well except for the EPG.
       When I click on a program to record, a box opens up asking for an IP address, whether or not I supply the address the project apears in the schedual but the program does not start.
      After the project was supposed to start, if I open MSIPVS a box opens saying that the server is using the program, and I need to change modes to use it???
      I'm stumped. Any help will be welcome.

    It sounds like you've turned on some Universal Access features.
    (The clue was the black line around selected text boxes.)
    If you have volume turned up, you may hear the system voice speaking the text in the black outlined boxes.
    You can turn the various Universal Access features on/off in System Preferences, System, Universal Access.
    It's also possible to enable/disable various keyboard shortcuts in System Preferences, Hardware, Keyboard & Mouse.

  • ALERT code not working, need help.

    Hello Everyone,
         i'm working in forms 10.1.2.0.2 and i have written some code to call an Alert when the user puts in an invalid number, however, the alert isn't poping up and the cursor will not move out of the field.  This is on a post-text script.
    basic:
    declare
      al_button number;
    al_id alert;
    begin
    i select 3 columns from a table based on input by the user.
    if the input is valid, then the form is populated.  This works no problem.
    however, when the following is not true, the cursor will not leave the field, but the alert will not pop up either.
    if v_nsn = nvl(t_rnsn, 0), then
    select the values and put them in the form.
    else  -- this is not working
    al_id := find_alert ('BAD_NSN_ALERT34');
    if Id_null(al_id) then
    message ('THE ALERT NAMED BAD_NSN_ALERT34 DOES NOT EXIST');
    RAISE FORM_TRIGGER_FAILURE;
    else
    al_button := SHOW_ALERT(al_id);
    if al_button = alert_button1 then
         ...DO SOMETHING;
    else al_button := show_alert (al_id);
    if al_button = alert_button2 then
    do something;
    end if;
    end if;
    end if;
    end if;
    end;

    Why are you using a Post-Text-Item trigger instead of a When-Validate-Item trigger?  How is your user leaving the field that this trigger is attached to?  If the user is mouse-clicking to leave the field - the Post-Text-Item trigger will not fire.  Take a look at the "Post-Text-Item trigger Restrictions" listed in the Forms Help system for this and other restrictions on using the Post-Text-Item trigger.
    Craig...

  • Adobe flash player not working- need help urgently

    Hi
    I hope somebody would help me
    I have windows vista home premium, where few months back when I was using the computer it came for a message requesting me to upgrade my adobe flash player to version 10. which I did and its the biggest mistake
    Eversince then I cannot access any videos and the some audios as well.
    where  I visited adobe website and followed the instructions to uninstall the flashplayer and reinstalling,
    but nothing worked so far, hence I'm unable to view y-tube or any other related videos at all.
    I checked the files in c:\windows\system32\macromed\flash and I have only below mentioned two files
    flash10e.ocx
    flashutil10e
    If somebody could help me on it I would truly appreciate it as I need the flash player urgently for my work.
    cheers
    Himali

    Hi Himali,
    Thanks for the info. Following is the information you need to do. Download and SAVE to your Desktop the Adobe Uninstaller: http://kb2.adobe.com/cps/141/tn_14157.html Select the one for Windows.
    Then you will download and SAVE this Installer to your Desktop:
    http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_ax.exe
    After you have done that, then you need to follow these steps.
    1. Disconnect from the Internet
    2. Right click on the Trend Micro icon in your system tray and disable/turn off the Anti-Virus and the Firewall
    3. Check the system tray (that area by the clock) for any icons(applications) that use Flash and disable them.
    4. Go to Tools, and click on Internet Options. Click on the Security Tab and set it to Medium for the Internet Zone.
    5. Close all browsers so you are only looking at your Desktop
    6. Click on the Uninstaller on your Desktop and RUN it. When it is finished, Reboot(restart) your computer. When it is fully
    rebooted, then Reboot again. This is needed to make sure all old Flash files are removed.
    7. Now you will check Trend Micro and the Firewall to make sure it is still disabled. If it isn't, then disable both again.
    8. Click on the Installer on your Desktop and RUN. When finished, Reboot Once.
    9. Check Trend Micro and enable it and the Firewall now.
    10. Re-connect back to the Internet.
    Go here to the Adobe test site: http://www.adobe.com/products/flash/about
    You may want to print these instructions out to make it easier for you to follow. If you have any questions before you start, please ask.
    After you are finished, post back your test results and I will give you some info to check your Flash files.
    Thanks,
    eidnolb

  • Customer Exit not working - need help in diagnosing

    Hi all,
    I need some help in identifying a Customer Exit issue in our QA system. 
    Currently, in Dev I have a customer exit defined and everything works perfectly.  However, the same code which was migrated to QA works fine when testing at the FM level but not when executing at the report level.  I tried inserting a breakpoint and executing the report, however the breakpoint never populates.  There seems to be a communication issue here.  When executing the report the variable does not call the customer exit FM/program. 
    How do you diagnose this problem?  Is this a BASIS issue?
    I tried testing the query in RSRT and I run into the same issue of nothing happening.  I tried deleting the variable and recreating with only the same results. 
    Is there a config or setting that is related to the customer exit functionality within BW?
    Also, when transporting the customer exit code I did not migrate the FM along with the Include.  Is there a proper way to migrate this?
    Thanks,
    DC

    Thanks for your response.
    I did double check the variable name to be exact.  I think the issue maybe related to the project not being activated.  I will update as I diagnose the problem.
    Thanks

  • Time Capsule not working - need help

    Hi guys,
    I just bought a Time Capsule to replace my Linksys E2000. The E2000 was running fine but I wanted a wireless external HD, which the Time Capsule provided.
    So I've set the Time Capsule up with all the same settings for my ISP, which are as follows:
    IP address: 121.73.247.68
    subnet 255.0.0.0
    gateway 121.73.247.1
    dns 203.97.78.43
    203.97.78.44
    After doing all the setup and plugging the ISP internet cable into the WAN port, the Time Capsule light went green.
    The problem is I have no internet connection!
    I can ping the router (10.0.1.1) but that's it. No DNS server response and no web access. I've fiddled around with the settings for ages and have run out of ideas.
    I'm kind of annoyed with Apple - this has definitely not 'just worked'.
    As soon as I plug back in my E2000, everything works fine. So I'm pretty sure it's not a problem with my ISP or the cable modem.
    Anyone have any ideas?

    I found another post on this site (can't locate it now though), but someone else had the same problem and I did something similar to him and I finally got my TC and modem to work together.  I unplugged the power and cable from the modem for about 20 minutes total.  During this time the TC was still powered and plugged in to the modem.  Then before I powered the modem, I unplugged the power for the TC for about 5 minutes, plugged power to TC back, then connected cable on modem followed by power to modem.  It miracously worked after that, I didn't even have to change any settings through AirPort for the TC. 
    I have NO clue why this particular sequence of events worked, but I know I did all of those steps (maybe not in that particular order) and had been unsuccessful.
    The post I read earlier used the following steps - Keep the TC connected to the modem the entire time, unplug power for the TC for 5 minutes, then plug power to TC back.  Unplug power & cable from modem (can't remember if he left it unplugged for a specific time), then connect cable & power for modem.
    The only reason I left my modem disconnected for 20 minutes was because I had read it takes varying amounts of time for the modem to reset.  I don't have a reset button on my modem so that wasn't an option for me and calling the ISP to reset my modem didn't work either - I did that twice on Saturday with no success, but I don't remember if I had the TC still connected?  I tried so many different things over the last 48 hours, but all I know is the steps above worked for me.
    Hope it helps you as well.

  • 4s screen not working need help

    HELP!
         I dropped my phone on its back last night and now the screen does not turn on. there is no physical damage to the exterior. I can still text and recive calls, functions are all normal I just can not see what I am doing. Sound is fine as well I can switch from vibrate to loud I can adjust volume. My screen just stays dark. I think I might cave dissconnected the LCD cable or something. If that is the case I dont know where that cable is.
         If you think there is some other issue please let me know. If you can provide a picture or diagram of where that LCD cable is that would be great so I can go in and re-connect it. thanks

    You wouldn't need to see the screen to backup unless you have a passcode on the device. Is that the case? You should be able to plug the device into the computer with iTunes and just select backup now.

  • AC Adapter suddenly not working, need help.

    I have a similar problem. I live in a house with my parents. My mother has the 4th gen 20GB iPod (no color screen) and I have the 5th Gen 80GB Video iPod. She has iTunes on her computer on one end of the house she uses to keep her iPod updated, I have my own on the other end of the house I use to keep mine updated. We do not mix or use one another's iPod on the others computer. We both use a sepreate iPod AC charger when not in use to keep the iPods charged.
    The last two days I have noticed when I plug in my iPod (80Gb Video) to charge with the AC adapter, it does nothing. No show that it is receiving any power. Same with my mothers iPod (20GB 4th Gen).I went to use my mothers AC adapter and the same thing, nothing. No battery icon or any show that the iPod is receiving power. When plugged into our respective computers, they update just fine, and when updating is complete, they show they are O.K. to eject, and are being charged, although very, very slowly. This is why I have always used the AC adapter to charge my iPod, and my mothers as well. This has worked as it has supposed to until the last few days. Now the only way to charge either iPod is to keep them connected via USB 2.0 to the computer or when driving, we both use a Fm charger/transmitter that plays the iPod over FM radio while charging at the same time. It is the dLo car Fm charger and transmitter I bought in 2004, and it still works without a problem. Both iPods fit in it and have worked flawlessly.
    I have tried to plug my iPod into every outlet in the house, using her AC adapter on mine and vice versa to see if there is any difference. I have reset both iPod's and still get the same result. It acts as if the chargers are not even plugged in. When you plug a AC adapter into a wall socket and then your iPod, it always makes the iPod come on and show it's status. Now it does nothing. It is as if it was not even plugged in. I have no idea why this is happening. The iPods both work and play as normal when turned on, but it is as if two separate AC charges decided to do the same thing at the same exact time, which i find to be more than coincidence. We are both using iTunes 7.1.0.59 and are downloading the new iTunes 7.1.1 as I type this, hoping that this might be the problem or could fix this. I have run McAfee Virus scan on both computer, and bith are up to date and clean. McAfee does not intefere with iTunes or iPod, and has not posed any problems ever with my iPod or iTunes..
    I am hoping someone has had this problem or knows what could be causing it. Any help is appreciated.
    Thank you for your help,
    Brian.

    You need to restore the iPod via iTunes. Try the following to get iTunes to see the iPod so you can restore the iPod
    iTunes: Restoring iOS software
    Try:                                               
    - iOS: Not responding or does not turn on           
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable       
    - Try on another computer                                                       
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar                              

  • CSS Inherit Not Working (Need Help )

    Try as I might, I can't get the border style to inherit. I
    found the below code in published article and tried it.
    Unfortunately, it did not work as stated or as I would have
    predicted. Basically, I can't get border or any other non default
    inherited style to work. When I render the below html the 3rd
    paragraph starting with the words "You can...." do not have a
    border, either does the <a href>. Accoding to the article and
    my understanding of inheritance they should.
    Here is a link to the article.
    Original
    Article
    Any help would be greatly appreciated.
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN">
    <html>
    <head>
    <title>CSS Structure</title>
    <style>
    div
    font-family: Arial;
    color: blue;
    font-size: .9em;
    border: 1px solid black;
    p
    border: inherit;
    a
    border: inherit;
    </style>
    </head>
    <body>
    <p> Information Technology (IT) has been the most
    famous and attractive field in the last 20 years and many students
    choose to study Computer Science and Information System which
    qualify them to work as Programmers, Developers, Database
    Administrators and Network Engineers.</p>
    <div> The <a href="
    http://www.w3.org">W3C website
    </a>
    contains specifications for web standards and it's very
    useful for web designers, developers and software architectures to
    navigate this website. For example, you have the CSS 2.1
    Specifications and the XHTML 1.0 Specifications discussing
    everything from A to Z about the technology<br>
    <p>You can use CSS with markup languages like HTML,
    XHTML and XML. All those markup languages and also CSS has
    Specifications as the <a href="
    http://www.w3.org">W3C
    website</a></p>
    </div>
    </body>
    </html>

    Sorry - I should have said that they don't inherit for
    shorthand borders, at
    least according to E. Meyer, but I can't get any border
    property to inherit
    either, not that I've ever wanted this to happen.....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "jerrythesurfer" <[email protected]> wrote
    in message
    news:[email protected]...
    > Try as I might, I can't get the border style to inherit.
    I found the
    > below
    > code in published article and tried it. Unfortunately,
    it did not work as
    > stated or as I would have predicted. Basically, I can't
    get border or any
    > other non default inherited style to work. When I render
    the below html
    > the 3rd
    > paragraph starting with the words "You can...." do not
    have a border,
    > either
    > does the <a href>. Accoding to the article and my
    understanding of
    > inheritance
    > they should.
    >
    > Here is a link to the article.
    >
    http://www.devarticles.com/c/a/Web-Style-Sheets/Learn-CSS-Introduction-to-Inheri
    > tance-Specificity-and-Cascade/3/
    >
    > Any help would be greatly appreciated.
    >
    > ----
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN">
    > <html>
    > <head>
    > <title>CSS Structure</title>
    > <style>
    > div
    > {
    > font-family: Arial;
    > color: blue;
    > font-size: .9em;
    > border: 1px solid black;
    > }
    > p
    > {
    > border: inherit;
    > }
    > a
    > {
    > border: inherit;
    > }
    >
    > </style>
    > </head>
    > <body>
    > <p> Information Technology (IT) has been the most
    famous and
    > attractive
    > field in the last 20 years and many students choose to
    study Computer
    > Science
    > and Information System which qualify them to work as
    Programmers,
    > Developers,
    > Database Administrators and Network Engineers.</p>
    > <div> The <a href="
    http://www.w3.org">W3C website
    </a>
    > contains specifications for web standards and it's very
    useful for web
    > designers, developers and software architectures to
    navigate this website.
    > For
    > example, you have the CSS 2.1 Specifications and the
    XHTML 1.0
    > Specifications
    > discussing everything from A to Z about the
    technology<br>
    > <p>You can use CSS with markup languages like
    HTML, XHTML and XML. All
    > those markup languages and also CSS has Specifications
    as the <a
    > href="
    http://www.w3.org">W3C
    website</a></p>
    > </div>
    > </body>
    > </html>
    >

Maybe you are looking for

  • VIV for AuC asset error.

    Hi Friends, We have a scenario, 1. PO for asset was made in foreign currency and GRN done. 2. AuC asset settled 3. Now while making the VIV the exhange rate is changed and the system is trying to credit the asset, but as the asset is already settled

  • Is it a way to read Multiple Attachment and send all     - Mail Sender?

    Hi Friends ,                       Can you please tell me how to send multiple Attachment in Mail Sender Adapter  ?                  <b>      I am able to bring Multiple Attachement in Payload .But, Only one attachemen't data is passed to IS.</b>    

  • Problem in executing the adobe form

    Hi, Using the SFP tcode i have createda an interface and a form for that interface. i have to import parameters from vbap table which i have mapped in the form..there is no problem while executing and activating the form... but while i am executing t

  • Video Playback Question??

    Can I use logic to playback video and output it to a projector. What is needed to do this? Video Card? ThanksJE

  • I'm new to illustrator Please HELP!

    I'm new to illustrator and I am following the example directly from the adobe website and I keep getting this error when I am joining paths. The selected objects cannot be joined as they are invalid objects (Compound paths, Closed paths, Text Objects