Search
 
SCRIPT & CODE EXAMPLE
 

PHP

wp-config for developement

// DEVELOP on wp-config.php
@ini_set( 'log_errors', 'On' );
@ini_set( 'display_errors', 'On' );
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', true );
define( 'SCRIPT_DEBUG', true );
define('SAVEQUERIES', true);
Comment

wp-config for production

// PRODUCTION on wp-config.php
@ini_set( 'log_errors', 'Off' );
@ini_set( 'display_errors', 'Off' );
define( 'WP_DEBUG', false );
define( 'WP_DEBUG_LOG', false );
define( 'WP_DEBUG_DISPLAY', false );
define( 'SCRIPT_DEBUG', false );
Comment

PREVIOUS NEXT
Code Example
Php :: eloquent where parentheses 
Php :: pagination php mysql 
Php :: laravel eloquent relationships count 
Php :: fetch method and class in codeigniter 
Php :: laravel multiple paginate 
Php :: use font awesome in laravel 8 
Php :: php comment 
Php :: submonth carbon 
Php :: get custom post type taxonomy value 
Php :: php json response to ajax 
Php :: laravel request password validation rule 
Php :: laravel migration delete column 
Php :: laravel return validation errors 
Php :: json encode decode php 
Php :: php return new object 
Php :: Catches the last error php 
Php :: send var in header php 
Php :: pluck laravel 
Php :: laravel 6 pagination example 
Php :: php number to words 
Php :: 301 redirect 
Php :: laravel fetch max value 
Php :: CSV File Read using PHP fgetcsv() 
Php :: associate laravel 
Php :: laravel use global variable in model 
Php :: model hasmany laravel 
Php :: wordpress is_tag function 
Php :: update wordpress query 
Php :: laravel db table get one columns value 
Php :: select option edit in laravel 
ADD CONTENT
Topic
Content
Source link
Name
4+9 =