ietax Posted December 13, 2018 Share Posted December 13, 2018 Salve, come si può collegarsi al db di prestashop per script esterni? Utilizzavo questo metodo che ad oggi non funziona più (ho cambiato password del db da cpanel e non me la prende più.. boh).. $host = "localhost"; $user = "xxxxx"; $pass = "xxxxxx"; $db = "name_db"; mysql_connect($host, $user, $pass); mysql_select_db($db); unset($host,$user,$pass,$db); Mi sembrava che funzionasse anche qualcosa del tipo.. // Connessione database set_time_limit(0); define('PS_ROOT_DIR', getcwd()."/.."); include_once(PS_ROOT_DIR."/config/config.inc.php"); // Fine connessione, manca controllo e stop operazione ma anche questo sembra non funzionare... Una soluzione che "prenda" direttamente i dati dai file di configurazione del db sarebbe ottima, grazie Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now