Crowdfunding SQL Debug mode turning on off

  Tutorials

Crowdfunding SQL Debug Mode

Crowdphp Provides a great functionality, Which is called Crowdfunding SQL DEBUG mode.

It allows you to list down

  1. Number of sql queries
  2. All SQL queries
  3. Memory Used
  4. Total Execution time

 

Which can be used in performance enhancement for your crowdfunding script

Crowdfunding sql

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);

LEAVE A COMMENT