-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v.7.3.0 & Upgrade script from 7.3.0.RC to 7.3.0
- Loading branch information
Alex Trofimov
committed
Mar 4, 2016
1 parent
ea6a97e
commit 616efdf
Showing
7 changed files
with
33 additions
and
3 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,5 +1,5 @@ | ||
<?php | ||
|
||
$site['ver'] = '7.3'; | ||
$site['build'] = '0'; // RC | ||
$site['ver'] = '7.3'; | ||
$site['build'] = '0'; | ||
|
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
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,8 @@ | ||
<?php | ||
|
||
$mixCheckResult = 'Update can not be applied'; | ||
|
||
if ('7.3.0.RC' == $this->oDb->getOne("SELECT `VALUE` FROM `sys_options` WHERE `Name` = 'sys_tmp_version'")) | ||
$mixCheckResult = true; | ||
|
||
return $mixCheckResult; |
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,9 @@ | ||
<b>IMPORTANT!!!</b><br /> | ||
Automatic part of upgrade is completed. Please do the following to complete upgrade process: <br /> | ||
<ul> | ||
<li>Clean <b>/cache/</b>, <b>/cache_public/</b> and <b>/tmp/</b> folders via FTP or SSH, leave only .htaccess file there if one exists</li> | ||
<li>Recompile system language file from Admin Panel -> Settings -> Languages Settings -> Languages</li> | ||
<li>Clean <b>/cache/</b> folder again</li> | ||
<li>Recompile Forum language file for all templates from Admin Panel -> Modules -> Forum -> Manage Forum</li> | ||
<li>Remove <b>/upgrade/</b> directory</li> | ||
</ul> |
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,4 @@ | ||
# Ignore everything in this directory | ||
* | ||
# Except this file | ||
!.gitignore |
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,3 @@ | ||
<?php | ||
|
||
return true; |
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,6 @@ | ||
|
||
|
||
-- last step is to update current version | ||
|
||
UPDATE `sys_options` SET `VALUE` = '7.3.0' WHERE `Name` = 'sys_tmp_version'; | ||
|