Title: Statistics Tracking now working
Last modified: May 5, 2026

---

# Statistics Tracking now working

 *  Resolved [Elton Heta](https://wordpress.org/support/users/eltonheta/)
 * (@eltonheta)
 * [1 week, 5 days ago](https://wordpress.org/support/topic/statistics-tracking-now-working/)
 * I have tried this option on several different websites and it does not work, 
   it even skips that website when clicking down from the pending request.
   I think
   you should review it as soon as possible because it may be a security issue with
   the latest wordpress and new versions of php

Viewing 8 replies - 1 through 8 (of 8 total)

 *  Plugin Author [e4jvikwp](https://wordpress.org/support/users/e4jvikwp/)
 * (@e4jvikwp)
 * [1 week, 5 days ago](https://wordpress.org/support/topic/statistics-tracking-now-working/#post-18899286)
 * Hello,
 * Thanks for your message. The “Statistics Tracking” is a simple tool that tracks
   the actions performed through the booking process by your visitors. It should
   tell you the rental dates selected, and how the visitor interacted with the search
   results (provenience, vehicle, insurance type etc..). In case the booking process
   led to a booking conversion, the system will tell you the rental order ID that
   was generated.
 * The purpose for activating and monitoring this tool is to check the “abandon 
   rate” as well as the most demanded dates or vehicles. There cannot be any security
   issues, because it’s just a silent and internal logger. No conflicts with the
   versions of WordPress or PHP may arise as it’s a protected tool of our plugin’s
   framework that doesn’t require any particular software or system version.
 * If you said the tool isn’t working for you, please make sure to enable it from
   the apposite settings, and make sure your IP address is not flagged to be skipped/
   ignored. You may want to test it by using different Internet connections (hence
   different IP addresses) and browsers, as it relies on cookies.
 * We invite you to reach out to our team through our official website should you
   have any technical issues.
 * The VikWP Team
 *  Thread Starter [Elton Heta](https://wordpress.org/support/users/eltonheta/)
 * (@eltonheta)
 * [1 week, 5 days ago](https://wordpress.org/support/topic/statistics-tracking-now-working/#post-18899302)
 * This issue cannot be considered resolved with just one explanation, that tool
   is not working and I have the pro version purchased directly from you.
 * That option when I try to access it goes down the website, I tried to look for
   any error in the console while trying to access it and no error appears.
 * Check it, test it and I believe you will understand what I am talking about!
 *  Plugin Author [e4jvikwp](https://wordpress.org/support/users/e4jvikwp/)
 * (@e4jvikwp)
 * [1 week, 5 days ago](https://wordpress.org/support/topic/statistics-tracking-now-working/#post-18899322)
 * Hello,
 * We didn’t know you were using the Pro/commercial version of the plugin, but if
   this is the case, then we need you to open a support ticket from our website,
   or we would go off-topic on this forum.
 * Also, we didn’t understand your website was going down when you tried to access
   that page in the wp-admin section. In this case the reason could be the fact 
   that the database table is overloaded, but we are probably dealing with a technical
   issue related to your own installation. This is not a general bug, because that’s
   a built-in feature that has been used by thousands of active plugin installations
   for years.
 * The only way to resolve this issue is to investigate directly on your current
   installation, and in order to provide the necessary assistance, we kindly ask
   you to open a support ticket from our official website at support dot e4j dot
   com. This way we can understand what’s taking down your website. It is probably
   a large query, a script execution timeout or a memory exhausting issue.
 * Thank you,
   The VikWP Team
 *  Thread Starter [Elton Heta](https://wordpress.org/support/users/eltonheta/)
 * (@eltonheta)
 * [1 week, 5 days ago](https://wordpress.org/support/topic/statistics-tracking-now-working/#post-18899380)
 * The problem was the database was overflowing, how can I limit the storage of 
   track data to the last 3 months, for example?
 *  Plugin Author [e4jvikwp](https://wordpress.org/support/users/e4jvikwp/)
 * (@e4jvikwp)
 * [1 week, 4 days ago](https://wordpress.org/support/topic/statistics-tracking-now-working/#post-18899497)
 * Thanks for sharing the source of the issue. Ideally, the back-end page is querying
   the database through limits to support pagination and avoid overloading of the
   memory. It would have been good to understand if the issue was a script execution
   timeout (the loading took too long to complete), or if the issue was the server
   memory being exhausted, because in the latter case, lowering the number of records
   to load per page should fix the issue.
 * Unfortunately, there are no built-in tasks for automatically cleaning from the
   database those records that are older than 3 months, but this could be easily
   done by coding a custom Cron Job for VikRentCar. By following our knowledge base
   articles in the Developers section, you will see how to register a custom action(
   hook) to install at runtime a custom Cron Job that will be scheduled for automatic
   execution through the existing framework of our plugin that runs on the WordPress
   native WP-Cron system.
 * The `execute` method of your custom Cron Job should perform a simple `DELETE`
   query for those records whose creation date is older than 3 months. This way 
   you could keep the database table “clean”.
 *  Thread Starter [Elton Heta](https://wordpress.org/support/users/eltonheta/)
 * (@eltonheta)
 * [1 week, 4 days ago](https://wordpress.org/support/topic/statistics-tracking-now-working/#post-18899727)
 * Can you give me this cron job correctly for the domain example.com?
 *  Thread Starter [Elton Heta](https://wordpress.org/support/users/eltonheta/)
 * (@eltonheta)
 * [1 week, 4 days ago](https://wordpress.org/support/topic/statistics-tracking-now-working/#post-18899728)
 * But it would help me if you gave me a cronjob for the deletion and I believe 
   that in this way we can help others who might read this comment.
 *  Plugin Author [e4jvikwp](https://wordpress.org/support/users/e4jvikwp/)
 * (@e4jvikwp)
 * [1 week, 4 days ago](https://wordpress.org/support/topic/statistics-tracking-now-working/#post-18899833)
 * Hello,
 * We cannot share a Cron Job, but we could include it with the next official plugin
   updates. However, right now this Cron Job should be coded by extending the framework
   of VikRentCar.
 * A “Cron Job” for our plugin is not a server-side cron (scheduled task), it’s 
   rather a scheduled command within our plugin that will be executed by the WordPress
   native WP-Cron framework.
 * If you wanted to keep only the statistics tracking records of the last 3 months,
   then the only solution for the moment (May 2026) is to code a custom plugin that
   installs at runtime a custom “Cron Job” for VikRentCar by using the native hooks
   of our plugin. This cron should perform a query to delete the “old” records as
   explained in the previous comments.
 * These functions are only available with the Pro/commercial version of our plugin,
   so we invite you again to reach out to our team through our official website 
   should you have any questions regarding this custom implementation.
 * The VikWP Team

Viewing 8 replies - 1 through 8 (of 8 total)

You must be [logged in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fstatistics-tracking-now-working%2F%3Foutput_format%3Dmd&locale=en_US)
to reply to this topic.

 * ![](https://ps.w.org/vikrentcar/assets/icon-256x256.png?rev=2203504)
 * [VikRentCar Car Rental Management System](https://wordpress.org/plugins/vikrentcar/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/vikrentcar/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/vikrentcar/)
 * [Active Topics](https://wordpress.org/support/plugin/vikrentcar/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/vikrentcar/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/vikrentcar/reviews/)

 * 12 replies
 * 2 participants
 * Last reply from: [e4jvikwp](https://wordpress.org/support/users/e4jvikwp/)
 * Last activity: [1 week, 4 days ago](https://wordpress.org/support/topic/statistics-tracking-now-working/#post-18899833)
 * Status: resolved