Installation
Is there anything how can we improve installation, update and upgrade process of Kentico CMS?
-
Mixed root and virtual directory installation
The problem is described in this forum:
http://devnet.kentico.com/Forums/f46/t20718/Root-or-Virtual-Directory-.aspx3 votes -
1 vote
-
Check the collation of the SQL Server during installation.
Today I wanted to install a trial version of Kentico on an existing SQL Server installation. During the setup I got the error message
ERROR: An error occurred: [DataConnection.ExecuteQuery]: Query: CREATE FUNCTION [Func_OM_Account_GetChildren] ( @currentAccountId int, @includeParent int ) RETURNS @result TABLE ( AccountID int ) AS BEGIN -- Recursively find all children of current account WITH Recursion(AccountID) AS ( SELECT AccountID FROM OM_Account a WHERE a.AccountMergedWithAccountID = @currentAccountID UNION ALL SELECT a.AccountID FROM OM_Account a INNER JOIN Recursion r ON a.AccountMergedWithAccountID = r.AccountID ) INSERT INTO @result SELECT AccountID FROM Recursion -- Include parent account ID in result IF… more
1 vote