Page 1 of 1

VTS phpOpenTracker Error: Could not connect to database.

Posted: Fri 7. Jan 2005, 11:18
by netkiller
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

Posted: Thu 20. Jan 2005, 17:34
by jmeyknecht
in das $phpwcms["root"] muss das gleiche rein, wie in der /include/inc_conf/conf.inc.php

in deinem Fall müsste es leer sein, also $phpwcms["root"]='';

Posted: Thu 20. Jan 2005, 22:24
by netkiller
nein, das funktioniert auch nicht. Ich habe alle Varianten durch mir fällt echt nix mehr ein :cry:
immer wieder phpOpenTracker Error: Could not connect to database.

Posted: Thu 20. Jan 2005, 22:31
by jmeyknecht
was kommt im Backend?
mal das "Problem" mit den temporary tables gecheckt?

Posted: Wed 2. Feb 2005, 22:49
by netkiller
:? da steht auch nur das er keine Verbindung zur Datenbank herstellen kann. Wenn ich zufällig den Datenbanktyp ändere von mysql auf mssql ändere steht keine Fehlermeldung mehr da aber es wird auch nichts angezeigt. Bitte lasst mir ein Licht aufgehen :idea:

Danke
Andreas

Posted: Thu 24. Feb 2005, 09:40
by xpla
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:

Code: Select all

if (!defined('POT_CONFIG_PATH')) {
  define('POT_CONFIG_PATH', POT_INCLUDE_PATH  . 'conf/');
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!

LG
Chris

I had the same problem

Posted: Sat 12. Mar 2005, 22:29
by snezko
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.

Posted: Mon 9. Jan 2006, 23:18
by chAb
xpla wrote:Hi!

In der Zeile 26:

Code: Select all

if (!defined('POT_CONFIG_PATH')) {
  define('POT_CONFIG_PATH', POT_INCLUDE_PATH  . 'conf/');
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!

LG
Chris
Have to be :

Code: Select all

if (!defined('POT_CONFIG_PATH')) {
  define('POT_CONFIG_PATH', 'POT_INCLUDE_PATH'  . '/conf/');
A "/" was missing before the "conf/"

And it works fine...