Hello! I am getting an error when I press save after uploading a image
from PC in RTE.(error below with stacktrace)
I think it's something about umbraco showing thumb of the picture I
upload since it's exactly when I press save it occure, and the image will still
be saved in Mediasection.
Server Error in '/' Application.
Input string was not in a correct format.
Description: An unhandled exception occurred during the
execution of the current web request. Please review the stack trace for more
information about the error and where it originated in the code.
Exception Details:
System.FormatException: Input string was not in a correct
format.
Source Error:
An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.
Do you have a multiple file uploader package installed? I've seen this error when using the in-editor insert image button with the Noerd multiple file uploader.
public partial class usercontrols_MultipleFileUpload_Installer : UserControl{private const string DATATYPE_NAME = "Multiple File Upload";private static readonly Guid DATATYPE_UID = new Guid("ACCB9911-CD81-4B17-AF3F-446CEB1DBF0D");
I can't see of any other way to get the GUID of a package without looking through the source. This fix has definitely worked on the 6 or so sites we added the otherwise excelllent nord package to, and for us the GUID seems to always be the same. http://imgur.com/fWOQo.gif
Dan
We're using SQL server express, but as the GUID seems to be in the code I can't see this being db-dependent.
UPDATE cmsDataTypePreValues
SET dataTypeNodeId = (SELECT NodeId FROM cmsDataType where controlid = 'ACCB9911-CD81-4B17-AF3F-446CEB1DBF0D')
WHERE value = '~/usercontrols/MultipleFileUpload/MultipleFileUpload.ascx'
Uploading images in RTE throw error
Hello! I am getting an error when I press save after uploading a image from PC in RTE.(error below with stacktrace)
I think it's something about umbraco showing thumb of the picture I upload since it's exactly when I press save it occure, and the image will still be saved in Mediasection.
Server Error in '/' Application.
Input string was not in a correct format.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.FormatException: Input string was not in a correct format.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
Version Information: Microsoft .NET Framework Version:2.0.50727.4016; ASP.NET Version:2.0.50727.4016
Best regards,
Fredrik
Using Umbraco 4.0.2.1 **Where's the edit button?**
Do you have a multiple file uploader package installed? I've seen this error when using the in-editor insert image button with the Noerd multiple file uploader.
I do have Noerd Multiple file uploader installed. Think I gotta remove it or edit some of it? Client find that package a blessing for uploading ;)
regards,
Fredrik
Try this, maybe after backing up your db
Good luck!
Dan
Thanks alot for help Dan!(rhyme well on Dan the man ;) ), will give update on how it went soon.
Fredrik
I can't find "accb9911" in there @ all. Using SQL Server 2005.
regards,
Fredrik
Hmm, it should be... In the source this is it
I can't see of any other way to get the GUID of a package without looking through the source. This fix has definitely worked on the 6 or so sites we added the otherwise excelllent nord package to, and for us the GUID seems to always be the same. http://imgur.com/fWOQo.gif
Dan
We're using SQL server express, but as the GUID seems to be in the code I can't see this being db-dependent.
Ohh yes, it's working!! Thank you alot Dan the man :)
Cheers,
Fredrik
Heh, credit goes to my colleague Emanuel. Glad you got it sorted.
Thank you ever so much! :) Just what i needed!
Thanks a lot for this! Was experiencing the same problem!
Works for me to! Thanks!
In other words, run this query:
is working on a reply...