Hello,
I need to upgrade my magento website, which is currently in version 1.7.0.1.
I followed this article for it:
https://maurisource.com/en/magento-upgrade-1-8-stable/
But when i want to execute this line: ./mage mage-setup . , I have anunexpected error:
Running initial setup... <br /> <b>Parse error</b>: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in <b>/home/inayamod/wwwdev/downloader/mage.php</b> on line <b>34</b><br /> <br /> <b>Parse error</b>: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in <b>/home/inayamod/wwwdev/downloader/mage.php</b> on line <b>34</b><br /> <br /> <b>Parse error</b>: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in <b>/home/inayamod/wwwdev/downloader/mage.php</b> on line <b>34</b><br />
My mage.php script is :
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Connect
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
define('DS', DIRECTORY_SEPARATOR);
define('PS', PATH_SEPARATOR);
define('BP', dirname(dirname(__FILE__)));
define('MAGENTO_ROOT', dirname(dirname(__FILE__)));
class __cli_Mage_Connect
{
private static $_instance;
protected $argv;
public static function instance()
{
if(!self::$_instance) {
self::$_instance = new self();
}
return self::$_instance;
}
public function init($argv)
{
$this->argv = $argv;
$this->setIncludes();
require_once("Mage/Autoload/Simple.php");
Mage_Autoload_Simple::register();
chdir(BP . DS . 'downloader' . DS);
return $this;
}
public function setIncludes()
{
if (defined('DEVELOPMENT_MODE')) {
$libPath = PS . dirname(BP) . DS . 'lib';
} else {
$libPath = PS . BP . DS . 'downloader' . DS . 'lib';
}
$includePath = BP . DS . 'app'
. $libPath
. PS . get_include_path();
set_include_path($includePath);
}
public function getCommands()
{
return Mage_Connect_Command::getCommands();
}
public function getFrontend()
{
$frontend = Mage_Connect_Frontend::getInstance('CLI');
Mage_Connect_Command::setFrontendObject($frontend);
return $frontend;
}
public function getConfig($fileName = 'connect.cfg')
{
if (isset($this->config)) {
return $this->config;
}
$config = new Mage_Connect_Config($fileName);
if (empty($config->magento_root)) {
$config->magento_root = dirname(dirname(__FILE__));
}
Mage_Connect_Command::setConfigObject($config);
$this->config = $config;
return $config;
}
public function detectCommand()
{
$argv = $this->argv;
if(empty($argv[1])) {
return false;
}
if(in_array($argv[1], $this->validCommands)) {
list($options,$params) = $this->parseCommandArgs($argv);
return array('name' => strtolower($argv[1]), 'options'=>$options, 'params'=>$params);
}
return false;
}
public function parseCommandArgs($argv)
{
$a = new Mage_System_Args();
$args = $a->getFiltered();
array_shift($args);
return array($a->getFlags(), $args);
}
public function runCommand($cmd, $options, $params)
{
$c = Mage_Connect_Command::getInstance($cmd);
$c->run($cmd, $options, $params);
}
private $_sconfig;
public function getSingleConfig()
{
if(!$this->_sconfig) {
$this->_sconfig = new Mage_Connect_Singleconfig(
$this->getConfig()->magento_root . DS .
$this->getConfig()->downloader_path . DS .
Mage_Connect_Singleconfig::DEFAULT_SCONFIG_FILENAME
);
}
Mage_Connect_Command::setSconfig($this->_sconfig);
return $this->_sconfig;
}
public function run()
{
$this->commands = $this->getCommands();
$this->frontend = $this->getFrontend();
$this->config = $this->getConfig();
$this->validCommands = array_keys($this->commands);
$this->getSingleConfig();
$cmd = $this->detectCommand();
if(!$cmd) {
$this->frontend->outputCommandList($this->commands);
} else {
$this->runCommand($cmd['name'], $cmd['options'], $cmd['params']);
}
}
}
if (defined('STDIN') && defined('STDOUT') && (defined('STDERR'))) {
__cli_Mage_Connect::instance()->init($argv)->run();
}
Thanks for your help.
Best regards,
Ravi Nags
Solved! Go to Solution.
[Solution]
I'm using a shared server with OVH.
- I had to configure the .ovhconfig file to use PHP 5.4.
- I updated the "www/mage" script, to update php binary path to php5.4 path.