Outils pour utilisateurs

Outils du site


tech:cms_php_wordpress

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
tech:cms_php_wordpress [2025/11/09 19:09] Jean-Baptistetech:cms_php_wordpress [2026/06/07 19:12] (Version actuelle) – modification externe 127.0.0.1
Ligne 1: Ligne 1:
 +<!DOCTYPE markdown>
 +{{tag>Brouillon Web}}
 +
 +# CMS PHP Wordpress
 +
 +Source : https://codex.wordpress.org/Debugging_in_WordPress
 +
 +Debug Wordpress
 +
 +`wp-config.php`
 +~~~php
 + // Enable WP_DEBUG mode
 +define( 'WP_DEBUG', true );
 +
 +// Enable Debug logging to the /wp-content/debug.log file
 +define( 'WP_DEBUG_LOG', true );
 +
 +// Disable display of errors and warnings 
 +define( 'WP_DEBUG_DISPLAY', false );
 +@ini_set( 'display_errors', 0 );
 +
 +// Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
 +define( 'SCRIPT_DEBUG', true );
 +~~~
 +
 +
 +## Sécurité
 +
 +### Scan
 +
 +~~~bash
 +sudo apt-get install ruby-rubygems ruby-dev
 +export PATH="$PATH":/home/jibe/.local/share/gem/ruby/3.0.0/bin
 +gem install --user-install wpscan
 +wpscan --url https://wp.acme.fr -o wpscan_wp.acme.fr.txt
 +~~~
 +
 +
  

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki