VTS phpOpenTracker Error: Could not connect to database.
VTS phpOpenTracker Error: Could not connect to database.
Hallo, ich bin leicht verzweifelt da ich den connect zur Datenbank nicht hinbekomme
Vielleicht kann mir ja jemand helfen.
ich habe folgende Einstellungen in der phpOpenTracker.php ich habe eine mysql Datenbank
$phpwcms["db_host"] = 'localhost';
$phpwcms["db_user"] = 'web2';
$phpwcms["db_pass"] = '*******';
$phpwcms["db_table"] = 'usr_web2_1';
$phpwcms["site"] = 'http://www.feuerwehr-fraureuth.de/';
$phpwcms["root"] = '/include/inc_ext/phpOpenTracker/phpOpenTracker/conf/';
Die gleichen Einstellungen habe ich auch für WCMS nur ist da ja der Pfad für die Datenbank etwas anders. Datenbankname ist usr_web2_1
pot_add_data 0 MyISAM 1,0 KB -
pot_conversions 0 MyISAM 1,0 KB -
pot_documents 0 MyISAM 1,0 KB -
pot_exit_targets 0 MyISAM 1,0 KB -
pot_hostnames 0 MyISAM 1,0 KB -
pot_operating_systems 0 MyISAM 1,0 KB -
pot_referers 0 MyISAM 1,0 KB -
pot_search_engines 0 MyISAM 1,0 KB -
pot_user_agents 0 MyISAM 1,0 KB -
wcms__phpwcms_address 1 MyISAM 2,1 KB -
wcms__phpwcms_article 64 MyISAM 152,2 KB -
wäre echt super, wenn mir jemand helfen könnte ich glaube ich habe schon alle Einstellungen einmal probiert jedoch ohne den gewünschten Erfolg.
Danke
Vielleicht kann mir ja jemand helfen.
ich habe folgende Einstellungen in der phpOpenTracker.php ich habe eine mysql Datenbank
$phpwcms["db_host"] = 'localhost';
$phpwcms["db_user"] = 'web2';
$phpwcms["db_pass"] = '*******';
$phpwcms["db_table"] = 'usr_web2_1';
$phpwcms["site"] = 'http://www.feuerwehr-fraureuth.de/';
$phpwcms["root"] = '/include/inc_ext/phpOpenTracker/phpOpenTracker/conf/';
Die gleichen Einstellungen habe ich auch für WCMS nur ist da ja der Pfad für die Datenbank etwas anders. Datenbankname ist usr_web2_1
pot_add_data 0 MyISAM 1,0 KB -
pot_conversions 0 MyISAM 1,0 KB -
pot_documents 0 MyISAM 1,0 KB -
pot_exit_targets 0 MyISAM 1,0 KB -
pot_hostnames 0 MyISAM 1,0 KB -
pot_operating_systems 0 MyISAM 1,0 KB -
pot_referers 0 MyISAM 1,0 KB -
pot_search_engines 0 MyISAM 1,0 KB -
pot_user_agents 0 MyISAM 1,0 KB -
wcms__phpwcms_address 1 MyISAM 2,1 KB -
wcms__phpwcms_article 64 MyISAM 152,2 KB -
wäre echt super, wenn mir jemand helfen könnte ich glaube ich habe schon alle Einstellungen einmal probiert jedoch ohne den gewünschten Erfolg.
Danke
-
- Posts: 112
- Joined: Sun 11. Jan 2004, 23:13
- Location: Merseburg, Germany
- Contact:
-
- Posts: 112
- Joined: Sun 11. Jan 2004, 23:13
- Location: Merseburg, Germany
- Contact:
Hi!
Ich hatte das gleiche Problem!
Zuerst änderte ich den "TEMPORARY TABLE" Create-Befehl auf den normalen CREATE TABLE Befehl um, dann fand ich einen Fehler in der phpOpenTracker.php.
In der Zeile 26:
musst du folgendes umändern:
Ich hoffe, es funktioniert dann bei dir!
LG
Chris
Ich hatte das gleiche Problem!
Zuerst änderte ich den "TEMPORARY TABLE" Create-Befehl auf den normalen CREATE TABLE Befehl um, dann fand ich einen Fehler in der phpOpenTracker.php.
In der Zeile 26:
Code: Select all
if (!defined('POT_CONFIG_PATH')) {
define('POT_CONFIG_PATH', POT_INCLUDE_PATH . 'conf/');
Code: Select all
if (!defined('POT_CONFIG_PATH')) {
define('POT_CONFIG_PATH', 'POT_INCLUDE_PATH' . 'conf/');
LG
Chris
Pay a vist: http://www.alternativewest.at
I had the same problem
I have result. When you modified the file inserting yours adtabase login and pass. than you uploaded the file to the server. and what happen ??? look, this file is on the same filder twice. One is with phpOpenTracker.php and second phpopentracker.php
so, delete you the file with lowercases and edit once the second. and than it works good.
so, delete you the file with lowercases and edit once the second. and than it works good.
many thanks Snezko
Have to be :xpla wrote:Hi!
In der Zeile 26:
musst du folgendes umändern:Code: Select all
if (!defined('POT_CONFIG_PATH')) { define('POT_CONFIG_PATH', POT_INCLUDE_PATH . 'conf/');
Ich hoffe, es funktioniert dann bei dir!Code: Select all
if (!defined('POT_CONFIG_PATH')) { define('POT_CONFIG_PATH', 'POT_INCLUDE_PATH' . 'conf/');
LG
Chris
Code: Select all
if (!defined('POT_CONFIG_PATH')) {
define('POT_CONFIG_PATH', 'POT_INCLUDE_PATH' . '/conf/');
And it works fine...