Upgrade WebPart on page

Hi! I have Sharepoint Portal. On the pages are placed WebPart. I upgrade Feature, that contains those webPart, and new assembly version. Feature upgrade with success. When i tryed add web part on page it's ok, but when I go to pages with webpart,
which was posted before update, instead of a Web Part, displays information:
"An unexpected error has been encountered in this Web Part.  Error: A Web Part or Web Form Control on this Page cannot be displayed or imported. The type WPTypeWebPart, WP, Version=2014.8.19.20, Culture=neutral, PublicKeyToken=5f5f5f5f5f5f5f5f
could not be found or it is not registered as safe."
Anyone can help me?

You get this error because the web part isn't marked as safe in the web.config file of the site.
Suspect that the version number of the component has incremented but the old version is no longer marked as safe.
Have a look at web.config first and see about the safe control elements.
w: http://www.the-north.com/sharepoint | t: @JMcAllisterCH | YouTube: http://www.youtube.com/user/JamieMcAllisterMVP

Similar Messages

  • Does upgrading to new pages on iPad remove older version of pages

    Does upgrading to new pages on iPad remove older version of pages. In other words, after upgrading will I be able to open older Pages documents on the iPad?

    I took a while to figure this out after I got into the same mess. The new iWorks is a very bad downgrade. I have deleted Pages 5 from my Mac and gone back to Pages 4.3 (it is still there and was not removed when you updated to Pages 5.)
    I then deleted Pages 2 from my iPad and from iTunes.
    I used TIme Machine to go back to ~/Music/iTunes/Mobile Applications in September and found "Pages 1.7.2.ipa" and brought it forward to my desktop. I then droped it into the iTunes icon in the Dock and it reinstalled.
    Hope this works for you.
    Apple can now take as long as they need to correct all the mistakes they made with the current version of iWorks - I will not be upgrading again until they do.
    Apple - Are you listening?

  • Javascript Error after insert a Webpart into Page

    Hi everone, have you ever experienced getting error just after inserting a Webpart into page? I'm using Sharepoint Server 2013. These steps what I did:
    1. Create new page
    2. Click 'Add Webpart'
    3. Choose the webpart and click OK
    4. Webpart showed on page (simple table form)
    5. All ribbon controls are disable and there is javascript error on browser's console with message:
    SCRIPT1004: Expected ';' 
    Picture: http://i(dot)imgur(dot)com/UBM91b3(dot)png
    That line is not from my codes, it's automatically added by sharepoint after inserting webpart. Thanks for anyone who has workaround for this..
    <%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %>
    <%@ Assembly Name="Microsoft.Web.CommandUI, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %>
    <%@ Import Namespace="Microsoft.SharePoint" %>
    <%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="ContractReviewWP.ascx.cs" Inherits="Mitrais.SP2013.ContractManagement.WebParts.ContractReviewWP.ContractReviewWP" %>
    <script type="text/javascript">
    $(function () {
    Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(function (evt, args) {
    //datepicker
    $(".datePicker").datepicker();
    </script>
    <div id="divMain">
    <asp:UpdatePanel ID="upContract" runat="server" UpdateMode="Conditional">
    <ContentTemplate>
    <asp:HiddenField ID="currentStage" runat="server" />
    <h1>
    <asp:Label ID="lblFormTitle" runat="server" Text="Request"></asp:Label>
    Contract Review/Approval
    </h1>
    <div class="divControl">
    <table>
    <tr>
    <td>
    <asp:Label ID="lblTitle" runat="server" Text="Title"></asp:Label>
    </td>
    <td>:</td>
    <td>
    <asp:TextBox ID="txtTitle" runat="server"></asp:TextBox>
    <asp:RequiredFieldValidator ID="requiredValidatorTitle" runat="server" ErrorMessage="*" ControlToValidate="txtTitle" ValidationGroup="SubmitValidation"></asp:RequiredFieldValidator>
    </td>
    </tr>
    <tr>
    <td>
    <asp:Label ID="lblRequestType" runat="server" Text="Request Type"></asp:Label>
    </td>
    <td>:</td>
    <td>
    <asp:DropDownList ID="ddlRequestType" runat="server" CssClass="dropdownRequestType" OnSelectedIndexChanged="ddlRequestType_SelectedIndexChanged" AutoPostBack="true">
    </asp:DropDownList>
    </td>
    </tr>
    <tr>
    <td>
    <asp:Label ID="lblDocumentType" runat="server" Text="Document Type"></asp:Label>
    </td>
    <td>:</td>
    <td>
    <asp:DropDownList ID="ddlDocumentType" runat="server">
    </asp:DropDownList>
    </td>
    </tr>
    <tr>
    <td>
    <asp:Label ID="lblRequestedBy" runat="server" Text="Requested By"></asp:Label>
    </td>
    <td>:</td>
    <td class="tdPeoplePick">
    <SharePoint:PeopleEditor Enabled="false" ID="pplRequestedBy" runat="server" AllowEmpty="false" MultiSelect="false" SelectionSet="User" />
    </td>
    </tr>
    <tr>
    <td>
    <asp:Label ID="lblRequiredDate" runat="server" Text="Required Date"></asp:Label>
    </td>
    <td>:</td>
    <td>
    <asp:TextBox ID="dtRequiredDate" runat="server" CssClass="datePicker"></asp:TextBox>
    <asp:RequiredFieldValidator ID="requiredValidatorRequiredDate" runat="server" ControlToValidate="dtRequiredDate" ErrorMessage="*" ValidationGroup="SubmitValidation"></asp:RequiredFieldValidator>
    </td>
    </tr>
    <asp:Panel ID="pnlRequestedDate" runat="server">
    <tr>
    <td>
    <asp:Label ID="lblRequestedDate" runat="server" Text="Requested Date"></asp:Label>
    </td>
    <td>:</td>
    <td>
    <asp:TextBox ID="dtRequestedDate" runat="server" CssClass="datePicker"></asp:TextBox>
    </td>
    </tr>
    </asp:Panel>
    <tr>
    <td>
    <asp:Label ID="lblDescription" runat="server" Text="Description"></asp:Label>
    </td>
    <td>:</td>
    <td>
    <asp:TextBox ID="txtDescription" runat="server"></asp:TextBox>
    <asp:RequiredFieldValidator ID="RequiredValidatorDescription" runat="server" ControlToValidate="txtDescription" ErrorMessage="*" ValidationGroup="SubmitValidation"></asp:RequiredFieldValidator>
    </td>
    </tr>
    <tr>
    <td>
    <asp:Label ID="lblClientCode" runat="server" Text="Client Code"></asp:Label>
    </td>
    <td>:</td>
    <td>
    <asp:TextBox ID="txtClientCode" runat="server"></asp:TextBox>
    <asp:RequiredFieldValidator ID="requiredValidatorClientCode" runat="server" ControlToValidate="txtClientCode" ErrorMessage="*" ValidationGroup="SubmitValidation"></asp:RequiredFieldValidator>
    </td>
    </tr>
    <tr>
    <td>
    <asp:Label ID="lblSSOCode" runat="server" Text="SSO Code"></asp:Label>
    </td>
    <td>:</td>
    <td>
    <asp:TextBox ID="txtSSOCode" runat="server"></asp:TextBox>
    <asp:RequiredFieldValidator ID="requiredValidatorSSOCode" runat="server" ControlToValidate="txtSSOCode" ErrorMessage="*" ValidationGroup="SubmitValidation"></asp:RequiredFieldValidator>
    </td>
    </tr>
    <asp:Panel ID="panelCPC" runat="server">
    <tr>
    <td>
    <asp:Label ID="lblCPC" runat="server" Text="CPC"></asp:Label></td>
    <td>:</td>
    <td><asp:TextBox ID="txtCPC" runat="server"></asp:TextBox></td>
    <asp:CustomValidator ID="customValidatorCPC" runat="server" ControlToValidate="txtCPC" ErrorMessage="*" ValidationGroup="SubmitValidation"></asp:CustomValidator>
    </tr>
    </asp:Panel>
    <tr>
    <td>
    <asp:Label ID="lblValue" runat="server" Text="Value (US$)"></asp:Label>
    </td>
    <td>:</td>
    <td>
    <asp:DropDownList ID="ddlValue" runat="server"></asp:DropDownList>
    </td>
    </tr>
    <asp:Panel ID="panelCRM" runat="server">
    <tr>
    <td><asp:Label ID="lblCRMUpdated" runat="server" Text="CRM Updated"></asp:Label></td>
    <td>:</td>
    <td>
    <asp:CheckBox ID="checkBoxCRMUpdated" runat="server" />
    </td>
    </tr>
    </asp:Panel>
    <tr>
    <td>
    <asp:Label ID="lblAgreement" runat="server" Text="Agreement Authorisation Level"></asp:Label>
    </td>
    <td>:</td>
    <td>
    <asp:DropDownList ID="ddlAgreement" runat="server"></asp:DropDownList>
    </td>
    </tr>
    <tr>
    <td>
    <asp:Label ID="lblAssignedTo" runat="server" Text="Assigned To"></asp:Label>
    </td>
    <td>:</td>
    <td class="tdPeoplePick">
    <SharePoint:PeopleEditor ID="pplAssignedTo" runat="server" AllowEmpty="true" MultiSelect="false" SelectionSet="User" />
    </td>
    </tr>
    <tr>
    <td>
    <asp:Label ID="lblStatus" runat="server" Text="Status"></asp:Label>
    </td>
    <td>:</td>
    <td>
    <asp:DropDownList ID="ddlStatus" runat="server" CssClass="dropdownStatus"></asp:DropDownList>
    </td>
    </tr>
    <asp:Panel ID="panelStartDate" runat="server">
    <tr>
    <td>
    <asp:Label ID="lblStartDate" runat="server" Text="Start Date"></asp:Label>
    </td>
    <td>:</td>
    <td>
    <asp:TextBox ID="txtStartDate" runat="server" CssClass="datePicker"></asp:TextBox>
    </td>
    </tr>
    </asp:Panel>
    <asp:Panel ID="panelEndDate" runat="server">
    <tr>
    <td>
    <asp:Label ID="lblEndDate" runat="server" Text="End Date"></asp:Label>
    </td>
    <td>:</td>
    <td>
    <asp:TextBox ID="txtEndDate" runat="server" CssClass="datePicker"></asp:TextBox>
    </td>
    </tr>
    </asp:Panel>
    <asp:Panel ID="pnlTemplate" runat="server">
    <tr id="rowTemplate">
    <td>Selected Template</td>
    <td>:</td>
    <td>
    <span id="selectedTemplateSpan"></span>
    <asp:HiddenField ID="hdnSelectedTemplate" runat="server" />
    <asp:Button ID="buttonLookupTemplate" runat="server" Text="Choose Template" CssClass="buttonTemplate" /></td>
    </tr>
    </asp:Panel>
    <tr>
    <td>
    <asp:Label ID="lblLatestDocument" runat="server" Text="Latest Document"></asp:Label>
    </td>
    <td>:</td>
    <td>
    <asp:HyperLink ID="linkLatestDocument" runat="server"></asp:HyperLink>
    <asp:FileUpload ID="fuLatestDocument" runat="server" />
    <asp:CustomValidator ControlToValidate="fuLatestDocument" OnServerValidate="LatestDocument_ServerValidate"
    ErrorMessage="The document with same name already exist, please use different name." SetFocusOnError="true" runat="server" ForeColor="Red" />
    </td>
    </tr>
    <tr>
    <td>
    <asp:Label ID="lblTaggedPerson" runat="server" Text="Person Tagged">
    </asp:Label>
    </td>
    <td>:</td>
    <td class="tdPeoplePick">
    <SharePoint:PeopleEditor ID="peopleTaggedPerson" runat="server" MultiSelect="true" AllowEmpty="true" SelectionSet="User" />
    </td>
    </tr>
    </table>
    </div>
    <div>
    <table class="tbButton">
    <tr>
    <td></td>
    <td>
    <asp:Button ID="btnSubmit" runat="server" Text="Submit" OnClick="btnSubmit_Click" OnClientClick="PreSubmit();" ValidationGroup="SubmitValidation"/>
    </td>
    <td>
    <asp:Button ID="btnCancel" runat="server" Text="Cancel" OnClick="btnCancel_Click"/>
    </td>
    <asp:TextBox ID="txtCheck" runat="server" Text="Add" Visible="false"></asp:TextBox>
    <asp:TextBox ID="txtTempID" runat="server" Style="visibility: hidden;"></asp:TextBox>
    <asp:TextBox ID="txtIsAddNew" runat="server" Text="true" Visible="false"></asp:TextBox>
    </tr>
    </table>
    </div>
    <div id="tabContainer">
    <div class="tabs">
    <ul>
    <li id="tabHeader_1">Comment</li>
    <li id="tabHeader_2">Document Template History</li>
    </ul>
    </div>
    <div class="tabscontent">
    <div class="tabpage" id="tabpage_1">
    <div id="phComment" runat="server"></div>
    </div>
    <div class="tabpage" id="tabpage_2">
    <div id="phDocHistory" runat="server" />
    </div>
    </div>
    </div>
    </ContentTemplate>
    <Triggers>
    <asp:PostBackTrigger ControlID="btnSubmit" />
    </Triggers>
    </asp:UpdatePanel>
    <asp:HiddenField ID="hfComment" runat="server" />
    </div>
    <script type="text/javascript">
    $("#<%= upContract.ClientID %>").ready(function () {
    setTimeout(MitraisCM.contract(), 5000);
    </script>

    Hi,                                                             
    Per my knowledge, such error might occurred when we modify the HTML code of the page, through SharePoint Designer or Content Editor Web Part.
    What web part you added into the page?
    What if you create another new page and insert a list into it, will the error occurs?
    Feel free to reply with the test result if the issue still exists.
    Best regards
    Patrick Liang
    TechNet Community Support

  • Upgrade to IWork Pages

    I'm looking for a page layout program similar to MS Publisher. I have AW and was thinking of upgrading to iWork Pages. Does this seem like a good strategy? Or is there a better solution for page layout?

    Hi Rob,
    You're not going to find laypout program similar to MS publisher, what you will find are a whole lot better.
    As you are running a G4 iBook you are commited to using OS10, so your options are, AW, iWork, Qwark and inDesign.
    Now it depends on what funds you have availabe.
    Of the four inDesign is top dog - a significant (and influential) number of the mainstream magazines publishers in the UK have switched over to it. Its learning curve is steep, but not as steep as Quarrk's
    Quark was the top dog untill ID2 started nibbling and then started taking great chunks out of its user base.
    The Pages part of iWork is new. It's very capable. As yet I don't know what its limits are as I haven't had enough time on it.
    Finally you already have AW in your iBook so you don't need to spend any money.
    The DTP possibilites with AW are up to you. there's very little in the way of templates (unlike MSP which appears to be based around templates) so you have to work it out your self.
    In practical terms I recon the AW is good for between 12 -16 pages. Some have pushed it further but I tend not to - normally I stop at 8 - and then go to indesign.
    The only thing that is really missing from AW is an Impostion feature (but then there isn't one in inDesign or Qwirk either)

  • Since upgrading to ios8, pages very slow to load, and can no longer read items in my reading list when offline. ?????

    SI since upgrading to ios8, Safari pages are very slow to load, Kindle crashes upon opening, and I can no longer read saved artices from my reading list when offline. Big disappointment. Is it possible to downgrade to previous ios?

    I actually managed to fix it! But unfortunately I don't know what I was that I did that helped.
    Anyways, this is kind of what I did.
    1. I tried to reset form bakup via iTunes, no change.
    2. I tried to reset as a new iPhone, problem still there and reading list also as bookmarks!? (several hundred)
    3. Noticed that I could delete a bookmark, once in a while, the other times I got the 'Bookmarks are being synced. Please edit the bookmarks once syncing has completed.' message.
    4. Because I figured that it was a memory problem, I thought it made sense to delete as many as possible, witch I did.
    5. Noticed that it was more likely that I coould delete a bookmark if I restarted Safari.
    6. Notice that it was even more likely that I could delete a bookmark if I turned the Safari sync with iCould off (with option detete information on iPhone) and then back on again.
    7. When I was about half way through deleting the bookmark list I suddenly discovered that all but one of the items in my reading list was 'waiting' and one was downloading. I kind of was 'unstuck' now.
    8. I started to delete items in my reading list, but every other time I got the 'Bookmarks are being synced. Please edit the bookmarks once syncing has completed.' message.
    9. It took a while to delete all bookmarks and items in the reading list.
    Hope you guys could use the info here to fix your problems too!

  • CS4 InDesign. Upgraded. Now pages taking off on me but only in InDesign

    I thought maybe it was the mouse or the computer new mother board or the OS 10.6 that we upgraded to a week or so ago. Also upgraded to InDesign in CS4 at same time.
    Now the page takes off on me to the right side or upper right corner or takes off on me to page 1.
    Hot corners is not the issue. I am not mousing differently from week before all the upgrades and installs.
    *** This is only in InDesign in CS4.... not in Photoshop.
    I know = wierd isn't it.
    Mac, OS 10.6.2, CS 4 v 6.0.4. Newest mouse from Apple which is the flat one with no scroll bar in it. Mouse was behaving before all the upgrades. Can't go backwards to prev. OS. (not an option w. our computer tech person)

    It must be an oversight by the Adobe programmers.
    (Background: traditionally, scroll wheels sent their 'scroll' message once per click, but also sent an amount of 'click' -- say, '20'. I remember when the first scroll wheels came out, Microsoft warned not to rely on that single 'click' message, but to use the click amount instead, to (paraphrasing from memory) "foresee scroll wheels with a higher resolution".
    Here comes InDesign CS4. Someone thinks "1 click message == 1 fixed amount of scrolling", and, because 1 amount of scrolling equals something like one pixel, multiplies that by twenty. One click on your old fashioned mouse wheel -> move 20 pixels.
    On to the "scroll wheel with a higher rez" -- the Magic Mouse. Instead of one click, value 20, it sends twenty clicks, value 1. Every program moves 20 units, except for InDesign -- that one moves 20 x 20 = 400 units. Instant headache.)

  • How to upgrade to latest Pages 4.0.3?

    My existing Pages version is 4.0.2. Recently I got a notice that 4.0.3 is available for update when I open Pages. Then I click the button to allow update download and installation.
    However, after software update and rebooting my MacBookPro, my Pages was not updated at all. The version is still 4.0.2. I tried to click Mac OS Software Update multiple time, it still said there is no latest software update available.
    Please suggest how should I upgrade to Pages 4.0.3 from my existing status. Should I have to delete the whole iWorks and install everything again?

    Thanks for your wonderful reply. I have ever changed the iWork '09 folder to iWork 09 folder. After following your advice to modify the iWork folder with correct name and redo the Software Update again, now it can detect that and download and install the latest iWork.

  • Upgrade from trial pages to licenced

    i have recently purchased pages from the app store,but im unable to upgrade from trial to licenced, i recieved email but no licence number can anybody tell me how to retrieve my licence number please.

    Mark is correct; apps from the Mac App Store do not have licenses codes. He's also correct that you will need to completely uninstall iWork:
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=105&mforum=iworktips ntrick
    and then go to the Purchases section of the Mac App Store and download Pages again. That should then work.
    Regars.

  • IAS 1.0.2.1 - 1.0.2.2 Upgrade causing Portal Page errors

    We had Portal working, and have just upgraded iAS from 1.0.2.1 to 1.0.2.2. After the upgrade we commented out the duplicates in jserv.properties and zone.properties.
    We followed the instructions to check that Portal still works before we upgrade 308-309 but the portal30.home page gives a file not found error. In jserv.log there is a ClassNotFoundException for ParallelServlet, but wwpage.jar is in the wrapper.classpath in jserv.properties.
    The jserv and servlet demos work fine, we can even login and see the gateway config screen (we have a custom login page), but as soon as we go to any portal page we get the error.
    Can anyone help? We are working on Solaris.
    Thanks
    Jenny

    I have the wwpage.jar referenced in zone.properties and no mention in jserv.properties, and it works fine. I think this is the way things are on a default 1.0.2.2 Solaris installation (I'm pretty sure I haven't changed the defaults).
    e.g.) in zone.properties
    repositories=/u09/app/oracle/product/ias1.0.2.2/Apache/Jserv/servlets/wwpage.jar
    Hope that helps,
    Mark
    null

  • Adding webpart to page layout

    Hello ,
    I would like to add a custom webpart to an article page layout. The webpart shows the events related to the article.
    I want that when i add a page that use the article page layout , the webpart is created automatically.
    I would like that the user can modify the webpart to set some custom proprieties.
    How to reach my requirement ? 
    Thanks

    Using article page layout you can create articles. Not clear on what events related to article you would like to show.
    What I can recommend for your scenario is as :
    1. Create a custom web part which has custom properties (using toolbox in web part code).
    2. Deploy this to the sites/web application.
    3. Write a event handler based on a content type (as you are in SP 2013). target your article page layout here. refer - http://karinebosch.wordpress.com/walkthroughs/sp2010-event-receiver-for-content-type/
    4. in the event handler, where ever any new article page is created, add the custom web part. http://nikpatel.net/2010/11/09/programmatically-add-the-web-part-on-the-sharepoint-web-part-page/
    Thanks, Ashish | Please mark a post helpful/answer if it is helpful or answer your query.

  • Did 4.1 upgrade, now BLACK page of apps

    I just upgraded my phone to the 4.1 latest OS version. The update goes fine, phone works great.
    I go to slide to different app pages, and after the main page, I have a BLANK page, then on the 3rd and higher pages, the apps are fine.
    There an easy AUTO ICON reload page or something? I tried to move them one by one, but it was a pain in the .......

    Settings > General > Reset > Reset Home Screen Layout.
    This places all the stock apps in their original positions and arranges 3rd party apps alphabetically. App folders are lost.

  • HT2573 I can't get safari to load the apple express lane web page post mountain lion upgrade ? Other pages now also will not load

    Post the lion upgrade safari will now not load some pages....apple express lane start page for one....other secure sites such as web payments sites too.  Also I can not get AirPlay mirroring on safari.....which works fine on the ipad.
    I have tried downloading and installing the update twice....no change.
    Any ideas !
    Thanks
    Ep

    Followed a thread on one of the other message boards and fixed it....by reinstalling Rapport. now seems to work fine.
    ep

  • Just upgraded to Mavericks Pages application takes so long to load

    Do I need a newer version of Pages?  I think I'm still using my '08 iWork version.

    I mostly use Pages '09, I don't have Pages '08 on this set-up.
    Pages '09 is fast enough.
    Peter

  • Since upgrade to mavericks pages will no longer print black text, color ok but not black

    I recently updated to mavericks, since then any document I try to print in pages will only print the color portion. No black text will print. Have tried 2 different inkjets but with the same result.
    Thanks

    What make and model is the printer?
    Have you updated the pritner drivers?
    What app(s) are you printing from?

  • I keep getting this error message on my Mac after my Mavrick upgrade: This web page is being redirected to a new location. Would you like to resend the form dat

    how do I turn off this notification. I build web stores and this pops up when I access my store now. The stores have a redirect with masking through godaddy.com to hide the source of the store. I have reset fire fox, turned off most of the settings and still having issues. most of the forms on line are outdated.
    Thanks

    There is a way to turn off the warning for a 307 "temporary" redirect. However, bear in mind that customers will still see it, so you may want to reconsider the design for business reasons.
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the search box that appears above the list, type or paste '''redi''' and pause while the list is filtered
    (3) Double-click '''network.http.prompt-temp-redirect''' to switch its value from true (the default) to false.
    References:
    * [https://support.mozilla.org/en-US/questions/779492 I receive this usually in facebook only. " This web page is being redirected to a new location. Would you like to resend the form data you have typed to the new location?" How can I stop this?] - related to filtering/protection service
    * [https://bugzilla.mozilla.org/show_bug.cgi?id=818850 818850 – The dialog "...new location..." is too annoying and is misleading about the page it comes from] - information about the bug tracking system:
    ** [https://bugzilla.mozilla.org/page.cgi?id=etiquette.html Bugzilla Etiquette]
    ** [https://bugzilla.mozilla.org/page.cgi?id=voting.html Voting]

Maybe you are looking for