Thread: Supertracker

Page 1 of 2 12 LastLast
Results 1 to 10 of 324

Hybrid View

  1. #1
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: Supertracker

    Replace
    Code:
    $db->Execute("UPDATE " . TABLE_SUPERTRACKER . " SET last_click = NOW(), exit_page='" . zen_db_input(zen_db_prepare_input(urldecode($_SERVER['REQUEST_URI']))) . "', exit_page_name='" . $page_title . "', num_clicks=num_clicks+1, added_cart='" . $tracking_data->fields['added_cart'] . "', categories_viewed='" . $categories_viewed . "', products_viewed='" . $tracking_data->fields['products_viewed'] . "', customer_id='" . $customer_id . "', completed_purchase='" . $completed_purchase . "', cart_contents='" . $cart_contents . "', cart_total = '" . $cart_total . "', order_id = '" . $order_id . "' WHERE tracking_id='" . $tracking_data->fields['tracking_id'] . "'");
    by
    Code:
          $db->Execute("UPDATE " . TABLE_SUPERTRACKER . "
                        SET last_click = NOW(),
                            exit_page='" . zen_db_input(zen_db_prepare_input(urldecode($_SERVER['REQUEST_URI']))) . "',
                            exit_page_name='" . $page_title . "',
                            num_clicks=num_clicks+1,
                            added_cart='" . zen_db_input($tracking_data->fields['added_cart']) . "',
                            categories_viewed='" . zen_db_input($categories_viewed) . "',
                            products_viewed='" . zen_db_input($tracking_data->fields['products_viewed']) . "',
                            customer_id='" . (int)$customer_id . "',
                            completed_purchase='" . zen_db_input($completed_purchase) . "',
                            cart_contents='" . zen_db_input($cart_contents) . "',
                            cart_total = '" . zen_db_input($cart_total) . "',
                            order_id = '" . (int)$order_id . "'
                        WHERE tracking_id='" . (int)$tracking_data->fields['tracking_id'] . "'");

  2. #2
    Join Date
    Dec 2007
    Location
    Atlanta, GA
    Posts
    1
    Plugin Contributions
    0

    Default Re: Supertracker

    Newbie to Zen-Cart here, and I just want to thank you for developing this mod. Works great, and I hope to add some contributions as well.

    Thanks again!

  3. #3
    Join Date
    Mar 2007
    Location
    NJ
    Posts
    68
    Plugin Contributions
    0

    Default Re: Supertracker

    Bez.... any ideas why my issue exists? Any help would be appreciated.
    Regards,

    John

  4. #4

    application error Re: Supertracker

    Hi Andrew

    I have had Supertracker loaded for a few days without GeoIP.dat and it worked fine (except the country report).

    Yesterday I unzipped GeoIP and loaded it to my shop/includes directory but now get the following error reports:

    Warning: supertracker::include(includes/geoip.inc) [function.supertracker-include]: failed to open stream: No such file or directory in /home/charcool/public_html/shop/includes/classes/supertracker.php on line 190

    Warning: supertracker::include() [function.include]: Failed opening 'includes/geoip.inc' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/charcool/public_html/shop/includes/classes/supertracker.php on line 190

    Fatal error: Call to undefined function geoip_open() in /home/charcool/public_html/shop/includes/classes/supertracker.php on line 191

    My site is at www.charcool.com

    Have I messed up the unzipping or have I loaded it to the wrong place?

    Thanks for your help

  5. #5
    Join Date
    Jul 2004
    Posts
    246
    Plugin Contributions
    0

    Default Re: Supertracker

    The file geoip.inc should be in /shop/admin/includes/

    Just had a look at your site and this file does not exist.
    UK based Zen Cart Web Designer here www.handcoded.co.uk

  6. #6
    Join Date
    Jul 2007
    Posts
    64
    Plugin Contributions
    0

    Default Re: Supertracker

    Will installing Supertracker slow the website? Is it using logfile analysis?

  7. #7

    Default Re: Supertracker

    longstockings, thanks.

    I have moved GeoIP to the includes/admin/folder and seems to be working ok now. It is really a pretty good mod.

    cheers and happy new year

  8. #8
    Join Date
    May 2007
    Posts
    42
    Plugin Contributions
    0

    Default Re: Supertracker

    Hi Guys,

    Ive had this mod installed for a while now, but for some reason it doesnt track Top Sales Generating Referrers.

    Has anyone else noticed this ? Im also using Super Orders so not sure if this would make a difference ?

    Thanks
    Shane

  9. #9
    Join Date
    Sep 2006
    Location
    Tampa, FL
    Posts
    35
    Plugin Contributions
    0

    Default Re: Supertracker

    I've installed this mod and it says Database Info: the Supertracker database currently holds 0 rows.

    I have geoip.inc and geoip.dat installed in admin/includes. Any suggestions?

    Thanks!
    [FONT=Comic Sans MS]CustomiZthat.com[/FONT]
    POWERED BY:
    Zen-Cart & Martini's

    LOVE Zen!

  10. #10
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Supertracker

    Quote Originally Posted by a_berezin View Post
    Replace
    Code:
    $db->Execute("UPDATE " . TABLE_SUPERTRACKER . " SET last_click = NOW(), exit_page='" . zen_db_input(zen_db_prepare_input(urldecode($_SERVER['REQUEST_URI']))) . "', exit_page_name='" . $page_title . "', num_clicks=num_clicks+1, added_cart='" . $tracking_data->fields['added_cart'] . "', categories_viewed='" . $categories_viewed . "', products_viewed='" . $tracking_data->fields['products_viewed'] . "', customer_id='" . $customer_id . "', completed_purchase='" . $completed_purchase . "', cart_contents='" . $cart_contents . "', cart_total = '" . $cart_total . "', order_id = '" . $order_id . "' WHERE tracking_id='" . $tracking_data->fields['tracking_id'] . "'");
    by
    Code:
          $db->Execute("UPDATE " . TABLE_SUPERTRACKER . "
                        SET last_click = NOW(),
                            exit_page='" . zen_db_input(zen_db_prepare_input(urldecode($_SERVER['REQUEST_URI']))) . "',
                            exit_page_name='" . $page_title . "',
                            num_clicks=num_clicks+1,
                            added_cart='" . zen_db_input($tracking_data->fields['added_cart']) . "',
                            categories_viewed='" . zen_db_input($categories_viewed) . "',
                            products_viewed='" . zen_db_input($tracking_data->fields['products_viewed']) . "',
                            customer_id='" . (int)$customer_id . "',
                            completed_purchase='" . zen_db_input($completed_purchase) . "',
                            cart_contents='" . zen_db_input($cart_contents) . "',
                            cart_total = '" . zen_db_input($cart_total) . "',
                            order_id = '" . (int)$order_id . "'
                        WHERE tracking_id='" . (int)$tracking_data->fields['tracking_id'] . "'");
    Where is the file location where this patch needs to be applied?

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Supertracker
    By enquirer66 in forum All Other Contributions/Addons
    Replies: 5
    Last Post: 2 Mar 2011, 08:37 PM
  2. SuperTracker
    By ma.r.a in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 11 Feb 2011, 08:19 PM
  3. Supertracker referrals?
    By mlbacher in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 24 Aug 2009, 07:53 PM
  4. supertracker mod
    By confused_aswell in forum General Questions
    Replies: 2
    Last Post: 1 Aug 2008, 12:55 PM
  5. Supertracker Add-on
    By bcmartinez in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 19 May 2006, 01:24 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg