Jump to content

[Solved] Prestashop 1.5.0 come modificare la cartella dov'è installato ?


Recommended Posts

Con la versione 1.4.9 per variare la cartella dove è installato Prestashop bisogna modificare la voce

define('__PS_BASE_URI__', '/miacartella/');

del file settings.inc.php presente nella cartella config.

Nella versione 1.5.0 la voce da modificare è :

define('_PS_DIRECTORY_', '/miacartella/');

 

Però non funziona .

Qualcuno sà se c'è altro da modificare ?

 

Grazie !

Edited by lucamax (see edit history)
Link to comment
Share on other sites

Dunque a differenza della 1.4.9 non bisogna modificare il file settings.inc.php presente nella cartella config.

Basta andare in Preferenze > Seo & URLs ed impostare la voce "URL principale" .

 

Una cosa strana è che nel file settings.inc.php pare che il define

define('_PS_DIRECTORY_', '/miacartella/');

non venga considerato, infatti facendo la variazione nel BO del "URL principale" il valore "miacartella" non viene modificato ma tutto sembra funzionare lo stesso.

Edited by lucamax (see edit history)
Link to comment
Share on other sites

Aggiungo per completezza di informazione la tabella del database della versione 1.5.0 dove è memorizzata l'URI del sito.

 

INSERT INTO `ps_shop_url` (`id_shop_url`, `id_shop`, `domain`, `domain_ssl`, `physical_uri`, `virtual_uri`, `main`, `active`) VALUES (1, 1, 'www.miosito.com', 'www.miosito.com', '/miacartella/', '', 1, 1);

Link to comment
Share on other sites

  • 4 years later...

Su prestashop 1.6.1.9

 

ho fatto queste modifiche che hanno funzionato:

 

su file .htaccess presente nella root di prestashop:

 

RewriteRule . - [E=REWRITEBASE:/TUA CARTELLA/]
 
e
 
ErrorDocument 404 /TUA CARTELLA/index.php?controller=404
 
 
mentre su database:
 
ps_shop_url` (`id_shop_url`, `id_shop`, `domain`, `domain_ssl`, `physical_uri`, `virtual_uri`, `main`, `active`) VALUES (1, 1, 'www.miosito.com', 'www.miosito.com', '/TUA CARTELLA/', '', 1, 1);
 
 
Ciao
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...