Firefox does not redirect users to web auth page

I have a client that uses web auth for the guest wireless.  When a users opens up FF, it does not automatically redirect them to the web auth page.  However, IE and Chrome work fine.  If you copy and paste the redirection page into FF, it will go to the page then.  The only two possible solutions I have found are to either enable web auth proxy or regenerate the WLC self-signed cert. 
Anyone have any other ideas? 
TIA,
Dan

I've been trying to figure out a very similar issue where Firefox wouldn't open the guest webpage (the connection was interrupted) and finally found it was caused by opening Yahoo as my startup page. I change it to Google, for example, and it comes up everytime now. When set to Yahoo I could clear my cache and it would work once but then wouldn't work again. If I load Yahoo as the startup page in IE it works everytime. Very strange.
Here's what the debug looks like:
*webauthRedirect: Jul 23 20:59:33.793: xx:xx:xx:xx:xx:xx- received connection
*webauthRedirect: Jul 23 20:59:33.794: xx:xx:xx:xx:xx:xx- received connection
*webauthRedirect: Jul 23 20:59:33.795: xx:xx:xx:xx:xx:xx- received request
*webauthRedirect: Jul 23 20:59:33.803: xx:xx:xx:xx:xx:xx- received connection
*webauthRedirect: Jul 23 20:59:33.803: xx:xx:xx:xx:xx:xx- received request
*webauthRedirect: Jul 23 20:59:33.806: xx:xx:xx:xx:xx:xx- received connection
*webauthRedirect: Jul 23 20:59:33.807: xx:xx:xx:xx:xx:xx- received request
*webauthRedirect: Jul 23 20:59:33.810: xx:xx:xx:xx:xx:xx- received connection

Similar Messages

  • 'My Application Page' is not allowed here because it does not extend class 'System.Web.UI.Page'

    I have a custom SharePoint 2010 solution that includes an aspx page. The aspx page in is in the /layouts folder within the solution and I created it by just adding an application page to the solution. I am trying to create a parent-child relationship between
    two different lists in SharePoint. From the parent I have a custom button on the ribbon that creates a child item with the ID of the parent stamped on it.
    The page is just a processing page that forwards on parameters from the parent to the new child item. (i.e. the ID value)
    The code generated when I add the aspx page is below:
    <%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %>
    <%@ Import Namespace="Microsoft.SharePoint.ApplicationPages" %>
    <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %>
    <%@ Import Namespace="Microsoft.SharePoint" %>
    <%@ Assembly Name="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="processingpage.aspx.cs" Inherits="MY.Solution.Layouts.MY.Solution.processingpage" MasterPageFile="~/_layouts/application.master" %>
    <asp:Content ID="PageHead" ContentPlaceHolderID="PlaceHolderAdditionalPageHead" runat="server">
    </asp:Content>
    <asp:Content ID="Main" ContentPlaceHolderID="PlaceHolderMain" runat="server">
    </asp:Content>
    <asp:Content ID="PageTitle" ContentPlaceHolderID="PlaceHolderPageTitle" runat="server"> Processing Page </asp:Content>
    <asp:Content ID="PageTitleInTitleArea" ContentPlaceHolderID="PlaceHolderPageTitleInTitleArea" runat="server" > Processing Page </asp:Content>
    The code behind is as follows:
    using System;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Administration;
    using Microsoft.SharePoint.WebControls;
    using Microsoft.SharePoint.Utilities;
    using System.Reflection;
    namespace MY.Solution.Layouts.MY.Solution
    public partial class processingpage : LayoutsPageBase
    protected void Page_Load(object sender, EventArgs e)
    try
    //Get a reference to the SPWeb object
    SPWeb oWeb = SPContext.Current.Web;
    //Use the Parameters That Are Passed In
    SPList thisList = oWeb.Lists[new Guid(Request.QueryString["List"])];
    SPListItem thisItem = thisList.GetItemById(int.Parse(Request.QueryString["ID"]));
    sContentType = thisItem["ContentType"].ToString();
    sContentTypeID = thisItem.ContentTypeId.ToString();
    if (sContentType == "Some Content Type")
    sContentTypeID = "";
    sAIID = thisItem["ID"].ToString();
    //Redirect to newform.aspx with the Appropriate parameters.
    Context.Response.Redirect(oWeb.Url + "/Lists/Blist" + "/NewForm.aspx?AIID=" + sAIAuditID.ToString() + "&ContentTypeId=" + sContentTypeID + "&ParentItemID" + Context.Request["ID"]);
    else if (sContentType == "Some Content Type")
    sContentTypeID = "";
    sAIID = thisItem["AIID"].ToString();
    //Redirect to newform.aspx with the Appropriate parameters.
    Context.Response.Redirect(oWeb.Url + "/Lists/AList" + "/NewForm.aspx?AIID=" + sAIID.ToString() + "&ContentTypeId=" + sContentTypeID + "&ParentItemID" + Context.Request["ID"]);
    else if (sContentType == "Some Content Type")
    sContentTypeID = "";
    sAICID = thisItem["AICID"].ToString();
    //Redirect to newform.aspx with the Appropriate parameters.
    Context.Response.Redirect(oWeb.Url + "/Lists/CList" + "/NewForm.aspx?AICID=" + sAICID.ToString() + "&ContentTypeId=" + sContentTypeID + "&ParentItemID" + Context.Request["ID"]);
    else
    LoggingService.LogError("MY.Solution - Processing Page", "No Applicable Content Type Found.");
    catch (Exception ex)
    LoggingService.LogError("My.Solution - Processing Page", ex.Message);
    finally
    //DO SOME FINAL THINGS HERE WHEN REQUIRED.
    In the page I need to use Request.QueryString to get the values from the URL. But when I deploy the solution and load the page I get the error:
    'MY.Solution.Layouts.MY.Solution.processingpage' is not allowed here because it does not extend class 'System.Web.UI.Page'.
    When I change the line:
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="processingpage.aspx.cs" Inherits="MY.Solution.Layouts.MY.Solution.processingpage" MasterPageFile="~/_layouts/application.master" %>
    to inherit as follows:
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="processingpage.aspx.cs" Inherits="Microsoft.SharePoint.WebControls.LayoutsPageBase" MasterPageFile="~/_layouts/application.master" %>
    it does not work either.
    If I change it to inherit like below:
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="processingpage.aspx.cs" Inherits="System.Web.UI.Page" MasterPageFile="~/_layouts/application.master" %>
    it also does not work.
    What does this error actually mean?  And why doesn't the default code generated by Visual Studio work?

    @NadeemYousuf I have tried this too and it didn't work.  
    What does the error even mean?  And why does the error appear with default Visual Studio code?  In my example I have just added a basic application page with no other code in it and it still does not work.

  • Facebook says that firefox does not re cognize other web sites for tagged photos.

    I have firefox and when I get on facebook and use my profile to view photos that I have been tagged in. they do not show up. all comments show, but when I click on view photo, it tells me that firefox does not recognize other web sites and wants me to approve them. this has never happened to me till I updated to this fire fox.

    If images are missing then check that you aren't blocking images from some domains.
    *Check the permissions for the domain in the current tab in "Tools > Page Info > Permissions"
    *Check that images are enabled: Tools > Options > Content: [X] Load images automatically
    *Check the exceptions in "Tools > Options > Content: Load Images > Exceptions"
    *Check the "Tools > Page Info > Media" tab for blocked images (scroll through all the images with the cursor Down key).
    If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.
    Make sure that you do not block third-party images, the permissions.default.images pref should be 1.<br />
    See:
    *http://kb.mozillazine.org/Images_or_animations_do_not_load
    There are also extensions (Tools > Add-ons > Extensions) and security software (firewall, anti-virus) that can block images.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • When atemping to use wifi hotspots FireFox does not redirect to login page.

    when trying to use a hot spot like in a hotel or airport (tmoble for one) will not redirect to login page. Nor can it find the page when I enter the DNS name. If I enter the IP address of the long in page then it can find it but not the subsequent pages that it calls by DNS.
    == URL of affected sites ==
    http://

    I am a Hotspot ISP and I am having this issue with Firefox on Linux devices. We use Colubris MSC-3300 as access controllers tied to a RADIUS server. Have tested all other browsers on Windows and Linux and they seem to work correctly, problem seems to be tied to Firefox on Linux (testing with Ubuntu 11.04). When I open Firefox the redirect to captive portal page works correcty. I enter my username and password and when it tries to send this information back to the controller I get a "connection was interrupted" error. I have gone into Preferences and turned everything off and/or on and still can't get this device to log in.

  • Firefox does not recognize hyperlinks denoting files and pages in regarding the html written to direct to the file in the same web directory. Ie: a href=myarticle.pdf

    The hyperlinks are recognized by other browsers, except Firefox. A simple fix would be for any webmaster to make sure the full hyperlink is written, but that would be inclusion just for Firefox users. Simply put, Firefox should still be able to work like a DOS batch file linking files on the same directory viewed in this manner, but fails to.

    That is an MS Office document and everything on that page is a image as you can see in Tools > Page Info > Media and Firefox/Tools > Web Developer > Page Source
    If you used MS software then make sure that you disable VML if you save that page because only IE can display pages with VML
    You can look at KompoZer for an HTML editor that generates W3C compliant code.
    * http://kompozer.net/

  • Firefox does not see my updated web page, but can see it using IE. Why?

    My web site is designed on Frontpage. I updated information of several pages. One page in particular does not show the updated information. http://www.dianedrain.com/RealProperty/TrusteeSalesForeclosures/TRUSTEEpendingTrusteeSales.htm
    Yet, IE does show the page with the updates. Why?

    Reload web page(s) and bypass the cache.
    *Press and hold Shift and left-click the Reload button.
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Cmd + Shift + R" (MAC)
    See also http://kb.mozillazine.org/browser.cache.check_doc_frequency (1)

  • Firefox does not print properly a web page having a SWF on it

    I have been desperately looking everywhere on the
    web to solve this issue and this is actually the first time I ask a
    question in a forum, because I can always find my answers by
    Googling them.
    This is fairly easy to explain, but this is a really annoying
    issue.
    I got the latest version of Firefox and the latest Flash
    Player version. If I print out web pages having SWFs on them, they
    do not show either on the print preview, then on the print out
    itself. How could this happen? Using Microsoft Internet Explorer, I
    have no problem whatsoever to have everything printed out in the
    same context.
    Is there actually a way to bypass that Firefox problem?
    Thanks a lot,
    Marc-André Lapierre

    Does anyone know if this issue is being addressed by Adobe?
    We have a Flash vector drawing app, utilizing XML, which was developed in '06. It works incredibly well, even though it was developed in AS2. However, we need the resulting images to be able to print within the page. It works fine for IE, but no dice for Safari and Firefox.
    One work-around we've built in (essentially creating a rasterized image) slows down our system and has been causing our subscription rates to drop.
    We are now looking at rebuilding this thing, but it is going to be expensive, time consuming and frustrating in order to deal with only a small segment of our users.
    Would love to hear if Adobe is going to address this issue - has anyone heard anything or know of another fix out there?
    thanks,
    brian.

  • Firefox does not redirect anywhere and I tried but still fails

    when I open my firefox on W8 the thing is that any url I wrote and I write on the search bar and when I hit enter , nothing happens, stays there‼‼‼ like refreshing the site, I know this same problem is happening to others I tried the same procedures and I'm still in the same page. my dear firefox.. it is time to say good bye? I'm here becouse I like firefox. so please can you give me the real solution to this or I have to migrate and still loving firefox?

    yes guys, thank you all very much, I did all you say but nothing by the way in running the last version of firefox. But I really want to share with you guys that I found the reason of the problem. It was IDM. Internet Downloader Manager , I'd desinstall that program and it works fine just like before and redirect everything‼.I Noticed the problem when I uninstall that program (the other browsers wasn't able to redirect anywhere) I'm sorry for doubt about firefox‼‼ My mistake... but there you have it, for all of you having the same problem, that was the real solution.beware if you do not clean the registry you do not be able to run any browser because of IDM.

  • Firefox does not print in full web pages. It prints at best the left half of the page. This has only happened recently. It is not my printer as I get full page printing from from Internet explorer and other applications. Help!

    Firefox has started printibg only the left side of a web page . I have tried adjusting the settings without any success in fact it made the print area even smaller. I have adjusted all the settings on the print menu but cannot overcome this. How can I return to printing full web pages?

    Try the '''''reset''''' described here: <br />
    http://kb.mozillazine.org/Problems_printing_web_pages#Reset_printer

  • Firefox does not load one particular web site

    Firefox used to conect just fine to Dish Network's web site for customer support logon, but lately the web page fails to load while
    the progress line at the bottom of the web page tells me I'm "connected."

    Spinning counter clockwise means that Firefox is trying to connect to the web server.<br />
    If a connection is established and the loading starts then you see a clockwise running throbber.
    *http://kb.mozillazine.org/Error_loading_websites
    *https://support.mozilla.org/kb/Error+loading+web+sites

  • My credit union requires a two page sign-in. Firefox does not allow me to get beyond page one.

    When attempting to log-in to my credit union, I type my ID on page one and hit enter. Firefox presents this message, "Firefox prevented this page from automatically redirecting to another page." If I click on allow it sends me back to page one.

    See:
    *Go to [[Image:new fx menu]] Options > Advanced > General : Accessibility : Deselect "Warn me when web sites try to redirect or reload the page"
    The setting in "Options > Advanced > General" is meant as an accessibility feature, as you can see by the label of that section, so that people with disabilities or people who use screen readers do not get confused and is not meant as a safety protection to stop redirecting.

  • Firefox does not load images on any website. This has been a problem for years

    It's not clear why. but only Firefox does not load images on web pages. Works fine on IE
    Follow all the troubleshooting steps at
    http://kb.mozillazine.org/Images_or_animations_don%27t_load
    no of it works. Never has. I see this problem all over. It's the main reason that users don't switch to Firefox.

    Create a new profile as a test to check if your current profile is causing the problems.
    See [[Basic Troubleshooting#Make_a_new_profile|Basic Troubleshooting&#58; Make a new profile]]
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins"
    If that new profile works then you can transfer some files from the old profile to that new profile (be careful not to copy corrupted files)
    See http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    Your above posted system details show outdated plugin(s) with known security and stability risks.
    *Shockwave Flash 10.0 r22
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/

  • Mozilla firefox does not display Notepad++ web programming

    mozilla firefox does not display notepad++ programming of web page and does not connect css files. Currntly programs using CSS + html5.

    Could you check in the lower right corner of Notepad++ what character encoding is being used for your documents. (See screen shot attached.) Some encodings, particularly UTF-16 encodings, have caused other users problems with external content not loading. It is best to use the same encoding for all of your pages, style sheets, scripts, etc.

  • Firefox does not open links with a new window or tab for certain web sites, e.g. Santander On line banking, help links.

    When accessing some sites where they have links for additional information that would normally open a new window or tab, Firefox does not open either. This happens on a variety of sites, most recently the Santander on-line banking site.
    == URL of affected sites ==
    http://

    Such JavaScript links should show the image in the same tab, so make sure that you left click such links.
    * http://kb.mozillazine.org/JavaScript
    Try to reload the web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)

  • Newest firefox does not display aspects of simple html web site correctly

    Newest Firefox does not display certain web pages correctly whereas Safari does- previous versions of Firefox worked fine.
    The web pages are simple html using bumpers to position photos. Several of these pages allow "see through" in these bumper areas of prior page. It appears that Firefox is not releasing its memory of the prior page. Each of these pages is a specific address and should be loaded as a separate solo page. Please look at html pages 10 and 14 of this site. It seems that the code for these bumpers is not being honored and the persistent memory of the prior page is being intermixed. I cleared the cache and reinstalled Firefox with no change in problem.
    Please help.
    My business is struggling...
    Robert Bell
    [email protected]

    Hello - thanks for your response!
    I reinstalled Firefox 7.0.1 - still have the problem.
    Cache was cleared.
    I tried restarting in safe mode also with no change.
    I reinstalled Firefox 6.0.1 - works fine.
    I have attached a screen shot showing the problem on 1 of the pages.
    These are simple html pages that use .gif bumpers to help position the photos in some cases but not on all of the site pages. The sample screen shot shows the compound problem - the code for the gif bumpers is not being honored and part of the image from the prior page is showing through - the prior page is not being fully released. Each page is a separate entity with a separate address, so when the new page loads there should be no evidence or visibility of the prior one.
    This simple bit of website building should be working on this browser, on this Mac with this OS. Safari works. Firefox 6 works.
    Sample problem pages are 10 and 14.
    Site is http://www.robertbellphoto.com
    Thank you so much!

Maybe you are looking for

  • !Question about EventReaderToWriter

    I am trying to store the content from a query result result to a document, I do like this: // write the start document and root element xWriter.writeStartDocument(NULL, NULL, NULL); // no XML decl xWriter.writeStartElement((const unsigned char *)"_ro

  • Opening PDF File in VB6. Application is Busy message: Switch To or Retry

    Hi A legacy VB6 app uses an OLE Container to open up a PDF file in Adobe Reader, with the below code: [CODE]                App.OleServerBusyRaiseError = True         oleContainer.Class = olePDF         oleContainer.AutoActivate = vbOLEActivateAuto  

  • Need help hooking up Maxent 42" Plasma to mac mini

    i have a newly acquired maxent 42" plasma product number mx42xm11 i called their rep and he said it wouldnt work but i have read a couple forums where people have gotten other maxent monitors to work i was wondering if someone could help me set this

  • How to avoid transaction overhead in oracle ?

    Hi , My database has 85 lakhs records already, during working hours,in single minute 20 records are being inserted into my table.at the same time some users trying to fetch the data from same table .so after long wait ,i m getting script time out err

  • Lost contacts in X3-02

    I have Nokia X3-02 and i have lost all my contacts as they were stored on the phone memory and it got formatted. I dont have any backup otherwise i wouldn't be bothering you. Is there any way of getting my contacts back?