This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPDATE wp_options SET option_value = replace(option_value, 'http://www.oldurl', 'http://www.newurl') WHERE option_name = 'home' OR option_name = 'siteurl'; | |
UPDATE wp_posts SET guid = replace(guid, 'http://www.oldurl','http://www.newurl'); | |
UPDATE wp_posts SET post_content = replace(post_content, 'http://www.oldurl', 'http://www.newurl'); | |
UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://www.oldurl','http://www.newurl'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$cache = 'data.txt'; | |
if(date("Ymd", filemtime($cache)) < date("Ymd") || filesize($cache) < 1): | |
$data = get_data(); // do your thing | |
$file = fopen($cache,'w+'); | |
$text = is_array($data) ? json_encode($data) : $data; | |
fwrite($file, $text); | |
fclose($file); | |
else: | |
$file = fopen($cache,'w+'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//remove accents | |
setlocale(LC_ALL, "en_US.utf8"); | |
function clean($txt){ | |
$txt= iconv('UTF-8', 'ASCII//TRANSLIT//IGNORE', $txt); | |
$re = "/[^\\w.-]/"; | |
return preg_replace($re, "", $txt); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> | |
<ifModule mod_headers.c> | |
Header always set Content-Security-Policy "upgrade-insecure-requests;" | |
Header set Access-Control-Allow-Origin "*" | |
</IfModule> | |
<FilesMatch "^(wp-config|wp-settings|wp-trackback|wp-comments-post|xmlrpc)\.php$"> | |
Order allow,deny | |
Deny from all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
define('td', get_bloginfo('template_directory').'/' ); | |
define('hd', esc_url(home_url( '/' ))); | |
//WPconfig | |
$path = ''; //No trail | |
$http = isset($_SERVER['HTTPS']) ? 'https://' : 'http://'; | |
define( 'WP_SITEURL', $http . $_SERVER['SERVER_NAME'] . $path ); | |
define( 'WP_HOME', $http . $_SERVER['HTTP_HOST'] . $path ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setInterval(function() { | |
$("#refresh").load(location.href+" #refresh>*",""); | |
}, 10000); // milliseconds to wait |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#add prefix | |
rename s/'^'/'MyPrefix'/ * | |
#add suffix | |
rename s/'$'/'MySuffix'/ * | |
#numbered | |
n=1; for f in ./*.jpg; do mv "$f" $n.jpg; n=$((n+1)); done |