|
You last visited: Today at 03:35
Advertisement
[Release] SRO Content/Data Management System
Discussion on [Release] SRO Content/Data Management System within the SRO PServer Guides & Releases forum part of the SRO Private Server category.
10/24/2022, 15:13
|
#1
|
elite*gold: 0
Join Date: Jan 2009
Posts: 5
Received Thanks: 7
|
[Release] SRO Content/Data Management System
After a lot of work I am happy to announce releasing SRO CMS, A tool to manage all Silkroad data include the following
- Item Management (Done)
- Skills Management
- Monsters Management (In progress)
- NPCs Management
- Shops Management
- Quests Management
- Region and Portals Management
Screenshots
How To Run
Settings Desc
- DBServer : Your Database Server address ex. "localhost\\SQLEXPRESS"
- DBUser : Your Database user ex. "sa"
- DBPassword : Your Database username password
- ShardDatabaseName : Your Shard Database name ex. "SRO_VT_SHARD"
- port : Your preferred port to run SRO CMS ex. "44358"
- DataFolderPath : Path of extracted Data folder from Data.pk2 exist the same machine where SRO CMS is running
- MediaFolderPath : Path of extracted Media folder from Media.pk2 exist the same machine where
- BackupFolderPath : Path of where quick backup go
- UpdateStagingFolder : Path of folder where all data/media file changes will be copied so that you can update client with it later (MediaFolderPath and DataFolderPath) will have the same updates
- MediaTextLanguageIndex : Index of language in your text files default for VSro 8
- MediaTextKeyIndex : Index of code128 in your text files default for VSro 1
- MediaTextIdIndex : Index of id in your text files not exist for VSro
VSRO
Code:
"MediaTextLanguageIndex": 8,
"MediaTextKeyIndex": 1,
"MediaTextIdIndex": -1
ISRO
Code:
"MediaTextLanguageIndex": 9,
"MediaTextKeyIndex": 2,
"MediaTextIdIndex": 1
Change Log
Alpha 0.1- Initial Alpha Release
- Item Manager
Alpha 0.1.2- Fix all "Copy item to new" issues
- Add friendly user loading indicator
- Add advanced settings to enable identity insert on/off to support more database types
Alpha 0.1.3- Add quick backup functionality
- Add monster nests viewer (editor coming later)
- Fix few issues
Alpha 0.1.4- Item Manager
- Fix copy Item feature issues
- Add option to give item to character by his name
- Monster Manager
- Filter monsters list to show only monsters exclude Pets and other creatures
- Add Monster Nest Editor/Map (add/delete/modify monster spawn positions and counts )
- Add monster Texture switch in the 3d viewer
- Add option to copy spawn monster gm command
- Add option to copy gm command to warp to monster first nest
- Add option to advanced Filter monster list
- Server Manager
- Add option to configure server module to quick launch/restart/stop all server modules
- Add option quickly know server status from any page
- Add option quickly restart server from any page
- Add option to quickly patch client Pk2 with updated files
- Add option to quickly launch the client
 ||
 ||
|
|
|
10/25/2022, 02:20
|
#2
|
dotCom
elite*gold: 9842
Join Date: Mar 2009
Posts: 16,835
Received Thanks: 4,668
|
Quote:
Originally Posted by ahmed007boss
After a lot of work I am happy to announce releasing SRO CMS, A tool to manage all Silkroad data include the following
- Item Management (Done)
- Skills Management
- Monsters Management
- NPCs Management
- Shops Management
- Quests Management
- Region and Portals Management
Screenshots
How To Run
- Modify Migrator\appsettings.json and change the following values <DBServer> ,<DBUser>,<DBPassword>,<Port>
Code:
"ConnectionStrings": {
"Default": "Server=<DBServer>;Database=SROCMS;UID=<DBUser>;PWD=<DBPassword>"
}
Code:
"ConnectionStrings": {
"Default": "Server=<DBServer>;Database=SROCMS;UID=<DBUser>;PWD=<DBPassword>"
}
Code:
"SRO_CMS_Swagger": {
"ClientId": "SRO_CMS_Swagger",
"RootUrl": "https://localhost:<Port>"
}
Code:
"SRO_CMS_Web": {
"ClientId": "SRO_CMS_Web",
"ClientSecret": "1q2w3e*",
"RootUrl": "https://localhost:<port>"
},
- Run CrateDB.bat and make sure that DB called "SROCMS" Is created
- Modify Application\appsettings.json and change the following values <DBServer> ,<DBUser>,<DBPassword>,<ShardDatabaseName>,<Port>, <DataFolderPath>,<MediaFolderPath>,<UpdateStagingF olderPath>,<MediaTextLanguageIndex>,<MediaTextKeyI ndex>,<MediaTextIdIndex>
Code:
"ConnectionStrings": {
"Default": "Server=<DBServer>;Database=SROCMS;UID=<DBUser>;PWD=<DBPassword>",
"VSRO_SHARD": "Server=<DBServer>;Database=<ShardDatabaseName>;UID=<DBUser>;PWD=<DBPassword>"
}
Code:
"Settings": {
"DataPath": "<DataFolderPath>",
"MediaPath": "<MediaFolderPath>",
"UpdateStagingFolder": "<UpdateStagingFolderPath>",
"MediaTextLanguageIndex": <MediaTextLanguageIndex>,
"MediaTextKeyIndex": <MediaTextKeyIndex>,
"MediaTextIdIndex": <MediaTextIdIndex>
}
Code:
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://*:44359"
},
"Https": {
"Url": "https://*:<port>"
}
}
},
- Run Start_SRO_CMS.bat and make wait until you see Now listening on: https://[::]:<port>
- Open https://localhost:<Port> in the browser
- Use "Admin" , "1q2w3E*" as admin username and password (you may change it later)
Settings Desc
- <DBServer> : Your Database Server address ex. "localhost\\SQLEXPRESS"
- <DBUser> : Your Database user ex. "sa"
- <DBPassword> : Your Database username password
- <ShardDatabaseName> : Your Shard Database name ex. "SRO_VT_SHARD"
- <port> : Your preferred port to run SRO CMS ex. "44358"
- <DataFolderPath> : Path of extracted Data folder from Data.pk2 exist the same machine where SRO CMS is running
- <MediaFolderPath> : Path of extracted Media folder from Media.pk2 exist the same machine where SRO CMS is running
- <UpdateStagingFolder> : Path of folder where all data/media file changes will be copied so that you can update client with it later (MediaFolderPath and DataFolderPath) will have the same updates
- <MediaTextLanguageIndex> : Index of language in your text files default for Vsro 8
- <MediaTextKeyIndex> : Index of code128 in your text files default for Vsro 1
- <MediaTextIdIndex> : Index of id in your text files not exist fpr Vsro
VSRO
Code:
"MediaTextLanguageIndex": 8,
"MediaTextKeyIndex": 1,
"MediaTextIdIndex": -1
ISRO
Code:
"MediaTextLanguageIndex": 9,
"MediaTextKeyIndex": 2,
"MediaTextIdIndex": 1

|
Please make sure to scan the files with virustotal.!
Quote for the screenshots
|
|
|
01/26/2023, 16:56
|
#3
|
elite*gold: 0
Join Date: Nov 2019
Posts: 39
Received Thanks: 9
|
thanks bro very nice <3
but please reupload ver 0.1.4
|
|
|
01/27/2023, 10:38
|
#4
|
elite*gold: 0
Join Date: Dec 2021
Posts: 85
Received Thanks: 74
|
Much efforts, i like the implementation style. This makes life easier.
Thanks for the contribution.
|
|
|
01/27/2023, 23:51
|
#5
|
elite*gold: 0
Join Date: Sep 2009
Posts: 45
Received Thanks: 24
|
please reupload ver 0.1.4
|
|
|
01/30/2023, 02:07
|
#6
|
elite*gold: 0
Join Date: Mar 2012
Posts: 8
Received Thanks: 3
|
REUPLOAD PLEASE
|
|
|
01/31/2023, 14:02
|
#7
|
elite*gold: 0
Join Date: May 2022
Posts: 13
Received Thanks: 3
|
reupload lınk
|
|
|
02/02/2023, 13:56
|
#8
|
elite*gold: 0
Join Date: Jul 2020
Posts: 163
Received Thanks: 15
|
Nice work
|
|
|
03/26/2023, 21:40
|
#9
|
elite*gold: 0
Join Date: Feb 2023
Posts: 2
Received Thanks: 0
|
reupload 1.0.4 pls
|
|
|
03/09/2024, 10:24
|
#10
|
elite*gold: 0
Join Date: Feb 2016
Posts: 27
Received Thanks: 2
|
any can repload 1.0.4
|
|
|
03/13/2024, 16:40
|
#11
|
elite*gold: 0
Join Date: Dec 2018
Posts: 139
Received Thanks: 27
|
fix link
|
|
|
05/25/2025, 17:22
|
#12
|
elite*gold: 0
Join Date: Jun 2017
Posts: 2
Received Thanks: 0
|
Please help to reupload 1.0.4
|
|
|
08/10/2025, 19:39
|
#13
|
elite*gold: 0
Join Date: Nov 2007
Posts: 111
Received Thanks: 26
|
Ahmed pls reupload version 1.0.4 thanks
|
|
|
08/11/2025, 15:11
|
#14
|
elite*gold: 0
Join Date: Oct 2013
Posts: 15
Received Thanks: 1
|
up ++
|
|
|
08/12/2025, 04:57
|
#15
|
elite*gold: 0
Join Date: Sep 2017
Posts: 4
Received Thanks: 0
|
pls up link Download Version Alpha 0.1.4 thank
|
|
|
Similar Threads
|
Suche Content Management System (CMS)
12/03/2010 - General Coding - 7 Replies
Als erstes: Sry, wenn das im falschen Bereich ist.
Dachte auch an den Coder's Bereich, war mir aber nicht sicher.
Zum Thema:
Ich suche ein CMS für eine Website.
Hauptsächlich soll die Website als Blog betrieben werden. Umso mehr Features desto besser.
Es soll einfach zu bedienen sein. Unter einfach verstehe ich: Angucken -> Selbsterklärend.
Ich will nichts haben, wo ich erstmal Tut's lesen muss. (oder zmd wenig).
Zudem möchte ich sehr viel am Design ändern können, und das möglichst...
|
Content-Management-System
09/30/2009 - Dekaron Private Server - 1 Replies
Hello,
I want to ask which CMS is good for a P-Server homepage?
Thanks,
Maurice
|
All times are GMT +1. The time now is 03:41.
|
|