It opens a window, but no graphics inside it (only xml code). Ofcourse I installed SVG-viewer without problems...
Statistic for Visitor, Host, OS etc.
- cyppher.nl
- Posts: 138
- Joined: Wed 19. May 2004, 18:38
- Location: Hilversum, Netherlands
Re: Hab noch ein Problem
There's also an (xml?) error when I tried to see the graphics in VTS...
It opens a window, but no graphics inside it (only xml code). Ofcourse I installed SVG-viewer without problems...

It opens a window, but no graphics inside it (only xml code). Ofcourse I installed SVG-viewer without problems...
How do you do? And how do you do your wife?
-
jmeyknecht
- Posts: 112
- Joined: Sun 11. Jan 2004, 23:13
- Location: Merseburg, Germany
- Contact:
yeah, your server does not know SVG, probably it's transfered with the wrong MIME TYPE.
Check this post: http://www.phpwcms.de/forum/viewtopic.php?p=22653
Check this post: http://www.phpwcms.de/forum/viewtopic.php?p=22653
PHP error
Could someone explain me such error:
Code: Select all
[Tue Nov 2 10:23:43 2004] [error] PHP Fatal error: Undefined class name 'phpop
entracker_config' in /usr/local/www/data-dist/include/inc_ext/phpOpenTracker/tmp
l/phpot.total.tmpl.php on line 48
In the howto.txt you have:
Index.php
Index.php
I guess it should be:#
#-----[ FIND ]------------------------------------------
#
// input content
echo $content["all"];
#
#-----[ BEFORE, ADD ]------------------------------------------
#
// replace all external URLs with exit.php?url=exit_url
preg_match_all("#<a href=(\"|')http://([^\"']+)(\"|')#i",$content["all"],$content_treffer,PREG_SET_ORDER);
$cnt_anz = count($content_treffer);
for ($i = 0; $i < $cnt_anz; $i++) {
$content["all"] = str_replace($content_treffer[$i][0],"<a href=\"exit.php?url=".urlencode($content_treffer[$i][2])."\"",$content["all"]);
}
In phpwcms.php#-----[ FIND ]------------------------------------------
#
// return rendered content
echo $content["all"];
Now look like:#
#-----[ FIND ]------------------------------------------
#
case "messages": //Messages
switch($p) {
case 0: include_once "./include/inc_tmpl/message.center.tmpl.php"; break; //Messages Overview
case 1: include_once "./include/inc_tmpl/message.send.tmpl.php"; break; //New Message
case 2: //Newsletter subscription
if($_SESSION["wcs_user_admin"] == 1) include_once "./include/inc_tmpl/message.subscription.tmpl.php";
break;
}
break;
case "messages": //Messages
switch($p) {
case 0: include_once ("./include/inc_tmpl/message.center.tmpl.php"); break; //Messages Overview
case 1: include_once ("./include/inc_tmpl/message.send.tmpl.php"); break; //New Message
case 2: //Newsletter subscription
if($_SESSION["wcs_user_admin"] == 1) include_once ("./include/inc_tmpl/message.subscription.tmpl.php");
break;
case 3: //Newsletter
if($_SESSION["wcs_user_admin"] == 1) include_once ("./include/inc_tmpl/message.newsletter.tmpl.php");
break;
case 4: //Newsletter subscribers
if($_SESSION["wcs_user_admin"] == 1) include_once ("./include/inc_tmpl/message.subscribers.tmpl.php");
break;
case 5: //Newsletter subscribers import
if($_SESSION["wcs_user_admin"] == 1) include_once ("./include/inc_tmpl/message.subscribersimport.tmpl.php");
break;
}
break;
http://www.studmed.dk Portal for doctors and medical students in Denmark
Gibt es mit dem VTS Mod eine Möglichkeit, die Besucher nach Postleitzahlen-Gebiet (für Deutschland) auszuwerten?
Ich habe viele Kunden, die nur deswegen zu 1und1 gehen, weil sie da eine "ganz tolle Deutschlandkarte mit genauen Zahlen" bekommen.
Klar, die Karte und diese Funktion ist nicht wirklich aussagekräftig, da viele User bzw. IP's nicht zugeteilt werden können. Aber interessant wäre es schon.
Oder gibts eine Möglichkeit, die Apache-Logfiles entsprechend auszuwerten? Meine google-Suche hat mir keine Ergebnisse gebracht
Ich habe viele Kunden, die nur deswegen zu 1und1 gehen, weil sie da eine "ganz tolle Deutschlandkarte mit genauen Zahlen" bekommen.
Klar, die Karte und diese Funktion ist nicht wirklich aussagekräftig, da viele User bzw. IP's nicht zugeteilt werden können. Aber interessant wäre es schon.
Oder gibts eine Möglichkeit, die Apache-Logfiles entsprechend auszuwerten? Meine google-Suche hat mir keine Ergebnisse gebracht
Works on the dev release 1.1.9
you just need to follow the instruction...
In these steps just do as I did:
IN index.php
In the new release it is:
IN phpwcms.php
you just need to follow the instruction...
In these steps just do as I did:
IN index.php
#
#-----[ FIND ]------------------------------------------
#
// input content
echo $content["all"];
In the new release it is:
instead of before then add the code after.// return rendered content
echo $content['page_start'];
echo $content["all"];
echo $content['page_end'];
IN phpwcms.php
in new release it is:$phpinfo_subnavid = "subnavid".randpassword(5);
$subnav .= '<tr><td align="right" class="subnavinactive"><a href="include/inc_ext/phpMyAdmin/" target="_blank" ';
$subnav .= "onMouseOver=\"".$phpinfo_subnavid.".src='img/subnav/subnav_1.gif'\" onMouseOut=\"".$phpinfo_subnavid.".src='img/subnav/subnav_0.gif'\">";
$subnav .= 'phpMyAdmin</a></td><td><img name="'.$phpinfo_subnavid.'" src="img/subnav/subnav_0.gif" width="15" height="13" border="0"></td></tr>';
}
}
break;
if($phpwcms["phpmyadmin"]) {
$subnav .= subnavtextext('phpMyAdmin', 'include/inc_ext/phpMyAdmin/', '_blank', 0);
}
}
break;
in the new release it is:#
#-----[ FIND ]------------------------------------------
#
case "messages": //Messages
switch($p) {
case 0: include_once "./include/inc_tmpl/message.center.tmpl.php"; break; //Messages Overview
case 1: include_once "./include/inc_tmpl/message.send.tmpl.php"; break; //New Message
case 2: //Newsletter subscription
if($_SESSION["wcs_user_admin"] == 1) include_once "./include/inc_tmpl/message.subscription.tmpl.php";
break;
}
break;
It seems to work on my local install.. hope it will work for you to...case 6: //Forums list
if($_SESSION["wcs_user_admin"] == 1) include_once ("include/inc_tmpl/forum.list.tmpl.php");
break;
}
break;
http://www.studmed.dk Portal for doctors and medical students in Denmark
i also am getting the fatal error:
at the end of my pages. that is this line:
in the file that it states. help please! i tried to use the creators website, but it is all in german, so i cant read it.
*fury*
Code: Select all
Fatal error: Undefined class name 'phpopentracker_config' in /home/loud1633/public_html/include/inc_ext/phpOpenTracker/phpOpenTracker.php on line 35Code: Select all
$PHPOPENTRACKER_CONFIGURATION = &phpOpenTracker_Config::getConfig();*fury*
Hello,
I have a little error in reference links in VTS-1.36 (using phpOpenTracker v1.50-RC2):
In results eg. "Top Document":
and the links in source:
http://www.flambeau.huindex.php/?fishing,hu
http://www.flambeau.huindex.php/?bazuka
http://www.flambeau.huindex.php/?kwikdraw,box
http://www.flambeau.huindex.php/
.
.
.
etc.
wrong link.
The correct links:
http://www.flambeau.hu/index.php?fishing,hu
http://www.flambeau.hu/index.php?bazuka
http://www.flambeau.hu/index.php?kwikdraw,box
http://www.flambeau.hu/index.php
Why?
Thx, Paul
Ps.: site use phpWCMS-1.1.4 and another use 1.2.1-DEV.
I have a little error in reference links in VTS-1.36 (using phpOpenTracker v1.50-RC2):
In results eg. "Top Document":
Code: Select all
/index.php?fishing,hu 70 7.38%
/index.php?bazuka 35 3.69%
/index.php?kwikdraw,box 31 3.27%
/index.php 30 3.16%
/index.php?sitemap,hu 29 3.06%
/index.php?packs 27 2.85%
/index.php?partners,hu 27 2.85%
/index.php?kwikdraw 26 2.74%
/index.php?contact,hu 25 2.63%http://www.flambeau.huindex.php/?fishing,hu
http://www.flambeau.huindex.php/?bazuka
http://www.flambeau.huindex.php/?kwikdraw,box
http://www.flambeau.huindex.php/
.
.
.
etc.
wrong link.
The correct links:
http://www.flambeau.hu/index.php?fishing,hu
http://www.flambeau.hu/index.php?bazuka
http://www.flambeau.hu/index.php?kwikdraw,box
http://www.flambeau.hu/index.php
Why?
Thx, Paul
Ps.: site use phpWCMS-1.1.4 and another use 1.2.1-DEV.
Ok!
In config:
FROM:
TO:
Thx, Paul
In config:
FROM:
Code: Select all
$phpwcms["site"] = 'http://www.flambeau.hu';Code: Select all
$phpwcms["site"] = 'http://www.flambeau.hu/';