Redirect based on user_level or user_id or session

I am on a mission to find the
technote or adobe
support file that explains how to redirect based on
user_level or user_id or session
I have searched using:
"redirect"
"user level"
and even:
"redirect based on user"
I know it exists (
I read it) I just can't find it, Please can someone help me
find it.
Cheers

MM_redirectLoginSuccess = $row_rsUser['destination_page'];
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"forumsza" <[email protected]> wrote in
message
news:gpiimv$pma$[email protected]..
> Based on this article: (which only supports, ASP and
JSP)
>
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15881&sliceId=1
>
> Do I just add my PHP like this:
>
> MM_redirectLoginSuccess =
> CStr(MM_rsUser.Fields.Item("destination_page").Value)
>
> The same as ASP?
>

Similar Messages

  • HTTP Redirect based upon SRC IP Address

    Is there a way to perform an http redirect based upon user's source IP address on the CSM/GSS environment?
    Logic:
    IF < src ip address is within exception list > THEN
    http redirect to URL2
    ELSE
    http to URL1
    END

    Is there a version of this solution (redirect by client source IP) for the CSS?
    I'm attempting to redirect clients from a few specific networks (source IP's) to the VIP of a second CSS using a service-type redirect and "prefer " ACL commands:
    clause 10 permit any 1.1.1.0 255.255.252.0 destination content owner/content-rule prefer service-type-redirect
    There is an "any any destination any" last clause in the ACL for the remaining source IPs. The ACL is applied to the incoming circuits leading to the webservers.
    A show of the ACL's shows all responses - no matter the client source IP - being caught by the permit any clause at the end of the ACL.
    Extra points: this is a one-arm design with source group destination applied (to return server traffic to the CSS) and traffic is https with SSL terminating at the servers (no SSL module). Content rules are set to be sticky for srcip. Both CSSs are answering content-based DNS queries for the same URL with their local VIP address (but controlling which DNS server clients query isn't readily possible, so static proximity using DNS didn't provide the answer).
    Each CSS is in a different data center: the idea is to keep traffic local by redirecting non-local traffic to its "local" (the other) CSS if services are active (and to keep traffic on the first CSS if the services at the redirected-to CSS are down).
    Don't want too much, do I? ;-)
    Thanks for everyone's time -
    -K.

  • Redirecting based on session

    I need to redirect users based on their 'accessLevel', which is set via a session. I know how to do this in ASP but am running into problems translating into JSP. here's my code which doesn't work:
    <%
    String external = "guestPortal.jsp";
    String internal = "report_portal.jsp";
    if ((String) session.getAttribute("accessLevel") = "outsider") {
         response.sendRedirect(response.encodeRedirectURL(external));
         return;
    if ((String) session.getAttribute("accessLevel") = "insider") {
         response.sendRedirect(response.encodeRedirectURL(internal));
         return;
    %>
    This doesn't work. I need to have one login page which everyone can use, and redirect them from there. I put the above code on a page called redirector.jsp . Any help would be greatly appreciated!!!!!
    Mike g

    Thanks larell. I modified your code just a bit (missed a couple of parenthesis) to this:
    <%@page contentType="text/html" errorPage="error.jsp"%>
    <html>
    <head><title>JSP Page</title></head>
    <body>
    <%
    String external = "external.jsp";
    String internal = "internal.jsp";
    String sessionValue = (String) session.getAttribute("accessLevel");
    if(sessionValue.equals("external")){
    response.sendRedirect(external);
    else{
    if (sessionValue.equals("admin")){
    response.sendRedirect(internal);
    else{
    out.write("You suck and can not come in.");
    %>
    </body>
    </html>
    I had tried the .equals but I was doing didn't cast it to a string first (ie. was doing session.getAt.....equals(..)). Thanks for the help, cause it worked. Man I love this forum.

  • Php redirect based on value not working?

    Hello, i have a signup page, a login page, failed.php and a landing page once they have signed up.
    the user signs up (application-formP1.php) then once they have done this they are redirected to the next page (application-formP2.php) they then have other information to add.
    on application-formP1.php there is a redirect that if the user has finished with the page (completed it) they are directed to application-formP2.php
    if($status == "P1complete")
              header("location: application-formP2.php");
    the trouble i am having is if i just try to access application-formP1.php ( which is the signup page) it is automatically sending the user to application-formP2.php even if they are not signed in then because they are not signed in it is sending the user to the failed page (obiously because the retstrict user is working)
    i have included the code below for application-formP1.php
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO LettingsTenApp (tenID, progress, tenTitle, tenUsername, tenPassword, tenSex, tenEmail, tenDobDD, tenDobMM, tenDobYY, tenDepend, tenMarital, tenPrevSurn, tenEmployTyp, tenNINumber) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                           GetSQLValueString($_POST['tenID'], "int"),
                                                         GetSQLValueString($_POST['progress'], "text"),
                           GetSQLValueString($_POST['tenTitle'], "text"),
                           GetSQLValueString($_POST['tenUsername'], "text"),
                           GetSQLValueString($_POST['tenPassword'], "text"),
                           GetSQLValueString($_POST['tenSex'], "text"),
                           GetSQLValueString($_POST['tenEmail'], "text"),
                           GetSQLValueString($_POST['tenDobDD'], "text"),
                           GetSQLValueString($_POST['tenDobMM'], "text"),
                           GetSQLValueString($_POST['tenDobYY'], "text"),
                           GetSQLValueString($_POST['tenDepend'], "text"),
                           GetSQLValueString($_POST['tenMarital'], "text"),
                           GetSQLValueString($_POST['tenPrevSurn'], "text"),
                           GetSQLValueString($_POST['tenEmployTyp'], "text"),
                           GetSQLValueString($_POST['tenNINumber'], "text"));
      mysql_select_db($database_Letting, $Letting);
      $Result1 = mysql_query($insertSQL, $Letting) or die(mysql_error());
      $insertGoTo = "application-formP2.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    mysql_select_db($database_Letting, $Letting);
    $query_rsTenant = "SELECT * FROM LettingsTenApp";
    $rsTenant = mysql_query($query_rsTenant, $Letting) or die(mysql_error());
    $row_rsTenant = mysql_fetch_assoc($rsTenant);
    $totalRows_rsTenant = mysql_num_rows($rsTenant);
    $status = $row_rsTenant['progress'];
    // Redirect user if thier application is completed
    if($status == "P1complete")
              header("location: application-formP2.php");
    and the form
    <form action="<?php echo $editFormAction; ?>" method="post" name="form1" >
            <input type="submit" value="Save &amp; continue" />
            <input type="hidden" name="progress" value="P1complete" />
            <input type="hidden" name="MM_insert" value="form1" />
    </form>
    thanks

    i noticed i dint have the session variable on the form i have now included this
    <?php
    if (!isset($_SESSION)) {
      session_start();
    $MM_authorizedUsers = "";
    $MM_donotCheckaccess = "true";
    // *** Restrict Access To Page: Grant or deny access to this page
    function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) {
      // For security, start by assuming the visitor is NOT authorized.
      $isValid = False;
      // When a visitor has logged into this site, the Session variable MM_Username set equal to their username.
      // Therefore, we know that a user is NOT logged in if that Session variable is blank.
      if (!empty($UserName)) {
        // Besides being logged in, you may restrict access to only certain users based on an ID established when they login.
        // Parse the strings into arrays.
        $arrUsers = Explode(",", $strUsers);
        $arrGroups = Explode(",", $strGroups);
        if (in_array($UserName, $arrUsers)) {
          $isValid = true;
        // Or, you may restrict access to only certain users based on their username.
        if (in_array($UserGroup, $arrGroups)) {
          $isValid = true;
        if (($strUsers == "") && true) {
          $isValid = true;
      return $isValid;
    $MM_restrictGoTo = "failed.php";
    if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {  
      $MM_qsChar = "?";
      $MM_referrer = $_SERVER['PHP_SELF'];
      if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
      if (isset($_SERVER['QUERY_STRING']) && strlen($_SERVER['QUERY_STRING']) > 0)
      $MM_referrer .= "?" . $_SERVER['QUERY_STRING'];
      $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
      header("Location: ". $MM_restrictGoTo);
      exit;
    ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO hostLettingsTenApp (tenID, progress, tenTitle, tenUsername, tenPassword, tenSex, tenEmail, tenDobDD, tenDobMM, tenDobYY, tenDepend, tenMarital, tenPrevSurn, tenEmployTyp, tenNINumber) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                           GetSQLValueString($_POST['tenID'], "int"),
                                                         GetSQLValueString($_POST['progress'], "text"),
                           GetSQLValueString($_POST['tenTitle'], "text"),
                           GetSQLValueString($_POST['tenUsername'], "text"),
                           GetSQLValueString($_POST['tenPassword'], "text"),
                           GetSQLValueString($_POST['tenSex'], "text"),
                           GetSQLValueString($_POST['tenEmail'], "text"),
                           GetSQLValueString($_POST['tenDobDD'], "text"),
                           GetSQLValueString($_POST['tenDobMM'], "text"),
                           GetSQLValueString($_POST['tenDobYY'], "text"),
                           GetSQLValueString($_POST['tenDepend'], "text"),
                           GetSQLValueString($_POST['tenMarital'], "text"),
                           GetSQLValueString($_POST['tenPrevSurn'], "text"),
                           GetSQLValueString($_POST['tenEmployTyp'], "text"),
                           GetSQLValueString($_POST['tenNINumber'], "text"));
      mysql_select_db($database_hostLetting, $hostLetting);
      $Result1 = mysql_query($insertSQL, $hostLetting) or die(mysql_error());
      $insertGoTo = "application-formP2.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    $colname_rsTenant = "-1";
    if (isset($_POST['P1complete'])) {
      $colname_rsTenant = $_POST['P1complete'];
    mysql_select_db($database_hostLetting, $hostLetting);
    $query_rsTenant = sprintf("SELECT progress FROM hostLettingsTenApp WHERE tenID = %s", GetSQLValueString($colname_rsTenant, "int"));
    $rsTenant = mysql_query($query_rsTenant, $hostLetting) or die(mysql_error());
    $row_rsTenant = mysql_fetch_assoc($rsTenant);
    $totalRows_rsTenant = mysql_num_rows($rsTenant);
    $status = $row_rsTenant['progress'];
    // Redirect user if thier application is completed
    if($status == "P1complete")
              header("location: application-formP2.php");
    ?>
    but it still is staying on this page if the column "progress" has "P1complete " in it

  • How can i redirect a page to Login screen when sessionis timeout???

    I have a problem in my portal development.
    I set the "<b>Session timeout= 01</b>" parameter in the<b> Visual Administrator</b>
    server_0 > services > Web Container
            Runtime > sap.com/irj  > irj    (view button)
    However, when the session is timeout then the page become to be "red"!!! That is, there is an Exception. I'd like to redirect the page to the "Login screen", but I don't know how. <b>Does anybody know how can I do it</b>?
    Thanks in advance.

    Hi,
        the http session invalidation must be checked at application level  do it DYNPAGE only .you can call the following method.
    public void expireSession(IPortalComponentRequest request)
              long lastAccessedTime=request.getServletRequest().getSession().getLastAccessedTime();
              Date currentDate = new Date();
              Calendar currentDateCal = new GregorianCalendar();
              currentDateCal.setTime(currentDate);
              long systemTime = currentDateCal.getTimeInMillis();          
              long sessionExpiryTime = systemTime - lastAccessedTime;
              long sessionExpiryTimeProp = 600000; //dont hard code.get from property file
              if(sessionExpiryTime >= sessionExpiryTimeProp)
                   try
                       IPortalComponentResponse response=(IPortalComponentResponse)this.getResponse();                    
                        String sessionExpiryPage ="/irj/servlet/prt/portal/prtroot/com.sap.portal.masthead.LogOutComponent?logout_submit=true";                    
                        response.write ("<script language="javascript">");
                        response.write("parent.window.location.replace('"+sessionExpiryPage+"','','toolbar:No,status: No,location: N0');");
                        response.write("</script>");
                   }catch(Exception e)     

  • HTTP redirect based on client IP

    Hello,
    Is anyone aware of a method to redirect an HTTP request based on the Client IP using ICM/Web Dispatcher?
    The "icm/HTTP/redirect_" parameter doesn't appear to allow you to use the client IP as a criteria for the redirect, and I have not been able to find any other indication of how this might be accomplished on SMP, SDN, or Online Help.
    The goal of this is to perform a protocol switch and redirect all HTTP requests from a specific IP range to HTTPS.
    thanks!
    John

    Just a thought:
    Have two instances of Web Dispatcher, listening on different ports.
    Split incoming connections to different ports, whichever way is available:
    1. Ask you network team to forward request from one subnet to one port and another subnet to another port.
    2. On Windows server use RRAS
    3. On any server use software routing;
    4. Setup routing appliance before the server.
    Not too elegant, but should work...
    Regards,
    Slava

  • Filter/Redirect based on file extension and path

    Posted this earlier on the NSAPI list, didn't get a response. Can some
    one help?
    Thanks
    Immanuel
    I am attempting to write a filter/redirector based on file extension
    and
    the path of the file - some thing like:
    http:\\www.wombat.com\filetpye1\file1.abc
    gets redirected to server http:\\foo.com\file1.abc
    http:\\www.wombat.com\filetpye2\file2.xyz
    gets redirected to server http:\\bar.com\file2.xyz
    Can some one tell me
    a. Is this possible using NSAPI and conf file changes
    b. Pointer (and source if available) to implment this
    Regards
    Immanuel

    You need to use Client tages and redirect and other SAFs. More info in :
    http://docs.sun.com/source/817-1834-10/crobjsaf.html#wp18074
    http://docs.sun.com/app/docs/doc/820-1643/abvaq?l=en&a=view&q=Client+tags

  • Redirect based on list of source IP ranges

    Hi everyone
    We are looking for a way to 302 redirect a client to an alternate url based on their source IP address. If they do not match the source IP, the request will be load balanced to a farm.
    The list of matching IP ranges is quite large though - there are upwards of 5000.
    Is there a way to do this on the ACE 4710 efficiently?
    Thanks
    A

    Yes, you can use an HTTP class-map
    Scimitar1/User1(config)# class-map type http loadbalance redirect_clients
    Scimitar1/User1(config-cmap-http-lb)# match source-address ?
        Enter client source address to match
    Then you can use this class-map in your policy-map to use different serverfarm
    Scimitar1/User1(config)# policy-map type load first-match WEB
    Scimitar1/User1(config-pmap-lb)# class ?
      class-default     Specify actions for default class-map
      redirect_clients
    Scimitar1/User1(config-pmap-lb)# class redirect_clients
    Scimitar1/User1(config-pmap-lb-c)#
    <.....add your redirect serverfarm here ......>
    Scimitar1/User1(config-pmap-lb-c)# ex
    Scimitar1/User1(config-pmap-lb)# class class-default
    Scimitar1/User1(config-pmap-lb-c)#
    <.... add your loadbalancing serverfarm here .....>
    This is going to be a bit tedious to configure your 5000 client ip addresses.
    Maybe you could script it ?
    Gilles.

  • ACE 4710 Redirection based on incoming Spanish Language

    I have a customer that wants to redirect incoming traffic to a different url or host based on the end users language. Spanish in particular. What is the best way to accomplish this task with the least amount of issues.
    Stan

    If you capture a sniffer trace of any HTTP traffic, you will see that every request contains a line like this :
    "Accept-Language: de"
    So, in this example the request contains information that the browser accept German (DE).
    If you sniff a request from a spanish browser, you should see a similar line with the "SP" letters.
    Then with ACE, you can match those requests with a class-map like below :
    AceC6k2/Admin(config)# class-map type http load Spanish
    AceC6k2/Admin(config-cmap-http-lb)# match http heade Accept-Language header-value sp
    AceC6k2/Admin(config-cmap-http-lb)#
    Then inside your policy-map you can use this class-map to differentiate spanish request from the others.
    policy-map type
    AceC6k2/Admin(config)# policy-map type loadbalance http first-match Web
    AceC6k2/Admin(config-pmap-lb)#
    AceC6k2/Admin(config-pmap-lb)# class-map Spanish
    <.....do something here for spanish browsers .....>
    AceC6k2/Admin(config-pmap-lb)# class class-default
    <..... do something here for the other browsers ......>
    gilles.

  • Redirect based on State?

    Is there was to redirect a user to a different page based on
    a given State?
    I thought you could do it by Country using a server variable,
    but need to do
    this my a particular State. Maybe a script? This would be for
    a PHP site.

    State as in "state of Ohio". I want to determine if they are
    coming from
    this state, and redirect to one page, and if not, another.
    Would it be based
    on an ip range? Server variable? Php script?
    On 9/26/06 11:06 AM, in article
    efbfm1$m74$[email protected], "Mick
    White" <[email protected]> wrote:
    > idot wrote:
    >
    >> Is there was to redirect a user to a different page
    based on a given State?
    >> I thought you could do it by Country using a server
    variable, but need to do
    >> this my a particular State. Maybe a script? This
    would be for a PHP site.
    >>
    > Whence comes the State?
    > Mick

  • Redirect based on Java Version

    I have users running both Sun Java 1.4.1_07 and 1.4.2_08. I would like to create a HTML page that redirects these users based on what version of java they are running on their machine.
    I.E. If user A is running 1.4.1_07 they get redirected to a certain page, and if user B is running 1.4.2_08 they get redirected to a certain page.
    Any input would be appreciated.
    Thanks

    I would think that a small applet that checks the version would be your best bet. I'm pretty sure that applets are allowed to get some System properties by default - the Javadoc for getProperties() has the list - perhaps java.version.

  • After Firefox update, pages are redirected whenever I type a letter or try to enter url, different redirects based on letter I type. Opens a windows explorer window, goes to original login, opens Start/Run window with cmd in box etc.

    Please send some advice if you have any ideas of how to solve this issue.
    The info that is shown about my computer is not accurate. The machine with the problems below is running 64 bit Vista but I cannot access a site like this one due to the constraints listed below.
    I fell for what I thought was a Firefox update but since installing it, when entering a URL, I am redirected back to original computer log in / password entry box. If I use my browser window drop down list I can get into something like Facebook and move around but as soon as I try to type any letter into a 'comment' box, I am redirected to both a Windows Explorer type page showing my various drives and another Window from my Start/Run with the dialog box open with cmd entered in it already. Certain typed letters don't show up at all when trying to enter a 'comment' on Facebook while various letters get various different responses. It is impossible to enter any URL or use my browser other than the items in my drop down. Once there, say to my bank account, I cannot enter any password as I am immediately redirected to someplace else upon trying to type a letter or character. I don't know how to get my browser working. I have tried IE as well and the same thing happens. All started after the supposed upgrade of Firefox. Your help would be appreciated. Thank you.

    Please send some advice if you have any ideas of how to solve this issue.
    The info that is shown about my computer is not accurate. The machine with the problems below is running 64 bit Vista but I cannot access a site like this one due to the constraints listed below.
    I fell for what I thought was a Firefox update but since installing it, when entering a URL, I am redirected back to original computer log in / password entry box. If I use my browser window drop down list I can get into something like Facebook and move around but as soon as I try to type any letter into a 'comment' box, I am redirected to both a Windows Explorer type page showing my various drives and another Window from my Start/Run with the dialog box open with cmd entered in it already. Certain typed letters don't show up at all when trying to enter a 'comment' on Facebook while various letters get various different responses. It is impossible to enter any URL or use my browser other than the items in my drop down. Once there, say to my bank account, I cannot enter any password as I am immediately redirected to someplace else upon trying to type a letter or character. I don't know how to get my browser working. I have tried IE as well and the same thing happens. All started after the supposed upgrade of Firefox. Your help would be appreciated. Thank you.

  • How does one create a form that redirects based on the input of the form?

    What I am trying to do is have a form with one input. Lets call it "ID".
    There are multiple pages that the form can direct to depending on the ID the user inputs.
    All of the page extentions end with the ID. For example www.page.com/0001.html.
    So I want the user to put in "0001" then submit. The user will then be directed to page www.page.com/0001 if they put in an invalid ID user will be directed to "ID not found" page.
    Any help would be much apreciated!! Thanks.

    on form.php put a form like this:
    <form method="POST" action="redirect.php">
    <input type="text" name="id" value="" /><br />
    <input type="submit" value="redirect" />
    </form>
    on redirect.php put this:
    <?php
    if (isset($_POST['id'])) {
         header ('Location: http://yoursite.com/'.$_POST['id'].'html');
         exit;
    }else{
         header ('Location: http://yoursite.com/form.php');
         exit;
    ?>
    best,
    Shocker

  • Redirecting based on web browser.

    Hey all,
    Hopefully somebody will have a soultion to my issue. Folloing my welcome page on my site I link directly to a page which promotes firefox as an alternative browser (instead of Explorer) to view the site. This looks really tacky and sends viewers away. However, when I didn't have the "Get Firefox" page, I would get people who would say that my site wouldn't load correctly.
    This brings me to my question. Does anybody out there know how to redirect specific browsers and preferably their versions to alternative pages? I know that this practice is generally frowned upon in the web design community. But alas, if possible I believe it would greatly benifit my site.
    I did find a website that described it at: http://www.quirksmode.org/js/detect.html . But I'm not Java Script literate, so I was unable to descipher enough information. Thanks in advance for reading this post, and for —hopefully—providing me with a soultion.
    Kind Regards,
    —Eric
    Ash Films
    http://web.mac.com/ekashley
    G4   Mac OS X (10.4.9)  

    You can either use JavaScript (JS) or PHP to achieve your ends. So you need to do some kind of scripting.
    This is from the web site you posted:
    <script type="text/javascript">
    <!--
    document.write('<p class="accent">You\'re using ' + BrowserDetect.browser + ' ' + BrowserDetect.version + ' on ' + BrowserDetect.OS + '!</p>');
    // -->
    </script>
    If you can understand that, then there is a chance you can program this yourself, and I'd be happy to help out.
    While the community does frown on showing different browsers different content, there are some cases, where design requires that slightly different HTML/JS/CSS be sent in order to achieve the same effect on the user's browser.
    One should not redirect to completely different content.
    You should also investigate the possibility of fixing the HTML so that it loads correctly. If it isn't your site, then you can first link to a page of your own that explains the problem and then sends folks on.
    (Btw. You wouldn't have this kind of problem if you used iWeb to publish your pages )

  • CSS redirect based on client IP address?

    We have a number of web servers behind CSS11500. We would like to be able to send an http redirect to a client browser, depending on the client's IP address.
    I had thought this might be possible using ACL but I can't find anything that seems to fit the bill. Can anyone suggest whether this is even possible, and how?

    create a redirect service.
    Then you can use an acl like this :
    clause 10 permit tcp x.x.x.x destination content prefer
    Gilles.

Maybe you are looking for

  • Twitter favourite notifications persist even after I've tapped them

    New to the iPhone and loving it so far - but I have this problem with Twitter notifications.  As the subject line says, when someone's favourited my Tweets the notifications persist even after I've tapped them and gone into the twitter app. Other Twi

  • Running a .dll in a .VI

    Hi, i have some issues running a dll in a .VI. to be more specific... I am running a main VI, and that main VI calls for a .dll when it is running labview crashes. after that y tried another way, I made the main VI a .dll then when i ran it everythin

  • Integration Services - Dimension Table

    I?m trying to build a dimension table for a star schema to be used with Essbase Integration Services. I need to know how to structure the table when the data in the fact table is at a more granular level that that of the Essbase leaf member. The typi

  • Harassment use of Skype to place call after call i...

    I am being bombarded with an avalanche of calls from a Skype caller.  It has become to a harassment level and unrelentless, not only calling my mobile number, but my work number as well. I can furnish the skype number and kindly ask if the IP address

  • Cancelling service - porting number

    My last line under contract expires in just under 1 month; I am interested in switching to another carrier that has a better deal with my employer, better family data options, and good deals on new iphones. I would prefer to keep our numbers and avoi