Friendly Error messages

SP 2007 upgrade to 2010 - no visual updates made 
Scenario
Publishing Page checked out - When I e.g select the 'Show editing page toolbar' from the site settings menu - Instead of the toolbar opens and states the page is checked out - I get this:
I've have adjusted the Webconfig to this as this was set to 'true'
<SafeMode MaxControls="200" <em>CallStack="false"</em> DirectFileDependencies="10" TotalFileDependencies="50" AllowPageLevelTrace="false">

not much 
04/25/2014 08:30:49.31 w3wp.exe (0x0EDC) 0x1418 Web Content Management Publishing 6ovu Medium Current page can not be edited because it is checked out by another user: http://portal/page.aspx 91de5f00-f6dc-4f24-abe1-720416fe26f7
04/25/2014 08:30:49.31 w3wp.exe (0x0EDC) 0x1418 SharePoint Foundation Runtime tkau Unexpected Microsoft.SharePoint.SPException: This item must be checked out before its properties can be edited. at Microsoft.SharePoint.Publishing.WebControls.ConsoleDataSource.returnCheckOutFailedOnEditModeError(String errorMessageName) at Microsoft.SharePoint.Publishing.WebControls.ConsoleDataSource.EnsurePageCheckedOutIfInEditMode() at Microsoft.SharePoint.Publishing.WebControls.ConsoleDataSource.LoadDataSource() at Microsoft.SharePoint.Publishing.WebControls.ConsoleDataSource.OnLoad(EventArgs e) at Microsoft.SharePoint.Publishing.WebControls.XmlConsoleDataSource.OnLoad(EventArgs e) at Microsoft.SharePoint.Publishing.WebControls.PublishingSiteActionsMenuCustomizer.OnLoad(EventArgs e) at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() ... 91de5f00-f6dc-4f24-abe1-720416fe26f7
04/25/2014 08:30:49.31* w3wp.exe (0x0EDC) 0x1418 SharePoint Foundation Runtime tkau Unexpected ... at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 91de5f00-f6dc-4f24-abe1-720416fe26f7
04/25/2014 08:30:49.34 w3wp.exe (0x0EDC) 0x1418 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (POST:http://portal/page.aspx)). Execution Time=122,1339 91de5f00-f6dc-4f24-abe1-720416fe26f7

Similar Messages

  • Getting SCRIPT5007 when trying to implement a user-friendly survey error message

    Hi,
    I am trying to use the code from http://sharepoint.stackexchange.com/questions/64357/friendly-message-when-user-tries-to-take-the-survey-again to show a user-friendly error message when a user tries to answer a survey twice.
    The detection of the user's answer count works, but when the code tries to open the survey by calling the old code (NewItem2Orig(evt, url);) I get an error SCRIPT5007
    which says, that tagName cannot be found because of an undefined or null-reference in inplview.js, row 2, column 32309.
    Does anybody know, why this is happening? I actually can't see why it shouldn't work...
    Thanks in advance
    P.S.: The error happens in IE 11, in Firefox the code seems to work

    I'm not sure how you get the parameter to execute the NewItem2Orig(evt, url). you can use JavaScript code to first get the button click event script, save it as a variable.
    Then in your rewrite NewItem2 method, else part, set the button click event to the origional event.
    Qiao Wei
    TechNet Community Support

  • How to customize an Error Message

    Hi Gurus,
    Does anyone knows how can I customize the error messages?
    In example, I'm getting the "???en.DOBJ.UPDATE_PERMISSION_DENIED???" error message when a user try to change the user details and do not have permission. But I would like to show a friendly message like "You do not have permission to change this object" or something else.
    Thanks in advance.

    Hi bigboss,
    Thank you for your help. But in which format I need to input the error translation in xlWebAdmin.properties? Something like "DOBJ.UPDATE_PERMISSION_DENIED = You do not have permission to update this object" ?
    Just to let you know, I need to show more user friendly error messages for OIM default error messages.
    Cheers.

  • Custom Error Message (How to?)

    Hello,
    I have a removeInstance tied to a button in the click event.  I know this will generate a default Adobe error if the minimum number of rows have been reached.
    I would like to replace the default Adobe error of "index out of bounds" with a more user friendly error message.
    I tried this after the removeInstance, but default error still popped-up:
    xfa.host.messageBox("Delete error encountered.  Maximum number of rows deleted.", "Warning",1,0)
    Can someone offer assistance?
    Thanks

    You cannot change the error massage but you can suppress it completely.
    This script will check if the row "Row" currently occurs mor than 1 time, which is the minimum.
    If so, the script to remove an instance is executed, otherwise your message is shown.
    if (_Row.count > 1) {
         _Row.removeInstance(1);
    } else {
         xfa.host.messageBox("Delete error encountered. Maximum number of rows deleted.", "Warning",1,0);

  • Include complete version numbering in error messages.

    This submission to the Adobe FrameMaker Forum -- http://www.adobeforums.com/webx/.59b61efd -- illustrates FrameMaker's ability to output rather lengthy (albeit not especially human-friendly) error messages.
    Why not supplement those error messages with complete version and patch-level information? This would enable users, Adobe support, and Adobe FrameMaker forum regulars to quickly answer the inevitable question arising from a recurring error, "what version and patch-level of FrameMaker are you running?"
    Cheers,
    Riley

    Riley,
    FWIW, the information is already there. The first four digits of the
    error code provide most of the info. Also, the error log file header
    info is already quite complete, e.g.
    === Header Begin ===
    Internal Error: 7204, 4686810, 4688124, 4691608
    FrameMaker 7.2.0 for Intel
    Build: 7.2p158
    Window System: MSWindows
    Operating System: Windows NT 5.1 (major.minor.build: 5.1.2600 Service
    Pack 2)
    Generated on: Wednesday, October 17, 2007 1:20:00 AM
    To file: d:\program
    files\adobe\framemaker7.2\FrameLog_07.10.17_01.20.00.txt
    === Header End ===

  • Retrieving servlet error message on the client

    Hi,
    I am trying to display a user friendly error message on a swing client after calling a servlet. Unfortunately the only thing I get is the generic 500 error - java.io.IOException: Server returned HTTP response code: 500 for URL: ...
    When I call this same servlet from a web browser I get a user friendly exception message.
    Servlet code -
    ServletException sEXP = new ServletException("user friendly message");
    throw sEXP;
    Client code -
    URLConnection conn = null;
    try
    url = new URL(targetURL);
    // SSL setup omitted
         conn = url.openConnection();
         conn.setDoInput(true);
         conn.setDoOutput(true);
         conn.setUseCaches(false);
         if (conn instanceof HttpURLConnection)
              ((HttpURLConnection) conn).setRequestMethod("GET");
         conn.setRequestProperty("Content-type", "text/html");
         conn.setAllowUserInteraction(true);
         conn.connect(); // Error is thrown here
    catch (IOException ioe)
    // ioe is now a generic 500 error with the message thrown from the server missing.
    Thanks,
    Dave

    5xx errors means that the server is knackered. So there is no real way for the server to be nice about the errors.
    You can try added error pages in to web.xml, but they are less likely to be able to handle 5xx errors.
    Normally, a web server (like apache) is placed in front the J2EE web-server to catch this kind of stuff and be nice to the client.

  • Cannot register for account - Ajax error message 403

    I am trying to register for an account so I cna give the printer a friendly email address, but I get the following error message:
    Ajax submit failed: error = 403, Forbidden
    Obviously this is not a friendly error message and I am not sure what's going on, other than that it results in me being unable to register. I tried two browsers as well (Firefox and Chrome).

     It's possible that there's a setting in your web browser responsible for what you're seeing. I would recommend trying the following steps:
    1. Try to view the site in a different web browser to see if that's the issue. Normally, Internet Explorer, Google Chrome, Firefox, and Safari all display the website properly. Try one or two of those (other than the one you've been using) and it should do the trick.
    2. If that doesn't work, try resetting Internet Explorer's default settings by clicking "Tools" (on the top menu bar), "Internet Options" (usually at the bottom of that list), "Advanced" (far-right tab), and "Reset" (towards the bottom-right of that box). After resetting the defaults, try viewing the ePrint Settings area again.
    Although I am an HP employee, I am speaking for myself and not for HP.
    --Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

  • Workflow 2013 error messages

    In a test workflow 2013, I am getting error messages that look like the following:
    'Form cannot be submitted because of an error'.
    I click on the error details and it gives me the reason there is a problem. The message also says: "An entry has been added to the
    Windows event log of the server. Log ID: 1234.
    I am wondering if there is a way to have more user friendly error messages? If so, can you tell me how to setup the messages to be more user friendly?

    Hi Wendy,
    check those links if they will help, first thing try the rules and data validation, other thing with code
    http://blog.parkercomp.com/2009/05/how-to-customize-infopath-error-dialogs.html
    http://sharepoint.stackexchange.com/questions/51408/find-out-if-validation-errors-exist-in-infopath-form
    https://msdn.microsoft.com/en-us/library/office/aa942787.aspx
    https://support.office.com/en-us/article/Add-rules-for-validation-fa530b5c-419f-4c03-a85f-d7f96cb9de95?ui=en-US&rs=en-US&ad=US
    this book is helpful
    https://books.google.com.eg/books?id=zWYLIp3zfvAC&pg=PA417&lpg=PA417&dq=infopath+form+handling+how+error+appears&source=bl&ots=CT6Um0LiZS&sig=O6Ckoh8MUwvAOa9NtlwarEBfG2k&hl=en&sa=X&ei=dYHcVLSfPITeatr0gqgM&redir_esc=y#v=onepage&q=infopath%20form%20handling%20how%20error%20appears&f=false
    Kind Regards,
    John Naguib
    Senior Consultant
    John Naguib Blog
    John Naguib Twitter
    Please remember to mark this as answered if it helped you

  • I have a an iMac 27" and am trying to import some videos of a friends wedding into iMovie however one of the movies won't import. It doesn't say why or give any error message or codes. All of the other movies on the card download with out a problem.

    I have an iMac 27" and am trying to import some videos of a friends wedding into iMovie however one of the movies won't import. It doesn't say why or give any error message or codes.
    All of the other movies on the card download with out a problem. The movie in question is not 'corrupt' as you can watch it in iMovie direct from the SD card but as soon as you try to import it, it  just says 'error'. iIve tried moving the file to an external drive ( and other variations on this theme) then importing but have had no luck.
    Can anyone please help me.

    The mystery remains....
    Thanks for the pointers. The file type is .mts (a proprietry sony one).
    I have now found some video converter software (Wondershare and iSkysoft) at a cost. Either will convert this file for me into .mp4. This I can then import into iMovie without any problems. I've checked this on the trial versions and it worked well but without paying am left with a giant watermark in the video
    The mystery (which I still havent solved) is why did 20 other .mts files import fine and then this one not?
    If you could point me in the direction of some free .mts converter software that would be the cherry on the cake.
    Thanks

  • HT4009 Not very user friendly! Where is the place to report a problem!? I have been billed for an in-app purchase but not had the goods - I received an error message telling my I hadn't been charged at the time and now it is on my bill! What can I do?

    Not very user friendly! Where is the place to report a problem!? I have been billed for an in-app purchase but not had the goods - I received an error message telling my I hadn't been charged at the time and now it is on my bill! What can I do?

    You can try contact iTunes support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • ITunes unable to recognize iPod, error message along the lines if "iTunes has detected an iPod but unable to recognise" I have followed all the trouble shooting tips and am still stuck? I am now being told by a friend I need a link sent to me to fix this

    Hi,
    I am need of help! I have had this issue for a while now and it's becoming frustrating.
    My iTunes installed on my HP Windows 8 Netbook is unable to recognize my iPod, the error message along the lines of "iTunes has detected an iPod but unable to recognise"
    I have followed all the trouble shooting tips and am still stuck? I am now being told by a friend I need a link sent to me to fix this??
    Someone please help me fix this problem.
    Many thanks.
    Matt.

    Hi
    So just close iTunes and re-open iTunes thats it and that worked for you?
    When you say reset your settings do you mean to factory settings? As my iPod was swapped at the store for a new one and the problem is still there...
    Thanks.

  • Internet Explorer - "Show friendly HTTP error messages"

    I have configured a servlet within web.xml to handle exceptions, and my servlet is indeed triggered when an exception occurs.
    My users are all running Internet Explorer. By default the advanced setting "Show friendly HTTP error messages" is enabled, which causes them to see an ugly MSIE error page rather than my carefully crafted servlet.
    They could see the awful exception pages Tomcat was handling out previously, which is why I set about making this change in the first place.
    I believe that Tomcat was not adding an error code header to the exception page it was handing out on my behalf, but now that I've taken over exception handling the response contains a code 500 response. (My best guess, anyhow.)
    I was going to simply strip this code out of the response, but upon inspection of the HttpServletResponse object, there is no method for doing such a thing.
    Is anyone familiar with this issue? Can anyone recommend a solution?
    Meanwhile, I'm off to continue scouring the forums before I start Googling again. =)
    Thanks!!

    Well, those "friendly" errors have to be based on the response code for the page. So if you have your own error handling returning a page, then you could return a 200 response code with whatever error content you want.
    For all practical purposes, the response code isn't very useful to users or browsers except for a few special ones maybe. But just because it's an error page to your web app doesn't mean it's an error for the browser. Those error codes are really meant for the HTTP protocol.

  • Error messages saying FireFox cannot do Google friends on my blog. Error Message Oops! Firefox could not find r1rk9np7bpcsfoeekl0khkd2juj27q3o-a-fc-opensocial.goo

    Oops! Firefox could not find r1rk9np7bpcsfoeekl0khkd2juj27q3o-a-fc-opensocial.goo
    THis is the error message on ALL blogs I write on or view. My FireFox cannot find my google friends. the message says GOOGLE and then the words above, OOPS. Firefox could not find........
    HELP I have NO idea what to do. This is from how MY COMPUTER view blogs through Firefox for the past three weeks.

    A few other thoughts:
    (1) If you access Google in IE and click the padlock icon in the address bar to view the certificate, what do you find in the "Issued by" section as the issue? I have attached the info from Firefox for comparison; I don't have a modern version of IE on this PC.
    (2) Do recall changing any encryption-related settings, either through the Options dialog or using the about:config preferences editor?
    You could check for non-default settings as follows:
    (A) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (B) In the search box above the list, type or paste '''ssl''' and pause while the list is filtered
    If any of the preferences whose names start with network. or security. have been customized, they likely will be bolded and show "user set". Could you post those by right-click copying the preferences and then right-click pasting into a reply?

  • I purchased the TV FRIENDS in HD on iTunes (the iTunes store stated with every HD purchase you get the SD version as well) and want to download on my I Pod Classic and get error message the I POD can play this video.  How do I download?

    I purchased the TV FRIENDS in HD on iTunes (the iTunes store stated with every HD purchase you get the SD version as well) and want to download on my I Pod Classic and get error message the I POD can not play this video.  How do I download?

    I see there's no answer.
    This issue has ****** me off for a long time, and I am fed the **** up with it.
    I DO NOT WANT TO DOWNLOAD the Movies and TV shows to every *^&%^$%# Apple device, ONLY the MUSIC!!!
    COme on Apple!!!  FIx this!!!

  • Turn off "Show friendly HTTP error messages" programmatically

    Sorry about uncomplete title in the last post.
    If IE's Show friendly HTTP error messages is on, HttpServletResponse.sendRedirect("<web site address>") doesn't work for some <web site address>. Can we detect the setting or is there a
    way to turn it on programmatically?
    Thanks,

    I do not believe that the setting has anything to do with your code not executing properly. That particular browser setting should not impact whether a URL is accessible or not.
    That having been said, you would need to write to the user's registry. You could only accomplish this if the user either browsed to a page with an applet or downloaded a standalone Java application to change the settings. As the latter option is not a good one, you are stuck with an applet. You would need to override the Sandbox security restrictions by signing your applet's CAB.
    - Saish

Maybe you are looking for

  • Unable to Partition Drive - 3TB Fusion Drive

    Hi, I have been trying to create a Windows Partition using Boot Camp: I get the error message "Your disk could not be partitioned" as soon as I hit Install. I then tried to Partition the drive in Disk Utility and get the error message "Partition fail

  • Cut video clips from Apple Imac

    Hoping somebody might be able to help me out..I'm not very techie when if comes to video editing etc on my Apple Imac. I have a number of large video files that are far too long in playing length to post to you tube so I am looking for the easiest wa

  • Show in explorer

    Hi I've moved my Catalog on an other hard drive. Since then the option "Show in explorer" in the Exportation doesn,t work! Thank for your help. Francois

  • Webservice deployment in Oracle e-Business Suite

    Oracle e-Business Suite R12 contains Oracle AS 10.1.3.0. My question is: Is it possible to deploy webservices build in JDeveloper to this application server version? Iam not talking about BPEL, just a custom build webservice or a webservice generated

  • How to re-order automatically the number of primary key column in MySql that has been set as auto_increment if one of the row deleted?

    Hello, Can anyone show me the way how to re-oder automatically the number of primary key that has been set as auto_increment in mysql database when the row deleted? example: No (primary key=auto increment)| Name | AGE | 1     | JO | 21 | 2     | Kyle