This is a migrated thread and some comments may be shown as answers.

Maximum Community Edition Projects Reached error

1 Answer 24 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Calvin
Top achievements
Rank 1
Calvin asked on 22 Jul 2011, 10:46 PM
I installed the Team Pulse community edition sucessfully onto my server. I created one project.  When I changed the domain of the administrator from the machine name to the actual static ip, I was not able to logon anymore.  I had to unstall Team Pulse communicty edition and reinstall it.  After the re-installation, the project that I had created is no longer avaialble and I get the following error:
   "Maximum Community Edition Projects Reached error".

How do I reset the installation so I can create a new project again?  Thanks.

1 Answer, 1 is accepted

Sort by
0
Jordan
Telerik team
answered on 25 Jul 2011, 02:48 PM
Hi Calvin,

 The easiest thing is to uninstall TeamPulse and delete the TeamPulse database. After that install TeamPulse again. This will delete your existing project. Link to how to delete database.

If you don't want to delete your existing project you need to run an  sql script that will add your new user to the existing project. You can find ProjectID and UserID from the database.

SELECT * FROM Project
SELECT * FROM [User]
 
INSERT INTO [TeamPulse].[dbo].[ProjectUser]
           ([ProjectID]
           ,[UserID]
           ,[CreatedBy]
           ,[CreatedDateUtc]
           ,[CreatedSystemID]
           ,[LastModifiedBy]
           ,[LastModifiedDateUtc]
           ,[LastModifiedSystemID])
     VALUES
           (<ProjectID, int,>
           ,<UserID, int,>
           ,'admin'
           ,GETDATE()
           ,999
           ,'admin'
           ,GETDATE()
           ,999)
GO

Regards,
Jordan
the Telerik team
TeamPulse R1 Officially Released!
Do you want to be able to directly talk to our professionals and ask questions about the things that interest you?
Reserve a seat for the TeamPulse Weekly Live Demo today!
Tags
General Discussions
Asked by
Calvin
Top achievements
Rank 1
Answers by
Jordan
Telerik team
Share this question
or