Jump to content

SOLVED Parse Error 1-Click Upgrade Module


Recommended Posts

Hello,

I'm using Prestashop Version 1.4.6.2 and just installed the 1-Click Upgrade Module via add a module from my computer and it appears in my tools-tab, but this error occurs:

Parse error: syntax error, unexpected ',' in /var/www/web27/web/modules/autoupgrade/AdminSelfUpgrade.php on line 3569

Edited by Chi-VIP (see edit history)
Link to comment
Share on other sites

Para resolverlo se tiene que quitar  )  que esta antes de 'AdminSelfUpgrade'

 

$this->nextQuickInfo[] = sprintf($this->l('%1$s (size : %3$s) added to archive. %2$s left.') , 'AdminSelfUpgrade', true), $archiveFilename, count($filesToBackup), $size);

 

Tiene que quedar asi:

 

$this->nextQuickInfo[] = sprintf($this->l('%1$s (size : %3$s) added to archive. %2$s left.', 'AdminSelfUpgrade', true), $archiveFilename, count($filesToBackup), $size);

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...