define('DISABLE_WP_CRON', true);
Showing 1 lines of 5 total lines in this snippet.
define('DISABLE_WP_CRON', true);
Showing 1 lines of 5 total lines in this snippet.
grep -r base64_decode /home/user/public_html/* grep -rP "(?:\\\\x[A-F0-9]{2}){5}" /home/user/public_html/*
Showing 3 lines of 4 total lines in this snippet.
<FilesMatch "\.(?i:php)$"> <IfModule !mod_authz_core.c> Order allow,deny Deny from all </IfModule> <IfModule mod_authz_core.c> Require all denied </IfModule> </FilesMatch>
Showing 9 lines of 48 total lines in this snippet.
UPDATE `newprefix_options` SET `option_name`=REPLACE(`option_name`,'wp_','newprefix_') WHERE `option_name` LIKE '%wp_%'; UPDATE `newprefix_usermeta` SET `meta_key`=REPLACE(`meta_key`,'wp_','newprefix_') WHERE `meta_key` LIKE '%wp_%';
Showing 2 lines of 7 total lines in this snippet.
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.5.18/webfont.js"></script> <script type="text/javascript"> WebFont.load({ google: { families: ['Ubuntu:300,400,600,700', 'Dosis:400'] } }); </script>
Showing 9 lines of 9 total lines in this snippet.
*/5 * * * * php -q /home/user/script.php > /dev/null 2>&1
Showing 1 lines of 3 total lines in this snippet.
*/20 * * * * php -q /home/user/script.php | mail -s "Email Subject" you@yourdomain.com
Showing 1 lines of 3 total lines in this snippet.
UPDATE table SET column = replace(column, 'text', 'replacement');
Showing 1 lines of 3 total lines in this snippet.
SELECT DISTINCT column FROM table;
Showing 1 lines of 1 total lines in this snippet.
add_filter('widget_text', 'do_shortcode');
Showing 1 lines of 4 total lines in this snippet.