VTS phpOpenTracker Error: Could not connect to database.

If you've problems with unsupported - non official ;-) - functionalities use this forum please.
Post Reply
netkiller
Posts: 26
Joined: Fri 7. Jan 2005, 10:43

VTS phpOpenTracker Error: Could not connect to database.

Post 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
jmeyknecht
Posts: 112
Joined: Sun 11. Jan 2004, 23:13
Location: Merseburg, Germany
Contact:

Post 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"]='';
netkiller
Posts: 26
Joined: Fri 7. Jan 2005, 10:43

Post 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.
jmeyknecht
Posts: 112
Joined: Sun 11. Jan 2004, 23:13
Location: Merseburg, Germany
Contact:

Post by jmeyknecht »

was kommt im Backend?
mal das "Problem" mit den temporary tables gecheckt?
netkiller
Posts: 26
Joined: Fri 7. Jan 2005, 10:43

Post 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
xpla
Posts: 7
Joined: Thu 24. Feb 2005, 09:36
Contact:

Post 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
snezko
Posts: 21
Joined: Fri 11. Mar 2005, 18:33
Location: Wien
Contact:

I had the same problem

Post 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.
many thanks Snezko
chAb
Posts: 8
Joined: Thu 29. Dec 2005, 23:28
Location: saint-Etienne, France
Contact:

Post 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...
Post Reply