Hi Marco,
Is the beta RC available ? I can't find it at http://installer.solidcp.com/Files/.
I'm looking forward to test it !
Thanks
Hello Marco,
I'm interested to try the beta (RC), to see if it resolve this issue and to see if the latest features (I use SolidCP only for Exchange automaticion) works without problems.
Please can you tell me where can I download the RC.
Thank you very much.
Hello,
Currently the RC is not available but it should be soon. I will make a note to update this post once we release it.
Kind Regards,
Trevor Robinson
Hello,
We have now released the new RC for 1.2.0. This is version 1.1.4 and can be found here: http://installer.solidcp.com/Files/beta/
Any problems or questions please let us know.
Kind Regards,
Trevor Robinson
OK, Trevor.
Just updated to 1.1.4 beta and fixed my error (Hosting Space Creation error).
Just a little error in the update_db.sql:
Msg 242, Level 16, State 3, Line 5
The conversion of a varchar data type to a datetime data type resulted in an out-of-range value.
Msg 515, Level 16, State 2, Line 9
Cannot insert the value NULL into column 'BuildDate', table 'SolidCP.dbo.Versions'; column does not allow nulls. INSERT fails.
This error because you wrote '2017-14-03T00:00:00' instead of '2017-03-14T00:00:00'
-- update database version
DECLARE @build_version nvarchar(10), @build_date datetime
SET @build_version = N'1.1.4'
SET @build_date = '2017-14-03T00:00:00' -- ISO 8601 Format (YYYY-MM-DDTHH:MM:SS)
IF NOT EXISTS (SELECT * FROM [dbo].[Versions] WHERE [DatabaseVersion] = @build_version )
BEGIN
INSERT [dbo].[Versions] ([DatabaseVersion], [BuildDate]) VALUES (@build_version , @build_date )
END
GO