Crowdfunding SQL Debug Mode
Crowdphp Provides a great functionality, Which is called Crowdfunding SQL DEBUG mode.
It allows you to list down
- Number of sql queries
- All SQL queries
- Memory Used
- Total Execution time
Which can be used in performance enhancement for your crowdfunding script
To turn off/on crowdfunding sql debug mode do the following
Goto system/define.php
Find following code [It is config to turn sql debug off]
define("IS_DEBUG",0);
define("SHOW_DEBUG",0);
define("SITE_CURRENCY","$");
define("SHOW_LOG",0);
[Config to turn sql debug on]
define("IS_DEBUG",1);
define("SHOW_DEBUG",1);
define("SITE_CURRENCY","$");
define("SHOW_LOG",1);
