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

Similar Messages

  • Web.xml not working? help!

    Hi, I am able de deply correctly on tomcat, but on jboss 4 I have this problem:
    When I run my servlet from the browser it says that the resource is not avaible, without any exceptions on the console, it means that couldnt find the servlet to display. But the web.xml is inside the WEB-INF folder and is correctly done, I have reviewed and remaked it several times.
    Any idea of the problem, I am using windows XP.

    No, the port is okay, because in fact jboss is running, but the servlet is not loaded the mesasge on the web page is a message of the jboss. About the code give some time to post it.

  • Weblogic.servlet.reloadCheckSecs in web.xml not working

    Given the following web.xml file:
              <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application
              1.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
              <web-app>
              <context-param>
              <param-name>weblogic.servlet.reloadCheckSecs</param-name>
              <param-value>100</param-value>
              </context-param>
              <servlet>
              <servlet-name>CookieCounter</servlet-name>
              <servlet-class>servlets.CookieCounter</servlet-class>
              </servlet>
              <servlet-mapping>
              <servlet-name>CookieCounter</servlet-name>
              <url-pattern>monster</url-pattern>
              </servlet-mapping>
              <welcome-file-list>
              <welcome-file>hello.html</welcome-file>
              </welcome-file-list>
              <error-page>
              <error-code>404</error-code>
              <location>/error.jsp</location>
              </error-page>
              </web-app>
              It seems the weblogic.servlet.reloadCheckSecs property is not taking effect.
              The
              default value of -1 is always used. I did stop and restart weblogic.
              I also trid to set the servlet classpath in the web.xml file with
              weblogic.servlet.classpath
              property and it did not change the classpath for the servlet. It seems that
              other
              items are working such as adding new servletrs to the web application. Note
              that
              this is the cookie sample application that installes with the beta 2
              download.
              Thanks,
              Dan.
              

    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

  • Mime mapping in web.xml not working for csv/excel

    I am using the weblogic 8.1 app server. I want to serve up some static content
    from an "exploded" web application (dir structure instead of a war file). This
    static content includes html files and csv files that cause the browser to give
    an option to the user to open the file in excel or download to disk. I have inserted
    the following mapping inside web.xml in the exploded directory structure...
    <web-app>
    <mime-mapping>
    <extension>csv</extension>
    <mime-type>application/vnd.ms-excel</mime-type>
    </mime-mapping>
    </web-app>
    I redeployed the "web application". When I try to access a csv file, instead of
    giving me the save/open dialog, the browser displays the ASCII contents of the
    csv in the browser like an HTML file. Am I missing a step? Is the xml above not
    for the functionality that I am trying to implement here?
    Thanks.

    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

  • error-page in web.xml not working

    In my web.xml I have
    <error-page>
    <exception-type>java.lang.NullPointerException</exception-type>
    <location>/error.jsp</location>
    </error-page>
    I checked the page works by doing a /context/error.jsp and
    the page displays fine (it is a simple jsp page).
    I hit a struts action that gives me this in the std output.
    06/29 10:48:24 error
    [1]java.lang.NullPointerException
    at
    com.pearson.gs.cms.business.LoginService.verifyPassword(LoginService.java:232)
    at
    com.pearson.gs.cms.action.LoginAction.performCMSAction(LoginAction.java:92)
    at
    com.pearson.gs.cms.action.BaseCMSAction.execute(BaseCMSAction.java:48)
    at
    org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:419)
    at
    org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:224)
    at
    org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
    at
    org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:259)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
    at
    jrun.servlet.http.WebService.invokeRunnable(WebService.java:172)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    [0]javax.servlet.ServletException
    at
    org.apache.struts.action.RequestProcessor.processException(RequestProcessor.java:523)
    at
    org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:421)
    at
    org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:224)
    at
    org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
    at
    org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:259)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
    at
    jrun.servlet.http.WebService.invokeRunnable(WebService.java:172)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    I get a 500 error page instead of my /error.jsp page.
    I tried adding
    <error-page>
    <error-code>500</error-code>
    <location>/error.jsp</location>
    </error-page>
    but that doesn't work either.
    JRun 4.0
    Updater 6
    JDK 1.4.2
    Struts 1.2.8
    Any ideas what to try?

    a. Override your skeletons error.jsp to forward/redirect to your page.
    or
    b. If you primarily use pageflow portlets Define a shared flow which has an exception handling method and direct it to your page. Reference the shared flow in each of your controllers (i think global.app is deprecated in 10 otherwise you could do this there). this lets you log some additional information, plus gives you the added flexibility of dealing with different exception types
    or
    c. Override the path to error.jsp in your portlets properties (havent tested)
    Note if you are using servlets etc you still need your web.xml java.lang.Exception entry. The reason it doesnt get picked up is because the portal framework is handling the exception
    Edited by: deepshet on Dec 22, 2008 8:12 PM

  • 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>
    >

  • 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>

  • 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

  • Web.xml not working

    Hi
    I have created one application using
    GWT-Ext with RPC call but its working fine in tomcat.
    but in Apache/1.3.39 server
    its not running.I think in web.xml file only i made mistakes.This is my web.xml file
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    <web-app id="WebApp_ID">
         <display-name>MyRpc</display-name>
         <servlet>
         <servlet-name>/MyRpc/MyService</servlet-name>
         <servlet-class>com.ikkoTech.myRpc.server.MyServiceImpl</servlet-class>
         </servlet>
         <servlet-mapping>
         <servlet-name>/MyRpc/MyService</servlet-name>
         <url-pattern>/MyRpc/MyService</url-pattern>
         </servlet-mapping>
         <welcome-file-list>
              <welcome-file>index.html</welcome-file>
              <welcome-file>index.htm</welcome-file>
              <welcome-file>index.jsp</welcome-file>
              <welcome-file>default.html</welcome-file>
              <welcome-file>default.htm</welcome-file>
              <welcome-file>default.jsp</welcome-file>
         </welcome-file-list>
    </web-app>
    Got 404 error with this message
    The requested URL /myrpc//MyRpc/MyService was not found on this
    server.
    Saw this using Firebug
    Please suggest me about this.
    Thanks in Advance

    No, the port is okay, because in fact jboss is running, but the servlet is not loaded the mesasge on the web page is a message of the jboss. About the code give some time to post it.

  • When I sign in told my firefox is out of date. I did try to do upgrade but did not work, need help

    I need help how to get my sign in working. Do I need to upgrade? If so I need to know how to upgrade.
    Thanks for help
    <sub>edit: removed personal information for your protection. (philipp)</sub>

    Please see https://support.mozilla.org/en-US/kb/websites-say-firefox-outdated-or-incompatible#w_firefox-is-showing-the-wrong-user-agent
    If you have Firefox 25.0.1 then your useagent is stuck at the older 3.6.17 version due to the (.NET CLR 3.5.30729) that was added on end at time.
    User Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.17) Gecko/20110420 Firefox/'''3.6.17''' (.NET CLR 3.5.30729)

  • 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...

  • Ipod nano playlist not working need help plz

    my ipod nano playlist not working i'm a runner so i set my songs in the order i want them and for the last week they don't play in that order its random.it just skips around the playlist and is really anoyying. not sure what gen my nano is i got it in novber 2011. would love some help thanks

    iPod Tutorials
    iPod Repair Tutorials
    iTunes & iPod Hints & Tips
    iPod nano Troubleshooting Assistant
    iPod Troubleshooting Assistant

  • 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>+

  • Ip SLA failover config not working need help urgent cisco 2911 K9 router

    Hi,
    I am setting up failover wan for one of my cient and seems everything i have configured correctly but its not working. For track i am using google DNS ip 8.8.8.8 and 8.8.4.4 where if i ping 8.8.8.8 from router it pings but not 8.8.4.4. I I think because 8.8.4.4 no pinging so router does not jump if primary gigabitethernet0/0 down.
    Not sure what i am doing wrong. Please find below config details:
    -------------------------------------------config-----
    username admin privilege 15 password 7 XXXXX
    redundancy
    track 10 ip sla 1 reachability
     delay down 5 up 5
    track 20 ip sla 2 reachability
     delay down 5 up 5
    interface GigabitEthernet0/0
     ip address 122.160.79.18 255.0.0.0
     ip nat outside
     ip virtual-reassembly
     duplex auto
     speed auto
    interface GigabitEthernet0/1
     ip address 182.71.34.71 255.255.255.248
    ip nat outside
     ip virtual-reassembly
     duplex auto
     speed auto
    interface GigabitEthernet0/2
     description $ES_LAN$
     ip address 200.200.201.1 255.255.255.0
     ip nat inside
     ip virtual-reassembly
     duplex auto
     speed auto
    ip forward-protocol nd
    no ip http server
    no ip http secure-server
    ip nat inside source route-map giga0 interface GigabitEthernet0/0 overload
    ip nat inside source route-map giga0 interface GigabitEthernet0/0 overload
    ip route 0.0.0.0 0.0.0.0 GigabitEthernet0/0 track 10
    ip route 0.0.0.0 0.0.0.0 GigabitEthernet0/1 track 20
    ip route 8.8.4.4 255.255.255.255 GigabitEthernet0/1 permanent
    ip route 8.8.8.8 255.255.255.255 GigabitEthernet0/0 permanent
    ip sla 1  
     icmp-echo 8.8.8.8 source-interface GigabitEthernet0/0
     frequency 10
    ip sla schedule 1 life forever start-time now
    ip sla 2  
     icmp-echo 8.8.4.4 source-interface GigabitEthernet0/1
     frequency 10
    ip sla schedule 2 life forever start-time now
    access-list 100 permit ip any any
    access-list 101 permit ip any any
    route-map giga0 permit 10
     match ip address 100
     match interface GigabitEthernet0/0
    route-map giga1 permit 10
     match ip address 101
     match interface GigabitEthernet0/1
    control-plane
    ------------------------------------------config end

    Hello,
    as Richard Burts state correct the nat configuration is not right. But the ICMP echo request for the IP SLA is traffic, which is generated from the router with a source-interface specified. There shouldn't be any NAT operation at all, or? Iam using IP SLA  for two WAN connections too, but I can't recall  ever seen an entry for the icmp operation in the output of sh ip nat trans.
    To me the static route configuration looks wrong too. As far as I remember it's necessary to specify a next-hop address (Subnet/mask via x.x.x.x) on Multiple Access Broadcast Networks like ethernet, otherwise the Subnet appears as directly connected on the routing table. The configuration "ip route subnet mask <outgoing interface> only works correct for p2p links. With the configuration above i would say there is no routing at all possible except for "real" direct attached networks. Vibs said it's possible to reach the google dns 8.8.8.8 but not the second one 8.8.4.4. I verified that 8.8.4.4 usually answers to ICMP echo-request.
    My guess is that the next hop for the gig 0/0 interface has proxy arp enabled but the next hop for the gig0/1 interface hasn't proxy arp turned on.
    kind regards
    Lukasz

  • TACACS not working - Need help

    Hi,
    I have implemented the TACACS in VPN VRF environment but the same is not working, I am not able to route the ACS servers IP's through the VRF-VPN.
    Configuration pasted below
    aaa authentication login default group tacacs+ line
    aaa authentication login no_tacacs line
    aaa authorization exec default group tacacs+ if-authenticated
    aaa authorization commands 0 default group tacacs+ if-authenticated
    aaa authorization commands 1 default group tacacs+ if-authenticated
    aaa authorization commands 15 default group tacacs+ if-authenticated
    aaa accounting exec default start-stop group tacacs+
    aaa accounting commands 0 default start-stop group tacacs+
    aaa accounting commands 1 default start-stop group tacacs+
    aaa accounting commands 15 default start-stop group tacacs+
    aaa accounting network default start-stop group tacacs+
    ip tacacs source-interface VLAN1
    tacacs-server host X.X.X.X
    tacacs-server host 10.10.10.4
    tacacs-server key 7 ####################333
    tacacs-server administration
    aaa group server tacacs+ tacacs1
    server-private 10.10.10.4 key ############
    ip vrf forwarding LAN
    ip tacacs source-interface VLAN1

    Hi sorry for late reply.
    Please find below the logs from the router
    Feb 12 14:10:28.748: AAA/ACCT/CMD(000000B9): free_rec, count 2
    Feb 12 14:10:28.748: AAA/ACCT/CMD(000000B9): Setting session id 283 : db=846968EC
    Feb 12 14:10:28.748: AAA/ACCT(000000B9): Accouting method=tacacs+ (TACACS+)
    Feb 12 14:10:35.450: AAA/BIND(000000BA): Bind i/f
    Feb 12 14:10:35.450: AAA/ACCT/EVENT/(000000BA): CALL START
    Feb 12 14:10:35.450: Getting session id for NET(000000BA) : db=83E3E3B0
    Feb 12 14:10:35.450: AAA/ACCT(00000000): add node, session 284
    Feb 12 14:10:35.450: AAA/ACCT/NET(000000BA): add, count 1
    Feb 12 14:10:35.450: Getting session id for NONE(000000BA) : db=83E3E3B0
    Feb 12 14:10:36.014: AAA/AUTHEN/LOGIN (000000BA): Pick method list 'default'
    Feb 12 14:10:38.749: AAA/ACCT/CMD(000000B9): STOP protocol reply FAIL
    Feb 12 14:10:38.749: AAA/ACCT(000000B9): Accouting method=NOT_SET
    Feb 12 14:10:38.749: AAA/ACCT(000000B9): Send STOP accounting notification to EM successfully
    Feb 12 14:10:38.749: AAA/ACCT/CMD(000000B9): Tried all the methods, osr 0
    Feb 12 14:10:38.749: AAA/ACCT/CMD(000000B9) Record not present
    Feb 12 14:10:38.749: AAA/ACCT/CMD(000000B9) reccnt 2, csr FALSE, osr 0
    Feb 12 14:10:46.011: AAA/AUTHEN/LINE(000000BA): GET_PASSWORD
    Feb 12 14:11:14.326: AAA/AUTHOR: config command authorization not enabled
    Feb 12 14:11:14.326: AAA/ACCT/CMD(000000B9): Pick method list 'default'
    Feb 12 14:11:14.326: AAA/ACCT/SETMLIST(000000B9): Handle 0, mlist 83E2FF8C, Name default
    Feb 12 14:11:14.330: Getting session id for CMD(000000B9) : db=846968EC
    Feb 12 14:11:14.330: AAA/ACCT/CMD(000000B9): add, count 3
    Feb 12 14:11:14.330: AAA/ACCT/EVENT/(000000B9): COMMAND
    Feb 12 14:11:14.330: AAA/ACCT/CMD(000000B9): Queueing record is COMMAND osr 1
    Feb 12 14:11:14.330: AAA/ACCT/CMD(000000B9): free_rec, count 2
    Feb 12 14:11:14.330: AAA/ACCT/CMD(000000B9): Setting session id 285 : db=846968EC
    Feb 12 14:11:14.330: AAA/ACCT(000000B9): Accouting method=tacacs+ (TACACS+)
    Feb 12 14:11:16.642: AAA/ACCT/EXEC(000000BA): Pick method list 'default'
    Feb 12 14:11:16.642: AAA/ACCT/SETMLIST(000000BA): Handle 0, mlist 83E2FEEC, Name default
    Feb 12 14:11:16.642: Getting session id for EXEC(000000BA) : db=83E3E3B0
    Feb 12 14:11:16.642: AAA/ACCT(000000BA): add common node to avl failed
    Feb 12 14:11:16.642: AAA/ACCT/EXEC(000000BA): add, count 2
    Feb 12 14:11:16.642: AAA/ACCT/EVENT/(000000BA): EXEC DOWN
    Feb 12 14:11:16.642: AAA/ACCT/EXEC(000000BA): Accounting record not sent
    Feb 12 14:11:16.642: AAA/ACCT/EXEC(000000BA): free_rec, count 1
    Feb 12 14:11:16.642: AAA/ACCT/EXEC(000000BA) reccnt 1, csr FALSE, osr 0
    Feb 12 14:11:18.425: AAA/AUTHOR: config command authorization not enabled
    Feb 12 14:11:18.425: AAA/ACCT/243(000000B9): Pick method list 'default'
    Feb 12 14:11:18.425: AAA/ACCT/SETMLIST(000000B9): Handle 0, mlist 83144FF8, Name default
    Feb 12 14:11:18.425: Getting session id for CMD(000000B9) : db=846968EC
    Feb 12 14:11:18.425: AAA/ACCT/CMD(000000B9): add, count 3
    Feb 12 14:11:18.425: AAA/ACCT/EVENT/(000000B9): COMMAND
    Feb 12 14:11:18.425: AAA/ACCT/CMD(000000B9): Queueing record is COMMAND osr 2
    Feb 12 14:11:18.425: AAA/ACCT/CMD(000000B9): free_rec, count 2
    Feb 12 14:11:18.425: AAA/ACCT/CMD(000000B9): Setting session id 286 : db=846968EC
    Feb 12 14:11:18.429: AAA/ACCT(000000B9): Accouting method=tacacs+ (TACACS+)
    Feb 12 14:11:18.649: AAA/ACCT/EVENT/(000000BA): CALL STOP
    Feb 12 14:11:18.649: AAA/ACCT/CALL STOP(000000BA): Sending stop requests
    Feb 12 14:11:18.649: AAA/ACCT(000000BA): Send all stops
    Feb 12 14:11:18.649: AAA/ACCT/NET(000000BA): STOP
    Feb 12 14:11:18.649: AAA/ACCT/NET(000000BA): Method list not found
    Feb 12 14:11:18.649: AAA/ACCT(000000BA): del node, session 284
    Feb 12 14:11:18.649: AAA/ACCT/NET(000000BA): free_rec, count 0
    Feb 12 14:11:18.649: AAA/ACCT/NET(000000BA) reccnt 0, csr TRUE, osr 0
    Feb 12 14:11:18.649: AAA/ACCT/NET(000000BA): Last rec in db, intf not enqueued

Maybe you are looking for

  • How to diable the default option of report-based total (when applicable)

    Hi, Anybody know how to diable the default option of report-based total (when applicable)? By default this aggregation rule option is checked. There should be some configuration tag in instanceconfig.xml or somewhere else, such as <ReportAggregateEna

  • JOptionPane and not have a valid parent error(Runtime)

    I have the following code in my program ; it compiles but gives me a Runtime error : java.lang.RuntimeException: JOptionPane: parentComponent does not have a valid parent Here is the code : JOptionPane.showInternalOptionDialo(null, "Please  select a

  • Does Core 2 Duo Processors equal speed of PPC dual processors?

    Greetings Apple Discussions: Is the (2.4GHz Intel Core 2 Duo Processor) In the 17" MacBook Pro, relatively as fast as a (dual 1.2GHz processor) of a G4 PPC in a Quicksilver. By relatively I means is the (2.4GHz Intel Core 2 Duo Processor) a dual 1.2G

  • External drive specs

    I have shot some video on DV Cam format. I need to send it all to a friend who will edit it on his FCP system. Here's my plan: digitize the video through iMovie at the highest quality through a firewire, saving it to an external drive and send him th

  • Actual work hours shown as Overtime after time evaluation

    User has entered 8 work hours but out of it 6.5 hrs a are shown as Overtime after time evaluation. Please help