This repository has been archived by the owner on Oct 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrating from CodePlex (https://graffiticms.codeplex.com)
- Loading branch information
Showing
1,183 changed files
with
83,553 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,48 @@ | ||
# GraffitiCMS | ||
Graffiti CMS is an easy-to-use open source content management system created in 2008 and actively developed through 2010. | ||
|
||
Welcome to Graffti CMS! | ||
|
||
* Graffiti CMS 1.3 - STABLE * | ||
Located at: \releases\1.3 | ||
This is the current "stable" version. | ||
|
||
|
||
* Graffiti CMS 1.4 - ALPHA * | ||
Located at: \develop\ | ||
This is the in-development volatile version. | ||
Not recommended for use on production web sites at this time. | ||
|
||
|
||
* Graffiti CMS 2.0 - ALPHA * | ||
Located at: \feature\2.0_Alpha | ||
This is the in-development volatile version that needs updating. | ||
Do not use this for production web sites. | ||
|
||
|
||
|
||
INSTRUCTIONS: | ||
|
||
1. Open the \Branches\v1.4\src\Graffiti.sln solution file with Visual studio 2008. | ||
|
||
2. Choose what type of database you will be using. Microsoft SQL Server 2000/2005/2008, Microsoft Access, and MySQL are supported in the current code base. VistaDB was supported in prior closed source versions of Graffiti CMS but is not included in this project at this time due to licensing constraints. Telligent is working with them on making it available for download from their site in the future. | ||
|
||
3. Update the web.config to use the appropriate datbase provider AppSetting value for the type of database you will use. Find the "DataBuddy::Provider" key and update the value (if needed) to one of the following: | ||
Access: DataBuddy.MSAccessProvider, DataBuddy | ||
MySQL: DataBuddy.MySQLDataProvider, DataBuddy | ||
SQL Server 2000: DataBuddy.SQLDataProvider, DataBuddy | ||
SQL Server 2005/2008: DataBuddy.SQL2K5DataProvider, DataBuddy | ||
|
||
4. Update the web.config to use the appropriate database connection string. Sample connection strings for various database types are included in the web.config comments. | ||
|
||
5. Setup the database using the instructions in the \Branches\v1.4\data\read_me.txt file. | ||
|
||
6. Build the solution. You may need to set the Graffiti.Web project as the start up Project. | ||
|
||
|
||
IMPORTANT NOTES: | ||
* If you are using IIS 7 or above, and ASP.NET 3.5 SP1, the new url routing features will work great. If not, you'll need to enable the option to generate folders for posts and categories. This setting is found in the admin > Site Options > Configuration page. | ||
|
||
* If you are currently using a prior version of Graffiti CMS with VistaDB and do not wish to migrate to a different database then you should keep using the version you have for now. | ||
|
||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
ALTER TABLE [aspnet_Applications] NOCHECK CONSTRAINT ALL | ||
GO | ||
|
||
PRINT 'Begin inserting data in aspnet_Applications' | ||
INSERT INTO [aspnet_Applications] ([ApplicationName], [LoweredApplicationName], [ApplicationId], [Description]) | ||
VALUES('/graffiti', '/graffiti', '39f9ed8e-0842-4912-a14a-19624b227bea', NULL) | ||
ALTER TABLE [aspnet_Applications] CHECK CONSTRAINT ALL | ||
GO | ||
|
||
|
||
|
||
ALTER TABLE [aspnet_Paths] NOCHECK CONSTRAINT ALL | ||
GO | ||
|
||
PRINT 'Begin inserting data in aspnet_Paths' | ||
ALTER TABLE [aspnet_Paths] CHECK CONSTRAINT ALL | ||
GO | ||
|
||
|
||
|
||
ALTER TABLE [aspnet_PersonalizationAllUsers] NOCHECK CONSTRAINT ALL | ||
GO | ||
|
||
PRINT 'Begin inserting data in aspnet_PersonalizationAllUsers' | ||
ALTER TABLE [aspnet_PersonalizationAllUsers] CHECK CONSTRAINT ALL | ||
GO | ||
|
||
|
||
|
||
ALTER TABLE [aspnet_Roles] NOCHECK CONSTRAINT ALL | ||
GO | ||
|
||
PRINT 'Begin inserting data in aspnet_Roles' | ||
INSERT INTO [aspnet_Roles] ([ApplicationId], [RoleId], [RoleName], [LoweredRoleName], [Description]) | ||
VALUES('39f9ed8e-0842-4912-a14a-19624b227bea', '34969392-34a0-4d79-9a00-fcf4dff45b60', 'gAdmin', 'gadmin', NULL) | ||
ALTER TABLE [aspnet_Roles] CHECK CONSTRAINT ALL | ||
GO | ||
|
||
|
||
|
||
ALTER TABLE [aspnet_SchemaVersions] NOCHECK CONSTRAINT ALL | ||
GO | ||
|
||
PRINT 'Begin inserting data in aspnet_SchemaVersions' | ||
INSERT INTO [aspnet_SchemaVersions] ([Feature], [CompatibleSchemaVersion], [IsCurrentVersion]) | ||
VALUES('common', '1', 1) | ||
INSERT INTO [aspnet_SchemaVersions] ([Feature], [CompatibleSchemaVersion], [IsCurrentVersion]) | ||
VALUES('health monitoring', '1', 1) | ||
INSERT INTO [aspnet_SchemaVersions] ([Feature], [CompatibleSchemaVersion], [IsCurrentVersion]) | ||
VALUES('membership', '1', 1) | ||
INSERT INTO [aspnet_SchemaVersions] ([Feature], [CompatibleSchemaVersion], [IsCurrentVersion]) | ||
VALUES('personalization', '1', 1) | ||
INSERT INTO [aspnet_SchemaVersions] ([Feature], [CompatibleSchemaVersion], [IsCurrentVersion]) | ||
VALUES('profile', '1', 1) | ||
INSERT INTO [aspnet_SchemaVersions] ([Feature], [CompatibleSchemaVersion], [IsCurrentVersion]) | ||
VALUES('role manager', '1', 1) | ||
ALTER TABLE [aspnet_SchemaVersions] CHECK CONSTRAINT ALL | ||
GO | ||
|
||
|
||
|
||
ALTER TABLE [aspnet_Users] NOCHECK CONSTRAINT ALL | ||
GO | ||
|
||
PRINT 'Begin inserting data in aspnet_Users' | ||
INSERT INTO [aspnet_Users] ([ApplicationId], [UserId], [UserName], [LoweredUserName], [MobileAlias], [IsAnonymous], [LastActivityDate]) | ||
VALUES('39f9ed8e-0842-4912-a14a-19624b227bea', '471bedfe-62be-4755-b7d0-f3109bdc9a95', 'admin', 'admin', NULL, 0, '2007-08-27 01:36:19') | ||
ALTER TABLE [aspnet_Users] CHECK CONSTRAINT ALL | ||
GO | ||
|
||
|
||
|
||
ALTER TABLE [aspnet_UsersInRoles] NOCHECK CONSTRAINT ALL | ||
GO | ||
|
||
PRINT 'Begin inserting data in aspnet_UsersInRoles' | ||
INSERT INTO [aspnet_UsersInRoles] ([UserId], [RoleId]) | ||
VALUES('471bedfe-62be-4755-b7d0-f3109bdc9a95', '34969392-34a0-4d79-9a00-fcf4dff45b60') | ||
ALTER TABLE [aspnet_UsersInRoles] CHECK CONSTRAINT ALL | ||
GO | ||
|
||
|
||
|
||
ALTER TABLE [aspnet_WebEvent_Events] NOCHECK CONSTRAINT ALL | ||
GO | ||
|
||
PRINT 'Begin inserting data in aspnet_WebEvent_Events' | ||
ALTER TABLE [aspnet_WebEvent_Events] CHECK CONSTRAINT ALL | ||
GO | ||
|
||
|
||
|
||
ALTER TABLE [aspnet_Membership] NOCHECK CONSTRAINT ALL | ||
GO | ||
|
||
PRINT 'Begin inserting data in aspnet_Membership' | ||
INSERT INTO [aspnet_Membership] ([ApplicationId], [UserId], [Password], [PasswordFormat], [PasswordSalt], [MobilePIN], [Email], [LoweredEmail], [PasswordQuestion], [PasswordAnswer], [IsApproved], [IsLockedOut], [CreateDate], [LastLoginDate], [LastPasswordChangedDate], [LastLockoutDate], [FailedPasswordAttemptCount], [FailedPasswordAttemptWindowStart], [FailedPasswordAnswerAttemptCount], [FailedPasswordAnswerAttemptWindowStart], [Comment]) | ||
VALUES('39f9ed8e-0842-4912-a14a-19624b227bea', '471bedfe-62be-4755-b7d0-f3109bdc9a95', 'HdIu3VUDqDxvARwbg0NhQyQoJ68=', 1, '8IosIPwJ6C2D4JLN0NzKwA==', NULL, 'user@graffiticms.com', 'user@graffiticms.com', NULL, NULL, 1, 0, '2007-08-03 14:58:26', '2007-08-27 01:27:53', '2007-08-03 14:58:26', '1754-01-01 00:00:00', 0, '1754-01-01 00:00:00', 0, '1754-01-01 00:00:00', NULL) | ||
ALTER TABLE [aspnet_Membership] CHECK CONSTRAINT ALL | ||
GO | ||
|
||
|
||
|
||
ALTER TABLE [aspnet_PersonalizationPerUser] NOCHECK CONSTRAINT ALL | ||
GO | ||
|
||
PRINT 'Begin inserting data in aspnet_PersonalizationPerUser' | ||
ALTER TABLE [aspnet_PersonalizationPerUser] CHECK CONSTRAINT ALL | ||
GO | ||
|
||
|
||
|
||
ALTER TABLE [aspnet_Profile] NOCHECK CONSTRAINT ALL | ||
GO | ||
|
||
PRINT 'Begin inserting data in aspnet_Profile' | ||
INSERT INTO [aspnet_Profile] ([UserId], [PropertyNames], [PropertyValuesString], [PropertyValuesBinary], [LastUpdatedDate]) | ||
VALUES('471bedfe-62be-4755-b7d0-f3109bdc9a95', 'bio:S:0:0:properName:S:0:9:webSite:S:9:20:', 'The Adminhttp://graffiti.com/', 0x, '2007-08-27 01:29:37') | ||
ALTER TABLE [aspnet_Profile] CHECK CONSTRAINT ALL | ||
GO | ||
|
||
|
||
|
Oops, something went wrong.