Setup:Installation Guide/Patch Update: Difference between revisions

No edit summary
Tag: 2017 source edit
No edit summary
Tag: 2017 source edit
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
This page is an instruction for a patch update (for example, version 4.1.x to a higher version 4.1.x+).
This page contains instructions for a patch update (e.g., from version 4.1.x to a higher version 4.1.x+).


== Back-up ==
==Backup==
Firstly, you need to make a back-up of your database<syntaxhighlight lang="bash">
First, you need to make a backup of your database:<syntaxhighlight lang="bash">
mysqldump -u root -p --all-databases > all_databases.sql
mysqldump -u root -p --all-databases > all_databases.sql


</syntaxhighlight>To make your code base more secure, save it to a secure location of your choice<syntaxhighlight lang="bash">
</syntaxhighlight>To make your code base more secure, save it to a secure location of your choice:<syntaxhighlight lang="bash">
#Linux bash
#Linux bash
cp -r codebase your_secure_place
cp -r codebase your_secure_place
Line 13: Line 13:
</syntaxhighlight>
</syntaxhighlight>


== Renew the code base ==
==Renew the code base==
Unzip archive (new Wiki version). Overwrite the old wiki code base with the new wiki version code.<syntaxhighlight lang="bash">
Unzip the archive (new Wiki version). Overwrite the old wiki code base with the new wiki version code:<syntaxhighlight lang="bash">
#Linux bash
#Linux bash
cp -r new_version_codebase old_version_codebase
cp -r new_version_codebase old_version_codebase
Line 24: Line 24:
</syntaxhighlight>
</syntaxhighlight>


== Local settings and Data ==
==Local settings and data==
[[File:cutedResult.png|right|1025x1025px]]
[[File:cutedResult.png|right|1025x1025px|alt=Screenshot of the file structure of the cuted result]]


====== Compare Local files and some manual made settings ======
===Compare local files and some manual made settings===
The following files and folders contain local changes:
The following files and folders contain local changes:
* skins/ folder
*settings files  
* settings files  
**settings.d/ folder<span><span /><span /><span /><span /><span /></span> '''OR'''
** settings.d/ folder<span><span /><br /></span>       OR <span /><span /><br />
** 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 /><br />[[Datei:File localMathPHP.png]]
*extension/BlueSpiceFoundation/config/ folder (only available until BlueSpice 4.2.x){{Bsvs|bsvTo=4.2.x}}
* extension/BlueSpiceFoundation/config/ folder
*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 /><br /></span> [[File:File settingsPHP.png]] <span /><span /><br />


====== Copy from your backup Local files and some manual made settings ======
===Copy from your backup Local files and some manual made settings===
For a fast copy, use this bash command:
For a fast copy, use this bash command:
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
Line 51: Line 50:
</syntaxhighlight>
</syntaxhighlight>


== Run the update ==
==Run the update==
After all preparations are done and code base is overwritten, do the following steps:
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)
#open a console and go to the installation folder  (LocalSettings.php directory-level, see: right-image)
# enter the following command:<syntaxhighlight lang="bash">
#enter the following command:<syntaxhighlight lang="bash">
php maintenance/update.php
php maintenance/update.php
</syntaxhighlight>
</syntaxhighlight>
<blockquote>Note: If you use Linux for your BlueSpice installation, please note that the file system permissions may be lost when overwriting the code base!</blockquote>
{{Messagebox|boxtype=note|Note text=If you use Linux for your BlueSpice installation, please note that the file system permissions may be lost when overwriting the code base!}}
== Check your current Version ==
==Check your current Version==
[[Datei:version43 cuted.png|rechts]]
Open the page <code>Special:Version</code> in your Wiki and check ''BlueSpice(Credits)'':[[File:version43_cuted.png|alt=Version information on special page "Version"|center]]
Open the page <code>Special:Verion</code> in your Wiki and check 'BlueSpice(Credits)' see: right-image
==If problems occur==


== If  problems occur ==
*Visit our [https://sourceforge.net/p/bluespice/support-requests/ SourceForge] support forum or  [http://sourceforge.net/tracker/?func=add&group_id=358032&atid=1494709 report a bug].
Visit our [https://sourceforge.net/p/bluespice/support-requests/ sourceforge.net] WebSite with FAQ and 'BlueSpice free Support Requests'
*For general questions regarding the installation, maintenance, and usage of BlueSpice free, go to our [https://sourceforge.net/p/bluespice/discussion/1249668/ SourceForge help forum].


Or the best way to get help with the software is by visiting [http://sourceforge.net/tracker/?func=add&group_id=358032&atid=1494709 SupportTickets].
<span><span /><span /><span /><span /><span /><br /></span>
 
[[de:Setup:Installationsanleitung/Patch_Update]]
For general questions regarding the installation, maintenance, and usage of BlueSpice free, go to our [https://sourceforge.net/p/bluespice/discussion/1249668/ SourceForge help forum] .
[[en:{{FULLPAGENAME}}]]

Latest revision as of 12:52, 27 March 2024

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

Screenshot of the file structure of the cuted result

Compare local files and some manual made settings

The following files and folders contain local changes:

  • 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
    example screenshot of a list of 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:

  1. open a console and go to the installation folder (LocalSettings.php directory-level, see: right-image)
  2. enter the following command:
    php maintenance/update.php
    
Note:If you use Linux for your BlueSpice installation, please note that the file system permissions may be lost when overwriting the code base!

Check your current Version

Open the page Special:Version in your Wiki and check BlueSpice(Credits):

Version information on special page "Version"

If problems occur




To submit feedback about this documentation, visit our community forum.

No categories assignedEdit

Discussions