Revision 2082
Added by darkviper almost 12 years ago
| branches/2.8.x/DEVINFOS | ||
|---|---|---|
| 1 |
WebsiteBaker 2.8.3 Developing Instructions/Informations |
|
| 2 |
======================================================= |
|
| 3 |
|
|
| 4 |
$Id$ |
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
24 Apr-2012 Build 1676 |
|
| 10 |
---------------------- |
|
| 11 |
If you use function rm_full_dir |
|
| 12 |
now disable Run-time notices and return boolean: |
|
| 13 |
create your own error messages |
|
| 14 |
|
|
| 15 |
17 Apr-2012 Build 1665 |
|
| 16 |
---------------------- |
|
| 17 |
add developer informations in advanced settings |
|
| 18 |
info will be shown in footer only for system admin |
|
| 19 |
|
|
| 20 |
add page_icon_dir in advanced settings |
|
| 21 |
default directory /templates/*/title_images |
|
| 22 |
/*/ placeholder will be replaced with default template |
|
| 23 |
put images to show in frontend template |
|
| 24 |
in page settings you find an additional field to choose an image |
|
| 25 |
|
|
| 26 |
17 Apr-2012 Build 1664 |
|
| 27 |
---------------------- |
|
| 28 |
|
|
| 29 |
|
|
| 30 |
01 Apr-2012 Build 1655 |
|
| 31 |
---------------------- |
|
| 32 |
handling replyto in form module |
|
| 33 |
You can directly answer to the recipient, sending by a authenticated user |
|
| 34 |
then in from the recipient name is shown |
|
| 35 |
|
|
| 36 |
22 Mar-2012 Build 1639 |
|
| 37 |
---------------------- |
|
| 38 |
Refer: new structure in config.php set by new installation |
|
| 39 |
backwards compability is given, so const can be defined in /framework/initialize.php |
|
| 40 |
add const DEBUG to config.php (default = false) |
|
| 41 |
add const ADMIN_DIRECTORY to config.php (default = admin) |
|
| 42 |
[code] |
|
| 43 |
define('DEBUG', false);
|
|
| 44 |
define('DB_TYPE', 'mysql');
|
|
| 45 |
define('DB_HOST', 'localhost');
|
|
| 46 |
define('DB_NAME', 'xxxxxx');
|
|
| 47 |
define('DB_USERNAME', 'xxxxxx');
|
|
| 48 |
define('DB_PASSWORD', 'xxxxxx');
|
|
| 49 |
define('TABLE_PREFIX', 'wb_');
|
|
| 50 |
|
|
| 51 |
define('WB_URL', 'http://xxxxxxxx.xx');
|
|
| 52 |
define('ADMIN_DIRECTORY', 'admin'); // no leading/trailing slash or backslash!! A simple directory only!!
|
|
| 53 |
|
|
| 54 |
require_once(dirname(__FILE__).'/framework/initialize.php'); |
|
| 55 |
[/code] |
|
| 56 |
|
|
| 57 |
|
|
| 58 |
09 Mar-2012 Build 1634 |
|
| 59 |
---------------------- |
|
| 60 |
If using the $MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] in your module, please add |
|
| 61 |
following code to your script, |
|
| 62 |
requires: include_once (WB_PATH.'/framework/functions.php'); |
|
| 63 |
[code] |
|
| 64 |
$aServerEmail = (defined('SERVER_EMAIL') && SERVER_EMAIL != '' ? SERVER_EMAIL : $_SERVER['SERVER_NAME']);
|
|
| 65 |
$replace = array('SERVER_EMAIL' => $aServerEmail );
|
|
| 66 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = replace_vars($MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'], $replace); |
|
| 67 |
[/code] |
|
| 68 |
|
|
| 69 |
|
|
| 70 | 0 | |
| branches/2.8.x/INSTALL | ||
|---|---|---|
| 1 |
WebsiteBaker 2.8.3 Installation Instructions
|
|
| 1 |
WebsiteBaker 2.8.4 Installation Instructions
|
|
| 2 | 2 |
================================================= |
| 3 | 3 |
|
| 4 | 4 |
Step 1 - Preparing your webspace |
| 5 |
- Login to your webspace account and create a database. |
|
| 5 |
- Login to your webspace account and create a mySQL-Database. |
|
| 6 |
(take care to set anything by default to utf8 / utf8_unicode_ci if possible) |
|
| 6 | 7 |
|
| 7 | 8 |
Step 2 - Download WebsiteBaker |
| 8 |
- Download "WebsiteBaker 2.8.3" from http://www.websitebaker2.org/en/download/latest-version.php
|
|
| 9 |
- Download "WebsiteBaker 2.8.4" from http://www.websitebaker.org/en/download/latest-version.php
|
|
| 9 | 10 |
- Unzip the package to your local machine |
| 10 | 11 |
|
| 11 | 12 |
Step 3 - Preparing the Installation-Package |
| 12 | 13 |
- Rename "config.php.new" to "config.php" |
| 14 |
- Rename "setup.ini.php.new" to "setup.ini.php" |
|
| 13 | 15 |
- Delete File "upgrade-script.php" |
| 14 | 16 |
|
| 15 | 17 |
Step 4 - Uploading |
| 16 | 18 |
- Upload all files to your Webspace |
| 17 | 19 |
|
| 18 | 20 |
Step 5 - Installation |
| 19 |
- Call in your Browser www.yourdomainname.com
|
|
| 21 |
- Call in your Browser http://yourdomainname.com/install/
|
|
| 20 | 22 |
- Follow the Installation Instructions |
| 21 | 23 |
|
| 22 | 24 |
Step 6 - Cleaning |
| 23 | 25 |
- Delete folder "/install" |
| 24 | 26 |
|
| 25 |
Have fun with WB 2.8.3 |
|
| 26 |
|
|
| 27 |
Have fun with WB 2.8.4 |
|
| branches/2.8.x/CHANGELOG | ||
|---|---|---|
| 11 | 11 |
! = Update/Change |
| 12 | 12 |
=============================================================================== |
| 13 | 13 |
|
| 14 |
07 Jan-2014 Build 2082 Manuela v.d.Decken(DarkViper) |
|
| 15 |
! added missing translation in admin/users |
|
| 16 |
! DOC-files updated. |
|
| 14 | 17 |
07 Jan-2014 Build 2081 Manuela v.d.Decken(DarkViper) |
| 15 | 18 |
# admin/pages/settings_save Typofix Line 39 |
| 16 | 19 |
07 Jan-2014 Build 2080 Manuela v.d.Decken(DarkViper) |
| branches/2.8.x/UPGRADE | ||
|---|---|---|
| 1 |
WebsiteBaker 2.8.3 UPGRADE Instructions
|
|
| 1 |
WebsiteBaker 2.8.4 UPGRADE Instructions
|
|
| 2 | 2 |
================================================= |
| 3 | 3 |
|
| 4 | 4 |
This file describes the upgrade from all Versions |
| 5 |
since WB 2.7 directly to WB 2.8.3.
|
|
| 5 |
since WB 2.7 directly to WB 2.8.4.
|
|
| 6 | 6 |
|
| 7 | 7 |
Step 1 is different, depending from the WB-Version |
| 8 | 8 |
you start. |
| ... | ... | |
| 12 | 12 |
|
| 13 | 13 |
|
| 14 | 14 |
**************************************** |
| 15 |
* Upgrade from WB 2.8.2SP2 to WB 2.8.3 * |
|
| 16 |
* Upgrade from WB 2.8.2SP1 to WB 2.8.3 * |
|
| 17 |
* Upgrade from WB 2.8.2 to WB 2.8.3 * |
|
| 15 |
* Upgrade from WB 2.8.3SP1 to WB 2.8.4 * |
|
| 16 |
* Upgrade from WB 2.8.3 to WB 2.8.4 * |
|
| 17 |
* Upgrade from WB 2.8.2SP2 to WB 2.8.4 * |
|
| 18 |
* Upgrade from WB 2.8.2SP1 to WB 2.8.4 * |
|
| 19 |
* Upgrade from WB 2.8.2 to WB 2.8.4 * |
|
| 18 | 20 |
**************************************** |
| 19 | 21 |
|
| 20 | 22 |
Step 1 - Preparing your existing system |
| ... | ... | |
| 25 | 27 |
|
| 26 | 28 |
|
| 27 | 29 |
**************************************** |
| 28 |
* Upgrade from WB 2.8.1 to WB 2.8.3 *
|
|
| 29 |
* Upgrade from WB 2.8.0 to WB 2.8.3 *
|
|
| 30 |
* Upgrade from WB 2.8.1 to WB 2.8.4 *
|
|
| 31 |
* Upgrade from WB 2.8.0 to WB 2.8.4 *
|
|
| 30 | 32 |
**************************************** |
| 31 | 33 |
|
| 32 | 34 |
Step 1 - Preparing your existing system |
| ... | ... | |
| 43 | 45 |
|
| 44 | 46 |
|
| 45 | 47 |
**************************************** |
| 46 |
* Upgrade from WB 2.7 to WB 2.8.3 *
|
|
| 48 |
* Upgrade from WB 2.7 to WB 2.8.4 *
|
|
| 47 | 49 |
**************************************** |
| 48 | 50 |
|
| 49 | 51 |
Step 1 - Preparing your existing system |
| ... | ... | |
| 64 | 66 |
|
| 65 | 67 |
|
| 66 | 68 |
**************************************** |
| 67 |
* Upgrade from WB 2.8.2SP2 to WB 2.8.3 * |
|
| 68 |
* Upgrade from WB 2.8.2SP1 to WB 2.8.3 * |
|
| 69 |
* Upgrade from WB 2.8.2 to WB 2.8.3 * |
|
| 70 |
* Upgrade from WB 2.8.1 to WB 2.8.3 * |
|
| 71 |
* Upgrade from WB 2.8.0 to WB 2.8.3 * |
|
| 72 |
* Upgrade from WB 2.7 to WB 2.8.3 * |
|
| 69 |
* Upgrade from WB 2.8.3SP1 to WB 2.8.4 * |
|
| 70 |
* Upgrade from WB 2.8.3 to WB 2.8.4 * |
|
| 71 |
* Upgrade from WB 2.8.2SP2 to WB 2.8.4 * |
|
| 72 |
* Upgrade from WB 2.8.2SP1 to WB 2.8.4 * |
|
| 73 |
* Upgrade from WB 2.8.2 to WB 2.8.4 * |
|
| 74 |
* Upgrade from WB 2.8.1 to WB 2.8.4 * |
|
| 75 |
* Upgrade from WB 2.8.0 to WB 2.8.4 * |
|
| 76 |
* Upgrade from WB 2.7 to WB 2.8.4 * |
|
| 73 | 77 |
**************************************** |
| 74 | 78 |
|
| 75 |
Step 2 - Download WebsiteBaker
|
|
| 76 |
- Download "WebsiteBaker 2.8.3" from http://www.websitebaker2.org/en/download/latest-version.php
|
|
| 79 |
Step 2 - Download WebsiteBaker |
|
| 80 |
- Download "WebsiteBaker 2.8.4" from http://www.websitebaker.org/en/download/latest-version.php
|
|
| 77 | 81 |
- Unzip the package to your local machine |
| 78 | 82 |
|
| 79 | 83 |
Step 3 - Preparing the Upgrade-Package |
| 80 |
- Delete File "config.php.new" |
|
| 81 | 84 |
- Delete Folder "/install" |
| 82 | 85 |
- Change favicon to your own |
| 83 | 86 |
|
| ... | ... | |
| 90 | 93 |
Login as superadmin to your backend, upgrade-script starts automatically |
| 91 | 94 |
- if the script not starts automatically and if you upgrade from WB 2.7: |
| 92 | 95 |
Call in your Browser www.yourdomainname.com/upgrade-script.php |
| 93 |
- Follow the Upgrade-Instructions
|
|
| 96 |
- Follow the Upgrade-Instructions |
|
| 94 | 97 |
|
| 95 | 98 |
Step 6 - Cleaning |
| 96 |
- Delete File upgrade-script.php |
|
| 99 |
- Delete File "config.php.new" if exists |
|
| 100 |
- Delete File "setup.ini.php.new" if exists |
|
| 101 |
- Delete File upgrade-script.php if exists |
|
| 97 | 102 |
|
| 98 | 103 |
Step 7 - Actualize Addons Table (just to be shure) |
| 99 | 104 |
- Go to "Add-ons" - "Advanced" |
| ... | ... | |
| 107 | 112 |
- Go to "Add-ons" - "Modules" - "Advanced" |
| 108 | 113 |
- Execute "upgrade.php" from Modul "WYSIWYG" |
| 109 | 114 |
|
| 110 |
Have fun with WB 2.8.3 |
|
| 115 |
Have fun with WB 2.8.4 |
|
| branches/2.8.x/wb/admin/interface/version.php | ||
|---|---|---|
| 51 | 51 |
|
| 52 | 52 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
| 53 | 53 |
if(!defined('VERSION')) define('VERSION', '2.8.4');
|
| 54 |
if(!defined('REVISION')) define('REVISION', '2081');
|
|
| 54 |
if(!defined('REVISION')) define('REVISION', '2082');
|
|
| 55 | 55 |
if(!defined('SP')) define('SP', '');
|
| branches/2.8.x/wb/admin/users/languages/NL.php | ||
|---|---|---|
| 38 | 38 |
$MESSAGE['USERS_USERNAME_TOO_SHORT'] = 'The loginname you entered was too short'; |
| 39 | 39 |
$MESSAGE['USERS_WAITING_ACTIVATION'] = 'Awaiting user activation'; |
| 40 | 40 |
$TEXT['ACTIVE'] = 'Actief'; |
| 41 |
$TEXT['DEACTIVE'] = 'Deactivate'; |
|
| 42 |
$TEXT['DEACTIVED'] = 'Disabled'; |
|
| 41 |
$TEXT['ACTIVATE'] = 'Activeren'; |
|
| 42 |
$TEXT['DEACTIVE'] = 'Deactiveren'; |
|
| 43 |
$TEXT['DEACTIVED'] = 'Inactief'; |
|
| 43 | 44 |
$TEXT['ADD'] = 'Toevoegen'; |
| 44 | 45 |
$TEXT['ARE_YOU_SURE'] = 'Weet u het zeker?'; |
| 45 | 46 |
$TEXT['BACK'] = 'Terug'; |
| branches/2.8.x/wb/admin/users/languages/DE.php | ||
|---|---|---|
| 40 | 40 |
$MESSAGE['USERS_WAITING_ACTIVATION'] = 'Erwarte Benutzer Aktivierung'; // new |
| 41 | 41 |
|
| 42 | 42 |
$TEXT['ACTIVE'] = 'Aktiv'; |
| 43 |
$TEXT['DEACTIVE'] = 'Deaktivieren'; // new |
|
| 43 |
$TEXT['ACTIVATE'] = 'Aktivieren'; |
|
| 44 |
$TEXT['DEACTIVE'] = 'Deaktiveren'; // new |
|
| 44 | 45 |
$TEXT['DEACTIVED'] = 'Deaktiviert'; // new |
| 45 | 46 |
$TEXT['ADD'] = 'Hinzufügen'; |
| 46 | 47 |
$TEXT['ARE_YOU_SURE'] = 'Sind Sie sicher?'; |
| branches/2.8.x/README | ||
|---|---|---|
| 10 | 10 |
======= |
| 11 | 11 |
WebsiteBaker is released under the GNU General Public License, |
| 12 | 12 |
Copyright (C) 2004-2009 Ryan Djurovich. |
| 13 |
Copyright (C) 2009-2011 Website Baker Org. e.V.
|
|
| 13 |
Copyright (C) 2009-2014 Website Baker Org. e.V.
|
|
| 14 | 14 |
Please refer to the COPYING file for a copy of the license. |
| 15 | 15 |
|
| 16 | 16 |
Installation |
| ... | ... | |
| 22 | 22 |
Before using WebsiteBaker please note: you must not remove/change any |
| 23 | 23 |
copyright notices in the any code contained in this package. |
| 24 | 24 |
Also, it is appreciated if you leave a link somewhere on your website, |
| 25 |
which links to the WebsiteBaker website. (http://www.websitebaker2.org/)
|
|
| 25 |
which links to the WebsiteBaker website. (http://www.websitebaker.org/)
|
|
| 26 | 26 |
|
| 27 | 27 |
Support |
| 28 | 28 |
======= |
| 29 | 29 |
For information about finding help: |
| 30 |
http://www.websitebaker2.org/forum/
|
|
| 30 |
http://www.websitebaker.org/forum/ |
|
| 31 | 31 |
|
| 32 | 32 |
Community |
| 33 | 33 |
========= |
| 34 | 34 |
For more information about finding help: |
| 35 |
http://www.websitebaker2.org/forum/
|
|
| 35 |
http://www.websitebaker.org/forum/ |
|
| 36 | 36 |
|
| 37 | 37 |
Bugs |
| 38 | 38 |
==== |
| 39 | 39 |
To submit a bug: |
| 40 |
http://www.websitebaker2.org/
|
|
| 40 |
http://www.websitebaker.org/ |
|
| 41 | 41 |
|
| 42 | 42 |
Contribute |
| 43 | 43 |
========== |
| 44 | 44 |
For information about how to contribute (donating, etc): |
| 45 |
http://www.websitebaker2.org |
|
| 45 |
http://www.websitebaker.org |
|
Also available in: Unified diff
! added missing translation in admin/users
! DOC-files updated.