Is this Part with the adodb needed ?
ispCP itself use adodb so we don´t need it a second time.
Code:
/var/www/ispcp/gui/include/adodb# ls -l
total 588
-r--r--r-- 1 vu2000 www-data 15433 Feb 17 19:50 adodb-active-record.inc.php
-r--r--r-- 1 vu2000 www-data 8306 Feb 17 19:50 adodb-csvlib.inc.php
-r--r--r-- 1 vu2000 www-data 27014 Feb 17 19:50 adodb-datadict.inc.php
-r--r--r-- 1 vu2000 www-data 8543 Feb 17 19:50 adodb-error.inc.php
-r--r--r-- 1 vu2000 www-data 2750 Feb 17 19:50 adodb-errorhandler.inc.php
-r--r--r-- 1 vu2000 www-data 2277 Feb 17 19:50 adodb-errorpear.inc.php
-r--r--r-- 1 vu2000 www-data 2216 Feb 17 19:50 adodb-exceptions.inc.php
-r--r--r-- 1 vu2000 www-data 1598 Feb 17 19:50 adodb-iterator.inc.php
-r--r--r-- 1 vu2000 www-data 35342 Feb 17 19:50 adodb-lib.inc.php
-r--r--r-- 1 vu2000 www-data 3200 Feb 17 19:50 adodb-memcache.lib.inc.php
-r--r--r-- 1 vu2000 www-data 8119 Feb 17 19:50 adodb-pager.inc.php
-r--r--r-- 1 vu2000 www-data 9564 Feb 17 19:50 adodb-pear.inc.php
-r--r--r-- 1 vu2000 www-data 31487 Feb 17 19:50 adodb-perf.inc.php
-r--r--r-- 1 vu2000 www-data 321 Feb 17 19:50 adodb-php4.inc.php
-r--r--r-- 1 vu2000 www-data 41804 Feb 17 19:50 adodb-time.inc.php
-r--r--r-- 1 vu2000 www-data 55332 Feb 17 19:50 adodb-xmlschema.inc.php
-r--r--r-- 1 vu2000 www-data 62667 Feb 17 19:50 adodb-xmlschema03.inc.php
-r--r--r-- 1 vu2000 www-data 121232 Feb 17 19:50 adodb.inc.php
dr-xr-xr-x 2 vu2000 www-data 4096 Feb 17 20:26 contrib
dr-xr-xr-x 2 vu2000 www-data 4096 Feb 17 20:26 cute_icons_for_site
dr-xr-xr-x 2 vu2000 www-data 4096 Feb 17 20:26 datadict
dr-xr-xr-x 2 vu2000 www-data 4096 Feb 17 20:26 docs
dr-xr-xr-x 2 vu2000 www-data 4096 Feb 17 20:26 drivers
dr-xr-xr-x 2 vu2000 www-data 4096 Feb 17 20:26 lang
-r--r--r-- 1 vu2000 www-data 26079 Feb 17 19:50 license.txt
dr-xr-xr-x 3 vu2000 www-data 4096 Feb 17 20:26 pear
dr-xr-xr-x 2 vu2000 www-data 4096 Feb 17 20:26 perf
-r--r--r-- 1 vu2000 www-data 6461 Feb 17 19:50 pivottable.inc.php
-r--r--r-- 1 vu2000 www-data 1731 Feb 17 19:50 readme.txt
-r--r--r-- 1 vu2000 www-data 1575 Feb 17 19:50 rsfilter.inc.php
-r--r--r-- 1 vu2000 www-data 2399 Feb 17 19:50 server.php
dr-xr-xr-x 3 vu2000 www-data 4096 Feb 17 20:26 session
dr-xr-xr-x 2 vu2000 www-data 4096 Feb 17 20:26 tests
-r--r--r-- 1 vu2000 www-data 3474 Feb 17 19:50 toexport.inc.php
-r--r--r-- 1 vu2000 www-data 5724 Feb 17 19:50 tohtml.inc.php
-r--r--r-- 1 vu2000 www-data 1453 Feb 17 19:50 xmlschema.dtd
-r--r--r-- 1 vu2000 www-data 1719 Feb 17 19:50 xmlschema03.dtd
dr-xr-xr-x 2 vu2000 www-data 4096 Feb 17 20:26 xsl
Also this one
Code:
<?php
require_once'adodb5/adodb.inc.php';
define('host','localhost');
define('user','root'); //enter user access to table ISPC
define('pass','tucontraseña'); //enter your password
define('database','ispcp');
$db = ADONewConnection('mysql');
$db->Connect(host, user, pass, database);
?>
Is there a way we can use the ispcp configs for this ?
So that we only need to create the change_password.php.
BTW: Does this work with the crypted PW´s ?
If so, it is a easy way to get in ispCP per default.
Greez BeNe