No edit summary |
No edit summary |
||
Line 32: | Line 32: | ||
*settings files | *settings files | ||
**settings.d/ folder<span><span /><span /><span /><span /><span /></span> '''OR''' | **settings.d/ folder<span><span /><span /><span /><span /><span /></span> '''OR''' | ||
** all files that contain 'local.php' in settings.d/ folder <span /><span /><span /><span /><span /><span /><span /><span /><span /><br /> | ** all files that contain 'local.php' in settings.d/ folder <span /><span /><span /><span /><span /><span /><span /><span /><span /><br /> | ||
*extension/BlueSpiceFoundation/config/ folder | *extension/BlueSpiceFoundation/config/ folder (only available until BlueSpice 4.2.x){{Bsvs|bsvTo=4.2.x}} | ||
*images/ folder | *images/ folder | ||
*all LocalSettings.php files<span><span /><span /><span /><span /><span /><span /><span /><span /><br /></span> [[File:File settingsPHP.png|alt=example screenshot of a list of LocalSettings.php files.]] <span /><span /><span /><span /><span /><span /><span /><span /><span /><br /> | *all LocalSettings.php files<span><span /><span /><span /><span /><span /><span /><span /><span /><br /></span> [[File:File settingsPHP.png|alt=example screenshot of a list of LocalSettings.php files.]] <span /><span /><span /><span /><span /><span /><span /><span /><span /><br /> |
Revision as of 11:37, 25 July 2023
This page contains instructions for a patch update (e.g., from version 4.1.x to a higher version 4.1.x+).
Backup
First, you need to make a backup of your database:
mysqldump -u root -p --all-databases > all_databases.sql
To make your code base more secure, save it to a secure location of your choice:
#Linux bash
cp -r codebase your_secure_place
# Win bash
xcopy codebase your_secure_place\ /E
Renew the code base
Unzip the archive (new Wiki version). Overwrite the old wiki code base with the new wiki version code:
#Linux bash
cp -r new_version_codebase old_version_codebase
rm -rf new_version_codebase
#Win bash
xcopy new_version_codebase old_version_codebase\ /E/H #path/ - to tell xcopy that path is a directory.
rmdir new_version_codebase /Q/S
Local settings and data
Compare local files and some manual made settings
The following files and folders contain local changes:
- skins/ folder
- settings files
- settings.d/ folder OR
- all files that contain 'local.php' in settings.d/ folder
- extension/BlueSpiceFoundation/config/ folder (only available until BlueSpice 4.2.x) -v4.2.x
- images/ folder
- all LocalSettings.php files
Copy from your backup Local files and some manual made settings
For a fast copy, use this bash command:
#Linux Bash
cd your_secure_place
cp -r images/ LocalSettings.* settings.d/ codebase/
cp -r /extensions/BlueSpiceFoundation/config /codebase/extensions/BlueSpiceFoundation/
#Win Bash
cd your_secure_place
for %I in (images/ LocalSettings.* settings.d/) do copy %I codebase/
for %I in (config/ data/) do copy %I codebase/extensions/BlueSpiceFoundation/
Run the update
After all preparations are done and code base is overwritten, do the following steps:
- open a console and go to the installation folder (LocalSettings.php directory-level, see: right-image)
- enter the following command:
php maintenance/update.php
Check your current Version
Open the page Special:Version
in your Wiki and check BlueSpice(Credits):
If problems occur
- Visit our SourceForge support forum or report a bug.
- For general questions regarding the installation, maintenance, and usage of BlueSpice free, go to our SourceForge help forum.