when try to add new content I get the error message 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.Data.SqlClient.SqlException: Invalid column name 'Nodeid'.
Can you give us a litle information on your system setup? Operating System? MySQL/MS SQL? Which version of IIS?
Off the top of my head, it could be a corrupt database, as it sounds like a column from one of the tables is missing. Can you confirm the DB installed successfully?
I use IIS 7.0 on win 7.0 and Sql Server 2008 Express edition. I tried to install the application a lot of times by droping and creating the database again and again. It says that installed successfully but it does not work properly. How can i manually install the database?
can't add new content
when try to add new content I get the error message 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.Data.SqlClient.SqlException: Invalid column name 'Nodeid'.
Server Error in '/' Application.
Invalid column name 'Nodeid'.
Is this related permissions. thank you.
I tried both 4.5.2 and 4.6 alfa. I always get that error when i try to add a new content. Isnt there a solution?
Hi Ali,
Can you give us a litle information on your system setup? Operating System? MySQL/MS SQL? Which version of IIS?
Off the top of my head, it could be a corrupt database, as it sounds like a column from one of the tables is missing. Can you confirm the DB installed successfully?
Matt
I use IIS 7.0 on win 7.0 and Sql Server 2008 Express edition. I tried to install the application a lot of times by droping and creating the database again and again. It says that installed successfully but it does not work properly. How can i manually install the database?
Hi Ali
check your database and server collation. if collation is Turkishxxxx this error will apair. you must change the collation of database.
Thanks for your reply Mr Gurkan
What is the best collation for the database? I tried "latin1_general_bin" but it did not work.
Hi Ali,
Mine are set to Latin1_General_CI_AS if that helps.
Matt
I had the same problem..
Changing the collation solved it..
ALTER DATABASE umbraco SET SINGLE_USER WITH ROLLBACK IMMEDIATE
ALTER DATABASE umbraco COLLATE Latin1_General_CI_AS
ALTER DATABASE umbraco SET MULTI_USER
Thank your reply Dincer M.
I solved Too
is working on a reply...