Changes between Version 1 and Version 2 of 6.0.0002to6.0.0003


Ignore:
Timestamp:
Oct 26, 2007, 9:38:30 AM (17 years ago)
Author:
SergeyZ
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • 6.0.0002to6.0.0003

    v1 v2  
     1 
     2== Upgrade Instructions from 6.0.0002 / 6.0.0003_beta to 6.0.0003 == 
     3 
     4 
    15'''Step 0''': Backup your Database and Files. 
    26 
     
    2327''NOTE'': Please log into your '''Admin Panel -> Settings -> Profile Fields''' and make sure that the '''!DescriptionMe''' field is located under the '''Description''' divider. If it's not there, please drag it there using the green arrow icons. 
    2428 
    25 Your Dolphin installation has been successfully upgraded. 
     29 
     30'''Step 5:''' If you have already installed 0003 beta build before upgrade, do the following instructions: 
     31Go to your inc/header.inc.php file, find the line: 
     32 
     33{{{if( $_SERVER['HTTP_HOST'] != $aUrl['host'] )}}} 
     34 
     35and replace it with: 
     36 
     37{{{if( isset($_SERVER['HTTP_HOST']) and $_SERVER['HTTP_HOST'] != $aUrl['host'] )}}} 
     38 
     39If you have installed 6.0.0002, do not do this step and follow the next. 
     40 
     41'''Step 6:''' Go to your inc/header.inc.php and find following line: 
     42 
     43{{{define('DATABASE_NAME', $db['db']);}}} 
     44 
     45And add after it the next code: 
     46 
     47 
     48{{{ 
     49$aUrl = parse_url( $site['url'] ); 
     50if( isset($_SERVER['HTTP_HOST']) and $_SERVER['HTTP_HOST'] != $aUrl['host'] ) { 
     51    header( "Location:http://{$aUrl['host']}{$_SERVER['REQUEST_URI']}" ); 
     52    exit; 
     53} 
     54}}} 
     55 
     56 
     57 
     58 
     59'''Your Dolphin installation has been successfully upgraded.''' 
     60 
    2661 
    2762''NOTE'': For those of you whose database is not converted into utf8 format, here are the instructions how to do it using '''phpMyAdmin''': 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.
Fork me on GitHub