Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Albert 27 posts 49 karma points
    Sep 06, 2012 @ 10:11
    Albert
    0

    /base in Umbraco 4.8.1

    Hi, I was using /base in my Umbraco 4.7.1.1 perfectly, however after upgrade the site to 4.8.1, base stop working. Each time I call a method using /base I get:

    Failed to load resource: the server responded with a status of 500 (Internal Server Error)

    Does anyone knows about it? 

    Thank you

  • Drew 165 posts 340 karma points
    Sep 06, 2012 @ 11:56
    Drew
    1

    Base works fine in 4.8.0 (although I've not checked 4.8.1, but there are no changes to /base it appears).

    Have you tested it with a very simple method such as:


    namespace
     Site.RESTExtensions {     [RestExtension("test")]     public class Form     {         [RestExtensionMethod()]         public static string Ping()         {             return "pong";         }

     

    That you can test by calling /base/test/Ping

    I'd also recommend you check that you don't have any URL rewrite rules that may be conflicting with requests to the /base URL, and also check all your file/folder permissions.

    Cheers,
    Drew 

     

  • Douglas Ludlow 210 posts 366 karma points
    Sep 06, 2012 @ 19:32
    Douglas Ludlow
    0

    I've seen this happen when there's a random dll that's missing some dependency.

  • Albert 27 posts 49 karma points
    Sep 10, 2012 @ 17:58
    Albert
    1

    The problem was a dll. I don't know which, but I did another time the upgrade and works perfectly!

    Thanks to all!

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies