Telerik Image Manager - JSON parse error when uploading images and EnableAsyncUpload is set to TrueTelerik RadEditor image manager issuesTelerik upload manager - Folder creates and deletes but refresh images staysTelerik RadControls, controlling where ScriptResource.axd files are generated when EnableEmbeddedScripts is truegetting onclient with AutoPostBack set to True in telerik radcalanderradeditor image manager not showing correctly when upload iisHow set Stacked=“true” column chart telerikTelerik RadEditor Image Manager Window Not Displaying Properlywhen RadEditor -Telerik toolbarmode set to Default issue in chrome browserRadeditor image manager upload button enabledtelerik <clientitemtemplate> parsing error

Is it okay to submit a paper from a master's thesis without informing the advisor?

Are all commands with an optional argument fragile?

I hit a pipe with a mower and now it won't turn

Different budgets within roommate group

Word ending in "-ine" for rat-like

I need help with pasta

Do home values typically rise and fall at a consistent percent?

Most elegant way to write a one-shot 'if'

Converting Geographic Coordinates into Lambert2008 coordinates

Could this problem be tackled using Mathematica?

Why was Mal so quick to drop Bester in favour of Kaylee?

Is it possible to have a character with proficiency in all martial weapons without proficiency in Medium armor?

How did Lefschetz do mathematics without hands?

How could a satellite follow earth around the sun while staying outside of earth's orbit?

Using “ser” without "un/una"?

Why is Japan trying to have a better relationship with Iran?

Thin wall to block LED light from hitting photodiode?

Sharing referee/AE report online to point out a grievous error in refereeing

How do I present a future free of gender stereotypes without being jarring or overpowering the narrative?

Checkmate in 1 on a Tangled Board

Is there a legal way for US presidents to extend their terms beyond two terms of four years?

What kind of jet plane is this?

Was it really unprofessional of me to leave without asking for a raise first?

13th chords on guitar



Telerik Image Manager - JSON parse error when uploading images and EnableAsyncUpload is set to True


Telerik RadEditor image manager issuesTelerik upload manager - Folder creates and deletes but refresh images staysTelerik RadControls, controlling where ScriptResource.axd files are generated when EnableEmbeddedScripts is truegetting onclient with AutoPostBack set to True in telerik radcalanderradeditor image manager not showing correctly when upload iisHow set Stacked=“true” column chart telerikTelerik RadEditor Image Manager Window Not Displaying Properlywhen RadEditor -Telerik toolbarmode set to Default issue in chrome browserRadeditor image manager upload button enabledtelerik <clientitemtemplate> parsing error






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I've submitted this question to Telerik forums but haven't received any reply yet so a coworker advised to post here...



We're using RadEditor with ImageManager and EnableAsyncUpload property set to true.



When trying to upload an image (a small one btw), the upload seems to go forever and when I look at Chrome's Dev Tool console, an error is logged:




Unexpected token < in JSON at position 453




Doing this on Firefox, the message changes to:




JSON.parse: Unexpected non-whitespace character after JSON data at line 1 column
454 of the JSON data




(in the end, both messages points to the same issue).



Example of Chrome error message.



Chrome error message



When I change EnableAsyncUpload property to false, it uploads correctly and saves the image in the specified location without any problem.



I tried to debug it and saw that the problem appears when Telerik's code try to parseJSON a string that comes with more information than expected (highlighted in yellow). This information is added by the application and I can't change that.



Parse JSON



I can leave it with EnableAsyncUpload in false but it kinda bugs me.



Is it really ok leaving EnableAsyncUpload in false? Is there a way to fix this issue?



Code is like this:



<div id="HtmlBodyCell" style="<%= HtmlBodyCellStyle %>">
<Telerik:RadEditor ID="HtmlBodyTextArea" runat="server" Width="475px" Height="400px" />
</div>


HtmlBodyTextArea.EnableFilter(Telerik.Web.UI.EditorFilters.MakeUrlsAbsolute); 
HtmlBodyTextArea.ImageManager.UploadPaths = imgPath;
HtmlBodyTextArea.ImageManager.ViewPaths = imgPath;
HtmlBodyTextArea.ImageManager.MaxUploadFileSize = 200000;
HtmlBodyTextArea.ImageManager.EnableAsyncUpload = true;
HtmlBodyTextArea.ImageManager.RenderMode = RenderMode.Lightweight;


Thanks!










share|improve this question






























    1















    I've submitted this question to Telerik forums but haven't received any reply yet so a coworker advised to post here...



    We're using RadEditor with ImageManager and EnableAsyncUpload property set to true.



    When trying to upload an image (a small one btw), the upload seems to go forever and when I look at Chrome's Dev Tool console, an error is logged:




    Unexpected token < in JSON at position 453




    Doing this on Firefox, the message changes to:




    JSON.parse: Unexpected non-whitespace character after JSON data at line 1 column
    454 of the JSON data




    (in the end, both messages points to the same issue).



    Example of Chrome error message.



    Chrome error message



    When I change EnableAsyncUpload property to false, it uploads correctly and saves the image in the specified location without any problem.



    I tried to debug it and saw that the problem appears when Telerik's code try to parseJSON a string that comes with more information than expected (highlighted in yellow). This information is added by the application and I can't change that.



    Parse JSON



    I can leave it with EnableAsyncUpload in false but it kinda bugs me.



    Is it really ok leaving EnableAsyncUpload in false? Is there a way to fix this issue?



    Code is like this:



    <div id="HtmlBodyCell" style="<%= HtmlBodyCellStyle %>">
    <Telerik:RadEditor ID="HtmlBodyTextArea" runat="server" Width="475px" Height="400px" />
    </div>


    HtmlBodyTextArea.EnableFilter(Telerik.Web.UI.EditorFilters.MakeUrlsAbsolute); 
    HtmlBodyTextArea.ImageManager.UploadPaths = imgPath;
    HtmlBodyTextArea.ImageManager.ViewPaths = imgPath;
    HtmlBodyTextArea.ImageManager.MaxUploadFileSize = 200000;
    HtmlBodyTextArea.ImageManager.EnableAsyncUpload = true;
    HtmlBodyTextArea.ImageManager.RenderMode = RenderMode.Lightweight;


    Thanks!










    share|improve this question


























      1












      1








      1








      I've submitted this question to Telerik forums but haven't received any reply yet so a coworker advised to post here...



      We're using RadEditor with ImageManager and EnableAsyncUpload property set to true.



      When trying to upload an image (a small one btw), the upload seems to go forever and when I look at Chrome's Dev Tool console, an error is logged:




      Unexpected token < in JSON at position 453




      Doing this on Firefox, the message changes to:




      JSON.parse: Unexpected non-whitespace character after JSON data at line 1 column
      454 of the JSON data




      (in the end, both messages points to the same issue).



      Example of Chrome error message.



      Chrome error message



      When I change EnableAsyncUpload property to false, it uploads correctly and saves the image in the specified location without any problem.



      I tried to debug it and saw that the problem appears when Telerik's code try to parseJSON a string that comes with more information than expected (highlighted in yellow). This information is added by the application and I can't change that.



      Parse JSON



      I can leave it with EnableAsyncUpload in false but it kinda bugs me.



      Is it really ok leaving EnableAsyncUpload in false? Is there a way to fix this issue?



      Code is like this:



      <div id="HtmlBodyCell" style="<%= HtmlBodyCellStyle %>">
      <Telerik:RadEditor ID="HtmlBodyTextArea" runat="server" Width="475px" Height="400px" />
      </div>


      HtmlBodyTextArea.EnableFilter(Telerik.Web.UI.EditorFilters.MakeUrlsAbsolute); 
      HtmlBodyTextArea.ImageManager.UploadPaths = imgPath;
      HtmlBodyTextArea.ImageManager.ViewPaths = imgPath;
      HtmlBodyTextArea.ImageManager.MaxUploadFileSize = 200000;
      HtmlBodyTextArea.ImageManager.EnableAsyncUpload = true;
      HtmlBodyTextArea.ImageManager.RenderMode = RenderMode.Lightweight;


      Thanks!










      share|improve this question
















      I've submitted this question to Telerik forums but haven't received any reply yet so a coworker advised to post here...



      We're using RadEditor with ImageManager and EnableAsyncUpload property set to true.



      When trying to upload an image (a small one btw), the upload seems to go forever and when I look at Chrome's Dev Tool console, an error is logged:




      Unexpected token < in JSON at position 453




      Doing this on Firefox, the message changes to:




      JSON.parse: Unexpected non-whitespace character after JSON data at line 1 column
      454 of the JSON data




      (in the end, both messages points to the same issue).



      Example of Chrome error message.



      Chrome error message



      When I change EnableAsyncUpload property to false, it uploads correctly and saves the image in the specified location without any problem.



      I tried to debug it and saw that the problem appears when Telerik's code try to parseJSON a string that comes with more information than expected (highlighted in yellow). This information is added by the application and I can't change that.



      Parse JSON



      I can leave it with EnableAsyncUpload in false but it kinda bugs me.



      Is it really ok leaving EnableAsyncUpload in false? Is there a way to fix this issue?



      Code is like this:



      <div id="HtmlBodyCell" style="<%= HtmlBodyCellStyle %>">
      <Telerik:RadEditor ID="HtmlBodyTextArea" runat="server" Width="475px" Height="400px" />
      </div>


      HtmlBodyTextArea.EnableFilter(Telerik.Web.UI.EditorFilters.MakeUrlsAbsolute); 
      HtmlBodyTextArea.ImageManager.UploadPaths = imgPath;
      HtmlBodyTextArea.ImageManager.ViewPaths = imgPath;
      HtmlBodyTextArea.ImageManager.MaxUploadFileSize = 200000;
      HtmlBodyTextArea.ImageManager.EnableAsyncUpload = true;
      HtmlBodyTextArea.ImageManager.RenderMode = RenderMode.Lightweight;


      Thanks!







      asp.net image telerik radeditor






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 25 at 18:44







      Gaby_O

















      asked Mar 25 at 14:05









      Gaby_OGaby_O

      63 bronze badges




      63 bronze badges






















          1 Answer
          1






          active

          oldest

          votes


















          0














          The case was researched at https://www.telerik.com/forums/image-manager---json-parse-error-when-uploading-images-and-image-manager-has-enableasyncupload-set-to-true.



          What Gaby did to resolve it was to add a condition to the generation of the additional entry, like the Request.FilePath should not contain "Telerik.Web.UI.WebResource.axd".






          share|improve this answer






















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55339651%2ftelerik-image-manager-json-parse-error-when-uploading-images-and-enableasyncup%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            The case was researched at https://www.telerik.com/forums/image-manager---json-parse-error-when-uploading-images-and-image-manager-has-enableasyncupload-set-to-true.



            What Gaby did to resolve it was to add a condition to the generation of the additional entry, like the Request.FilePath should not contain "Telerik.Web.UI.WebResource.axd".






            share|improve this answer



























              0














              The case was researched at https://www.telerik.com/forums/image-manager---json-parse-error-when-uploading-images-and-image-manager-has-enableasyncupload-set-to-true.



              What Gaby did to resolve it was to add a condition to the generation of the additional entry, like the Request.FilePath should not contain "Telerik.Web.UI.WebResource.axd".






              share|improve this answer

























                0












                0








                0







                The case was researched at https://www.telerik.com/forums/image-manager---json-parse-error-when-uploading-images-and-image-manager-has-enableasyncupload-set-to-true.



                What Gaby did to resolve it was to add a condition to the generation of the additional entry, like the Request.FilePath should not contain "Telerik.Web.UI.WebResource.axd".






                share|improve this answer













                The case was researched at https://www.telerik.com/forums/image-manager---json-parse-error-when-uploading-images-and-image-manager-has-enableasyncupload-set-to-true.



                What Gaby did to resolve it was to add a condition to the generation of the additional entry, like the Request.FilePath should not contain "Telerik.Web.UI.WebResource.axd".







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Apr 2 at 7:23









                Rumen JekovRumen Jekov

                1,3232 gold badges12 silver badges14 bronze badges




                1,3232 gold badges12 silver badges14 bronze badges


















                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55339651%2ftelerik-image-manager-json-parse-error-when-uploading-images-and-enableasyncup%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript