Hi Sharon,
I have updated the add-on and submitted version 1.03.
It should fix the warning you got. I think you did not have any order in the selected time frame.
Thanks
Hi Sharon,
I have updated the add-on and submitted version 1.03.
It should fix the warning you got. I think you did not have any order in the selected time frame.
Thanks
Hi,
I just installed this plugin on ZC 1.5.3 and everything seemed to work well. Then I decided to select a status for filtering and the following errors were logged:
Everything else does work and I can change the date range without any issue. The graph is displaying data and when you hover your cursor it provides you with the total amount and total orders for the day.PHP Warning: mysql_real_escape_string(): Access denied for user 'xxxxxx' (using password: NO) in /home/xxxxxx/public_html/xxxxxx/xxxxxx/ct_sales_summary.php on line 43
PHP Warning: mysql_real_escape_string(): A link to the server could not be established in /home/xxxxxx/public_html/xxxxxx/xxxxxx/ct_sales_summary.php on line 43
It is just the status filter that causes an error. Any ideas?
You should change line 43 of YOUR_ADMIN/ct_sales_summary.php
from:
to:PHP Code:$status_query = empty($ordst) ? '' : ' and o.orders_status in (' . mysql_real_escape_string($ordst) . ')';
PHP Code:$status_query = empty($ordst) ? '' : ' and o.orders_status in (' . zen_db_prepare_input($ordst) . ')';
Zen cart installation / maintenance / customisation / hosting
Supported Modules: Dutch language pack, Multi site, Dynamic Price Updater and more.
Zen Cart v1.5.3 uses the mysqli_ interface instead of the (deprecated in PHP 5.5.x) mysql_ functions.
The plugin that you installed is making direct mysql_* function calls instead of using the Zen Cart $db object (which makes the mysql -> mysqli transition "transparent" to the calling code).
Hi guys,
Thank you very much for your assistance. The graph is now fully functional in ZC 1.5.3
Thank you also for the explanation. It assisted me in resolving an issue I had with another unrelated plugin.
Thanks for this plugin, it is very useful! It's working great for Super Admin, but I'm unable to get it working for an Editor profile. I've tried enabling all of the checkboxes for that account, and it still doesn't work. The graph only appears when I switch that user the SuperAdmin. Any ideas? Thanks for your help!
Anyone still using this?
It seems that the display of the graph needs updating and it's causing errors.
Google retired the jsapi that it was leveraging to display graphs.
If you're using 1.03 of the module, then in the graphs file:
must be replaced withCode:<script type="text/javascript" src="https://www.google.com/jsapi"></script> <script type="text/javascript"> //<=!=[=C=D=A=T=A=[ google.load("jquery", "1"); //]=]=> </script>andCode:<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script> <script src="https://www.gstatic.com/charts/loader.js"></script>
must be replaced withCode:google.load('visualization', '1'); google.setOnLoadCallback(drawVisualization);Code:google.charts.load('current', {packages: ['corechart']}); google.charts.setOnLoadCallback(drawVisualization);
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.