Zen Cart Logo
Forums / All Other Contributions/Addons / User tracking mod

User tracking mod

Views: 183,735

Results 361 to 380 of 861
10 Oct 2008, 6:05 PM
#361
chrissiemags avatar

chrissiemags

New Zenner

Join Date:
Sep 2008
Posts:
40
Plugin Contributions:
0

User tracking mod

I installed user tracking mod and all is well, BUT now when I try to login or log out as a customer I get a 404 error. Am I missing something somewhere?

15 Oct 2008, 3:01 PM
#362
rod44 avatar

rod44

Zen Follower

Join Date:
Apr 2006
Location:
Homebase: Spokane, WA
Posts:
101
Plugin Contributions:
0

Re: User tracking mod

Hello All!
Well, I have used UT for quite some time under 1.2.7 and LOVED IT! I recently created some new sites in 1.3.8a and after reading all these posts am a bit hesitant to just do a contrib install. Are there any of our outstanding contrib developers who are working on this to make the mods for the new version 1.3.8a?
Don't take this as a complaint, I still think this is the BEST cart software and the BEST SUPPORT TEAM HANDS DOWN!!!

16 Oct 2008, 1:47 AM
#363
chrissiemags avatar

chrissiemags

New Zenner

Join Date:
Sep 2008
Posts:
40
Plugin Contributions:
0

Re: User tracking mod

Hi all,
I did a search and can't find an answer ANYWHERE. My problem is if anyone has something in their shopping cart (guest or logged in member) user tracking shows that all entries have those items in their cart.

If someone can show me how to do a screen shot I will post a pic so you can understand what I mean.

Thanks for any help offered

5 Nov 2008, 5:24 PM
#364
cropinstop avatar

cropinstop

New Zenner

Join Date:
Oct 2006
Location:
Surprise Arizona
Posts:
73
Plugin Contributions:
0

Re: User tracking mod

Installed User tracking on ZC 1.3.8, and "Purge All Records" only purges a few records

May be associated with a logged Spider session (which I can not delete) which spans 3 days?

28 Nov 2008, 6:10 PM
#365
foteek avatar

foteek

New Zenner

Join Date:
May 2008
Posts:
50
Plugin Contributions:
0

Re: User tracking mod

Hi,
It looks like I'm not the only person with this problem, but I couldn't find an answer in the forum...

I installed User Tracker onto Zen Cart 1.3.8. It tracks admin usage perfectly, but does not track normal usage. I added the code to the bottom of MY_TEMPLATE/common/tpl_footer.php like this:

<!--bof- site copyright display --> <div id="siteinfoLegal" class="legalCopyright"><?php echo FOOTER_TEXT_BODY; ?></div> <!--eof- site copyright display --> <?php include($template->get_template_dir('tpl_footer_googleanalytics.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_footer_googleanalytics.php'); ?> <?php if (ZEN_CONFIG_USER_TRACKING == 'true') { zen_update_user_tracking(); } ?> <?php } // flag_disable_footer ?>

It seems like it should work. I think it's crashing on the call to zen_update_user_tracking() because if I echo something after it, it doesn't show up. If I echo before it, it shows up.

I know the function is OK, though, since it tracks admin usage correctly.

Any ideas???

Thanks!
TJ

16 Dec 2008, 5:40 AM
#366
ryanb4614 avatar

ryanb4614

Totally Zenned

Join Date:
Feb 2008
Posts:
556
Plugin Contributions:
0

Re: User tracking mod

Does this mod work for 1.3.8 with no errors??

13 Feb 2009, 9:03 AM
#367
raimond avatar

raimond

Zen Follower

Join Date:
Jul 2004
Location:
The Netherlands, Wierden
Posts:
423
Plugin Contributions:
0

Re: User tracking mod

Alternative 3: RECOMMENDED, track all users except bots/spiders, requires Configuration->Sessions->Prevent Spider Sessions->true (I don't know if this works with Zen-Cart versions older than 1.2.6d).
<?php if (ZEN_CONFIG_USER_TRACKING == 'true' && !$spider_flag && function_exists('zen_update_user_tracking')) { zen_update_user_tracking(); } ?>

Using this won't help to display/receive all spiders/bots in user tracking.
I see about 12000 page views in this 24 hour period. Most of it are sessions of spiders/bots.
Is there a spider/bots text file which tells who is a bot of spider, maybe that this text-file need to be updated?

18 Feb 2009, 11:39 AM
#368
gilby avatar

gilby

Totally Zenned

Join Date:
Aug 2005
Location:
Vic, Oz
Posts:
1,816
Plugin Contributions:
0

Re: User tracking mod

My host has recently upgraded PHP from 4.4.8 to 5.2.5 as the default.

Normally I receive upwards of 20,000 entries per day.

With PHP 4.4.8 I have no problems at all in displaying this quantity

With PHP 5.2.5 I can display fine up to 1,500 to 2,000 entries
Any more than this and I receive a "blank page"

I am using zen-cart 1.3.8a
MySQL 5.0.67-community-log
Apache/2.2.9

At this time I can switch between PHP versions but my host will soon remove 4.4.8

Any ideas what might be causing this problem?

23 Feb 2009, 10:29 PM
#369
gilby avatar

gilby

Totally Zenned

Join Date:
Aug 2005
Location:
Vic, Oz
Posts:
1,816
Plugin Contributions:
0

Re: User tracking mod

gilby:

My host has recently upgraded PHP from 4.4.8 to 5.2.5 as the default.

Normally I receive upwards of 20,000 entries per day.

With PHP 4.4.8 I have no problems at all in displaying this quantity

With PHP 5.2.5 I can display fine up to 1,500 to 2,000 entries
Any more than this and I receive a "blank page"

I am using zen-cart 1.3.8a
MySQL 5.0.67-community-log
Apache/2.2.9

At this time I can switch between PHP versions but my host will soon remove 4.4.8

Any ideas what might be causing this problem?

MORE INFO...
My host just updated to PHP 5.2.8 and the problem is still happening.

Its almost as if PHP5 has a different memory size or time out limit to PHP4

After about 15 seconds of "thinking" time with more than 2000 entries it comes back with a blank page

It works fine (as it does with PHP4 all the time) for more than 2000 entries.

It has something to do with the size of the page returned to display. Over a certain size it appears to give up and return a blank page.

Any suggestions???

25 Feb 2009, 3:51 PM
#370
lankeeyankee avatar

lankeeyankee

Totally Zenned

Join Date:
Jan 2007
Posts:
1,514
Plugin Contributions:
1

Re: User tracking mod

gilby:

MORE INFO...
My host just updated to PHP 5.2.8 and the problem is still happening.

Its almost as if PHP5 has a different memory size or time out limit to PHP4

After about 15 seconds of "thinking" time with more than 2000 entries it comes back with a blank page

It works fine (as it does with PHP4 all the time) for more than 2000 entries.

It has something to do with the size of the page returned to display. Over a certain size it appears to give up and return a blank page.

Any suggestions???

Sounds like you need to change some settings in your php.ini file. Change the max memory to 64MB, change the script execution time to something like 120 seconds or whatever will work for you. We use this mod with php 5.2.8 without any of these problems.

25 Feb 2009, 11:37 PM
#371
gilby avatar

gilby

Totally Zenned

Join Date:
Aug 2005
Location:
Vic, Oz
Posts:
1,816
Plugin Contributions:
0

Re: User tracking mod

lankeeyankee:

Sounds like you need to change some settings in your php.ini file. Change the max memory to 64MB, change the script execution time to something like 120 seconds or whatever will work for you. We use this mod with php 5.2.8 without any of these problems.

This problem seems to occur with any generated page size greater than 1meg.
It also occured with the Sales Report mod for large page sizes

The default memory size for php 4.4.8 was 8meg
The default memory size for the php 5.2.8 was also 8meg
Further reading at the php site say that the default for php 5.2.8 should be 32meg

As suggested above I used a custom php.ini file and changed the memory size to 32meg

No more problems :clap:
It seems that my host did not increase the memory size for php5 as they should have

Thanks for your suggestion.

21 Mar 2009, 5:58 PM
#372
mattstuible avatar

mattstuible

New Zenner

Join Date:
Jan 2006
Location:
Montreal, QC, Canada
Posts:
39
Plugin Contributions:
0

Re: User tracking mod

Hi all:

I just upgraded to 1.3.8a from 1.3.7 and I'd love to get the user tracking mod back working (I've looked into "Supertracker" but it looks to have some bugs too).

I PM'd bumba000 to request his modified files but have received no reply.

Does anyone have the working fileset for 1.3.8a? Please PM me!

Thanks

Matt

bumba000:

Im not going to put this up as an update but if you are having similar problems or any problems with your install into 1.3.8a pm me.
Ill give you the user_tracking.sql and the file set with the code that works in the footers.

I had forgotten what I did when I went from 1.3.7 to 1.3.8a to make user tracking work and I didn't bother to look at it now. I went to a working 1.3.8a store downloaded my working user tracking files. Then I went to my db and downloaded just the table structure of the user tracking table with the add if not exists.

I put all of this together in a package. Used it the other 1.3.8a stores and they work fine now too!:clap:

John

25 Mar 2009, 6:08 AM
#373
gxjenkins avatar

gxjenkins

Zen Follower

Join Date:
Apr 2007
Location:
Tampa, Florida
Posts:
180
Plugin Contributions:
0

Re: User tracking mod

I also sent a PM but nothing yet.

Super Tracker works, but I'd really like to use "User Tracker".

If anyone has this working I'd like to know what the fix is.

Thanks,
Gary

26 Mar 2009, 4:00 AM
#374
barry_g avatar

barry_g

New Zenner

Join Date:
Mar 2009
Posts:
47
Plugin Contributions:
0

Re: User tracking mod

I have it installed and working on 1.3.8 is it supposed to not work? I must be missing something.

26 Mar 2009, 8:00 AM
#375
gxjenkins avatar

gxjenkins

Zen Follower

Join Date:
Apr 2007
Location:
Tampa, Florida
Posts:
180
Plugin Contributions:
0

Re: User tracking mod

It will work in 1.3.8, but not like it did in 1.3.7, not even close.

For me I can't stop it from displaying spiders like Google, or Yahoo. Which means that once Google or Yahoo hits my site they will use up all allotted space and nothing else will be recorded.

It also records the pages I look at. I've set it to not record my IP, but it does anyway

I sell phyiscal products in the store, and Info products under Marketing Software Group.

I use Zoom Stats, http://www.marketingsoftwaregroup.com/products/zonestats/index.html

to record ALL pages, but User Tracker is best for store stats.

Did you upgrade from 1.37, or is your 1.38 a fresh install?
Do you have any other MODs installed?

Gary

26 Mar 2009, 11:02 AM
#376
barry_g avatar

barry_g

New Zenner

Join Date:
Mar 2009
Posts:
47
Plugin Contributions:
0

Re: User tracking mod

Hi Gary,,its a new install,,,so thats why I dont know what I m missing! Yes I have another mod installed. I installed image handler 2, which I think is working well. The Zen Cart software is the best.
Barry

27 Mar 2009, 3:31 PM
#377
mattstuible avatar

mattstuible

New Zenner

Join Date:
Jan 2006
Location:
Montreal, QC, Canada
Posts:
39
Plugin Contributions:
0

Re: User tracking mod

Yes...User Tracking for 1.3.7 was the best such software I've used.

The ability to follow the path of users through the store was very useful. I'm not sure that SuperTracker or any other software allows you to do the same thing.

I would certainly be willing to make a "donation" to someone with the programming ability (which I lack!) to get this working for 1.3.8.

Matt

28 Mar 2009, 6:47 AM
#378
barry_g avatar

barry_g

New Zenner

Join Date:
Mar 2009
Posts:
47
Plugin Contributions:
0

Re: User tracking mod

I could see how that would work now. Since my store is new I have only a few records to look at...now that google and yahoo are starting to spider they are taking up space that customers normally would. Now I understand. I would donate to.

Barry

26 May 2009, 4:20 PM
#379
phil020782 avatar

phil020782

Zen Follower

Join Date:
Jul 2007
Posts:
158
Plugin Contributions:
0

Re: User tracking mod

Is it possible for user tracking mod to track clicks to other pages.
I have a link on some of my products to open another page in a new window it can be seen here:
http://www.personalised-certificates.com/index.php?main_page=product_info&cPath=14&products_id=142

If you look in the product description and see the link at the bottom. I would like to be able to have user tracking track that page too.

Thanks

30 May 2009, 3:11 PM
#380
mattstuible avatar

mattstuible

New Zenner

Join Date:
Jan 2006
Location:
Montreal, QC, Canada
Posts:
39
Plugin Contributions:
0

Re: User tracking mod

No...this mod will only track the Zencart pages that a user accesses.

I still haven't got this mod working in v1.3.8. If anyone is able to help, please PM me!

Matt