Revision 692
Added by doc over 17 years ago
| trunk/CHANGELOG | ||
|---|---|---|
| 14 | 14 |
10-Feb-2008 Thomas Hornik |
| 15 | 15 |
# CAPTCHA: Wrong text for calc_ttf-captcha. |
| 16 | 16 |
10-Feb-2008 Christian Sommer |
| 17 |
! added disclaimer to the upgrade-script as the script is not sufficiently tested yet |
|
| 17 | 18 |
! made Website Header field in Settings visible per default |
| 18 | 19 |
! modified all templates (display Website Header, use show_menu instead of page_menu) |
| 19 | 20 |
! added highlighting of active input elements to all WB backend areas; changed some colors |
| trunk/wb/upgrade-script.php | ||
|---|---|---|
| 37 | 37 |
<head> |
| 38 | 38 |
<title>Upgrade-Script</title> |
| 39 | 39 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| 40 |
|
|
| 41 |
<style type="text/css"> |
|
| 42 |
.red { background-color:#FF0000 }
|
|
| 43 |
.green { background-color:#00FF00 }
|
|
| 44 |
|
|
| 45 |
#warning {
|
|
| 46 |
width: 90%; |
|
| 47 |
padding: 10px; |
|
| 48 |
margin-left: 5%; |
|
| 49 |
margin-bottom: 5px; |
|
| 50 |
border: 1px solid #FF0000; |
|
| 51 |
background-color: #FFDBDB; |
|
| 52 |
} |
|
| 53 |
|
|
| 54 |
p { line-height:1.5em; }
|
|
| 55 |
|
|
| 56 |
</style> |
|
| 40 | 57 |
</head> |
| 41 | 58 |
<body> |
| 42 |
<!-- |
|
| 43 |
<style type="text/css"> |
|
| 44 |
*.red { background-color:#FF0000 }
|
|
| 45 |
*.green { background-color:#00FF00 }
|
|
| 46 |
</style> |
|
| 47 |
--> |
|
| 59 |
<?php |
|
| 60 |
/** |
|
| 61 |
AT THIS POINT IN TIME THE UPGRADE SCRIPT IS NOT MATURE ENOUGH |
|
| 62 |
SO PROVIDE A WARNING TO BACKUP THE DATABASE AND THE PAGES DIRECTORY |
|
| 63 |
BEFORE EXECUTING THIS SCRIPT (doc) |
|
| 64 |
*/ |
|
| 65 |
if(!isset($_GET['action']) || $_GET['action'] != 'upgrade') {
|
|
| 66 |
?> |
|
| 67 |
<div id="warning"> |
|
| 68 |
<strong>WARNING:</strong> |
|
| 69 |
<p>The actual WB 2.7 version is still a developer version. <strong>It is not recommended to use this release in a |
|
| 70 |
productive environment</strong>.<p>The upgrade-script is not sufficiently tested yet, so please <strong>backup your database and /pages directory before executing the upgrade script</strong>.<br />You may loose all your data if something goes wrong!!</p><p>If you want to start the upgrade-script, please click on: <a href="upgrade-script.php?action=upgrade" target="_self">execute upgrade-script</a></p> |
|
| 71 |
</div> |
|
| 72 |
<?php |
|
| 73 |
die; |
|
| 74 |
} ?> |
|
| 75 |
|
|
| 48 | 76 |
<h2>Upgrade-script</h2> |
| 49 | 77 |
<p> |
| 50 | 78 |
will upgrade Website Baker 2.6.5 / 2.6.7 to version 2.7 |
Also available in: Unified diff
added disclaimer to the upgrade-script as the script is not sufficiently tested yet