Changeset 12925

Show
Ignore:
Timestamp:
07/09/09 09:10:01 (7 months ago)
Author:
asha
Message:

Vtiger version Changed from 5.1.0 RC to 5.1.0

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • vtigercrm/branches/5.1/install/CreateConfigFile.php

    r12914 r12925  
    1414 
    1515// vtiger CRM version number; do not edit! 
    16 $vtiger_version = "5.1.0 RC"; 
    17 $release_date = "June 2009"; 
     16$vtiger_version = "5.1.0"; 
     17$release_date = "July 2009"; 
    1818 
    1919if (isset($_REQUEST['db_hostname'])) 
  • vtigercrm/branches/5.1/install/CreateTables.php

    r12906 r12925  
    172172                <tr> 
    173173                        <td align=center class=small> 
    174                         <b>vtigercrm-5.1.0 RC is all set to go!</b> 
     174                        <b>vtigercrm-5.1.0 is all set to go!</b> 
    175175                        <hr noshade size=1> 
    176176                        <div style="width:100%;padding:10px; "align=left> 
  • vtigercrm/branches/5.1/install/MigrationComplete.php

    r12911 r12925  
    107107                echo "<br><b><font color='red'>We strongly suggest you to rename the install directory.</font></b><br>"; 
    108108        } 
    109 $_SESSION['VTIGER_DB_VERSION']='5.1.0 RC'; 
     109$_SESSION['VTIGER_DB_VERSION']='5.1.0'; 
    110110} 
    111111//populate Calendar data 
  • vtigercrm/branches/5.1/install/SetInstallationConfig.php

    r12906 r12925  
    100100        $db_name = $dbconfig['db_name']; 
    101101        else 
    102         $db_name = 'vtigercrm510rc'; 
     102        $db_name = 'vtigercrm510'; 
    103103 
    104104        !isset($_REQUEST['db_drop_tables']) ? $db_drop_tables = "0" : $db_drop_tables = $_REQUEST['db_drop_tables']; 
     
    143143        else { 
    144144                !isset($_REQUEST['db_hostname']) ? $db_hostname = $hostname: $db_hostname = $_REQUEST['db_hostname']; 
    145                 !isset($_REQUEST['db_name']) ? $db_name = "vtigercrm510rc" : $db_name = $_REQUEST['db_name']; 
     145                !isset($_REQUEST['db_name']) ? $db_name = "vtigercrm510" : $db_name = $_REQUEST['db_name']; 
    146146                !isset($_REQUEST['db_drop_tables']) ? $db_drop_tables = "0" : $db_drop_tables = $_REQUEST['db_drop_tables']; 
    147147                !isset($_REQUEST['host_name']) ? $host_name= $hostname : $host_name= $_REQUEST['host_name']; 
  • vtigercrm/branches/5.1/install/welcome.php

    r12906 r12925  
    8484                                                                <tr class='level3'> 
    8585                                                                        <td valign=top align=left class="small contentDisplay" style="padding-left:20px;height:250px;" colspan=2> 
    86                                                                                 <p style='text-align:center;font-weight:bold;'>This configuration wizard helps you install vtigerCRM 5.1.0 RC.</p> 
     86                                                                                <p style='text-align:center;font-weight:bold;'>This configuration wizard helps you install vtigerCRM 5.1.0.</p> 
    8787                                                                                <p><br> 
    8888                                                                                vtiger CRM is a community-driven, fully open source, CRM software project. <br><br> 
  • vtigercrm/branches/5.1/modules/Migration/versions.php

    r12906 r12925  
    2121                        "504rc"=>"5.0.4 RC", 
    2222                        "504"=>"5.0.4", 
     23                        "510rc"=>"5.1.0 RC", 
    2324                 ); 
    2425 
    25 $current_version = '510rc'; 
     26$current_version = '510'; 
    2627 
    2728?> 
  • vtigercrm/branches/5.1/pkg/bin/startvTiger.sh

    r12877 r12925  
    112112fi 
    113113echo "" 
    114 echo "Checking if the vtigercrm510rc database already exists" 
     114echo "Checking if the vtigercrm510 database already exists" 
    115115echo "" 
    116 echo "select 1" | ./bin/mysql --user=$mysql_username --password=$mysql_password  --port=$mysql_port --socket=$mysql_socket -D vtigercrm510rc >/dev/null 
     116echo "select 1" | ./bin/mysql --user=$mysql_username --password=$mysql_password  --port=$mysql_port --socket=$mysql_socket -D vtigercrm510 >/dev/null 
    117117if [ $? -ne 0 ]; then 
    118118        echo "" 
    119         echo "Database vtigercrm510rc does not exist. Creating database vtigercrm510rc
     119        echo "Database vtigercrm510 does not exist. Creating database vtigercrm510
    120120        echo "" 
    121         ./bin/mysql --user=$mysql_username --password=$mysql_password  --port=$mysql_port --socket=$mysql_socket -e "create database if not exists vtigercrm510rc
     121        ./bin/mysql --user=$mysql_username --password=$mysql_password  --port=$mysql_port --socket=$mysql_socket -e "create database if not exists vtigercrm510
    122122fi 
    123123 
  • vtigercrm/branches/5.1/pkg/bin/uninstallvtiger.sh

    r12895 r12925  
    1818if [ ${APACHE_STATUS} == "false" ] 
    1919then 
    20         diff conf/httpd.conf conf/vtiger_conf/vtigerCRM510-RC/httpd.conf > /dev/null; 
     20        diff conf/httpd.conf conf/vtiger_conf/vtigerCRM510/httpd.conf > /dev/null; 
    2121        if [ $? -eq 0 ] 
    2222        then 
    23                 cp conf/vtigerCRMBackup/vtigerCRM510-RC/httpd.vtiger.crm.conf conf/httpd.conf 
     23                cp conf/vtigerCRMBackup/vtigerCRM510/httpd.vtiger.crm.conf conf/httpd.conf 
    2424                echo "The httpd.conf file successfully reverted" 
    2525        else 
    26                 echo "The httpd.conf file under apache/conf has been edited since installation. Hence the uninstallation will not revert the httpd.conf file. The original httpd.conf file is present in <apache home>/conf/vtigerCRMBackup/vtigerCRM510-RC/httpd.vtiger.crm.conf. Kindly revert the same manually" 
     26                echo "The httpd.conf file under apache/conf has been edited since installation. Hence the uninstallation will not revert the httpd.conf file. The original httpd.conf file is present in <apache home>/conf/vtigerCRMBackup/vtigerCRM510/httpd.vtiger.crm.conf. Kindly revert the same manually" 
    2727        fi 
    2828 
    29         diff modules/libphp4.so modules/vtiger_modules/vtigerCRM510-RC/libphp4.so > /dev/null; 
     29        diff modules/libphp4.so modules/vtiger_modules/vtigerCRM510/libphp4.so > /dev/null; 
    3030        if [ $? -eq 0 ] 
    3131        then 
    32                 cp modules/vtigerCRMBackup/vtigerCRM510-RC/libphp4.vtiger.crm.so modules/libphp4.so 
     32                cp modules/vtigerCRMBackup/vtigerCRM510/libphp4.vtiger.crm.so modules/libphp4.so 
    3333                echo "The libphp4.so file successfully reverted" 
    3434        else 
    35                 echo "The libphp4.so file under apache/modules has been edited since installation. Hence the uninstallation will not revert the libphp4.so file. The original libphp4.so file is present in <apache home>/modules/vtigerCRMBackup/vtigerCRM510-RC/libphp4.vtiger.crm.so. Kindly revert the same manually" 
     35                echo "The libphp4.so file under apache/modules has been edited since installation. Hence the uninstallation will not revert the libphp4.so file. The original libphp4.so file is present in <apache home>/modules/vtigerCRMBackup/vtigerCRM510/libphp4.vtiger.crm.so. Kindly revert the same manually" 
    3636        fi 
    3737         
    3838        cd - 
    3939         
    40         if [ -d $PWD/vtigerCRM510-RC ]; then 
     40        if [ -d $PWD/vtigerCRM510 ]; then 
    4141                echo "Uninstalling vtigerCRM from the system..." 
    42                 rm -rf ../conf/vtiger_conf/vtigerCRM510-RC 
    43                 rm -rf ../modules/vtiger_modules/vtigerCRM510-RC 
    44                 rm -rf vtigerCRM510-RC 
     42                rm -rf ../conf/vtiger_conf/vtigerCRM510 
     43                rm -rf ../modules/vtiger_modules/vtigerCRM510 
     44                rm -rf vtigerCRM510 
    4545                echo "Uninstallation of vtigerCRM completed" 
    4646                cd ${HOME} 
     
    4949else 
    5050        cd - 
    51         if [ -d $PWD/vtigerCRM510-RC ]; then 
     51        if [ -d $PWD/vtigerCRM510 ]; then 
    5252                echo "Uninstalling vtigerCRM from the system..." 
    53                 rm -rf ../conf/vtiger_conf/vtigerCRM510-RC 
    54                 rm -rf ../modules/vtiger_modules/vtigerCRM510-RC 
    55                 rm -rf vtigerCRM510-RC 
     53                rm -rf ../conf/vtiger_conf/vtigerCRM510 
     54                rm -rf ../modules/vtiger_modules/vtigerCRM510 
     55                rm -rf vtigerCRM510 
    5656                echo "Uninstallation of vtigerCRM completed" 
    5757                cd ${HOME} 
  • vtigercrm/branches/5.1/vtigerversion.php

    r12877 r12925  
    1010$patch_version = ''; 
    1111$modified_database = ''; 
    12 $vtiger_current_version = '5.1.0 RC'; 
     12$vtiger_current_version = '5.1.0'; 
    1313$_SESSION['vtiger_version'] = $vtiger_current_version; 
    1414?>