Better statistics?
Better statistics?
Did anyone find a way to incorparate an other statmodule then VTS?
Just some statisticsscript that works just to put in some php-code. I have tried with bbclone.de which I love but it doesn't allow me to put in a snippet into phpwcms.
Anyone know which one that works? Because I find VTS statistics just a mess and no real stats.
Thanks / Gnolen
Just some statisticsscript that works just to put in some php-code. I have tried with bbclone.de which I love but it doesn't allow me to put in a snippet into phpwcms.
Anyone know which one that works? Because I find VTS statistics just a mess and no real stats.
Thanks / Gnolen
I am using BBClone on almost every web page I have created (phpwcms, MT, Drupal, b2, Wordpress, etc.) and it works like a charm.
Cheers
- Jérôme
Cheers
- Jérôme
wauw could be a cool phpwcms modJérôme wrote:I am using BBClone on almost every web page I have created (phpwcms, MT, Drupal, b2, Wordpress, etc.) and it works like a charm.
Cheers
- Jérôme

http://www.studmed.dk Portal for doctors and medical students in Denmark
On which way did you include it in phpwcms?Jérôme wrote:I am using BBClone
A new mod would be very nice

Ralf
In the first step, I have included the bbclone-snipped in my index.php. I just pasted the code in front of the DOCTYPE declaration, e.g.:
This way, I have at least all page counts and all information about my visitors - I have no precise information on which pages they have been, but the rest.
Crazy, huh?
Code: Select all
<?php
define("_BBC_PAGE_NAME", "Generic Pagename");
define("_BBCLONE_DIR", "/web/www/html/bbclone/");
define("COUNTER", _BBCLONE_DIR."mark_page.php");
if (is_readable(COUNTER)) include_once(COUNTER);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
Crazy, huh?

It's crazy , just give you a word and you have done a whole sentence - impressive jérôme. yeah! :-)
Gruß/ regards cyrano
--------------------------------------------------------
templates -> http://www.128.weitzelmedia.de
planepix -> http://www.planepix.de
XING -> https://www.xing.com/profile/Thomas_Weitzel3
--------------------------------------------------------
templates -> http://www.128.weitzelmedia.de
planepix -> http://www.planepix.de
XING -> https://www.xing.com/profile/Thomas_Weitzel3
Make sence J. but it didn't work for me...The bbclone works and the path is right but still zero!
I did it like:
I did it like:
Code: Select all
$content['page_start'] = '
<?php
define("_BBC_PAGE_NAME", "Test");
define("_BBCLONE_DIR", "bbclone/");
define("COUNTER", _BBCLONE_DIR."mark_page.php");
if (is_readable(COUNTER)) include_once(COUNTER);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">';
As I see now (I have compared with the current release which you seem to use, too) things have changed since v1.2
. So it seems not to be so easy as before. I will have to look at it, sorry that I can't tell you more.
I see that you use a relative path for your _BBCLONE_DIR - try to put in there the absolute path (e.g. /usr/www/web1/html/bbclone/) - I remember that I hade similar problems and this did it for me...

I see that you use a relative path for your _BBCLONE_DIR - try to put in there the absolute path (e.g. /usr/www/web1/html/bbclone/) - I remember that I hade similar problems and this did it for me...