Skip to content

Instantly share code, notes, and snippets.

View koconder's full-sized avatar
:octocat:

Vincent Koc koconder

:octocat:
View GitHub Profile
@koconder
koconder / Affiliate Cookie
Last active January 14, 2019 23:13
Dead simple affiliate query string to 30 day cookie in Apache HTACCESS Config
@koconder
koconder / Update_Wordpress_Hostname.sql
Last active January 14, 2019 23:10
Wordpress Site Migration SQL Command - Commands to Find and Replace Meta, Site Options and Site Content for Hostnames
UPDATE wp_options SET option_value = replace(option_value, 'http://thismagicday.com.192.168.1.15.xip.io', 'http://thismagicday.com') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'http://thismagicday.com.192.168.1.15.xip.io','http://www.thismagicday.com');
UPDATE wp_posts SET post_content = replace(post_content, 'http://thismagicday.com.192.168.1.15.xip.io', 'http://thismagicday.com');
UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://thismagicday.com.192.168.1.15.xip.io','http://thismagicday.com');
@koconder
koconder / Wordpress_WPCONFIG_Custom.php
Last active January 14, 2019 23:09
Disable XML-RPC Pingbacks on Wordpress for Wp-Config
<?php
// Disable pingback.ping xmlrpc method to prevent Wordpress from participating in DDoS attacks
// More info at: https://docs.bitnami.com/?page=apps&name=wordpress&section=how-to-re-enable-the-xml-rpc-pingback-feature
// remove x-pingback HTTP header
add_filter('wp_headers', function($headers) {
unset($headers['X-Pingback']);
return $headers;
});
// disable pingbacks
@koconder
koconder / json_to_csv.html
Last active January 14, 2019 23:08 — forked from palesz/json_to_csv.html
Simple JSON to CSV in HTML and Javascript with External Libraries
<html>
<head>
<style>
textarea {
height: 300px;
width: 100%;
}
</style>
<script type="text/javascript">
@koconder
koconder / fixperms.sh
Last active January 14, 2019 23:07
cPanel Recursive Site Permissions Fix Shell Script
#! /bin/bash
#
# Date: Jan 26th 2012
# Author: Colin R.
# Revisions: Jacob "Boom Shadow" Tirey (boomshadow.net)
# Fixperms script for ServInt
#
# Fixperms script for cPanel servers running suPHP or FastCGI.
# Written for ServInt.net
# Copyright (C) 2012 Colin R.
backend default {
.host = "127.0.0.1";
.port = "8080";
}
acl purge {
"localhost",
"69.195.222.132"
}
sub vcl_recv {
@koconder
koconder / fix_tt.sh
Created October 3, 2013 14:53
Update all Timthumb Files across Cpanel Users
#! /bin/bash
# Detects and updates timthumb.php to latest version for all cPanel users.
# dropdeaddick.com
latest=`lynx -source http://timthumb.googlecode.com/svn/trunk/timthumb.php |grep "define ('VERSION'" $file |cut -f4 -d"'"`
if [ -z "$latest" ]; then
echo "could not get latest timthumb release, aborting!"
exit 1
fi
for user in `awk -F':' '{ if ($3 > 499) print $0 }' /etc/passwd | grep home | cut -d':' -f1`; do
@koconder
koconder / composer.sh
Created September 9, 2013 10:45
Install Composer Globally on Cent OS
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/bin/composer
@koconder
koconder / accent
Created July 10, 2013 13:43
Mysql Accent
# http://stackoverflow.com/questions/742205/mysql-alter-table-collation
alter table <some_table> convert to character set utf8 collate utf8_unicode_ci;
@koconder
koconder / edithostfilemac
Created June 10, 2013 10:22
Edit a Host File on Mountian Lion Mac
sudo vim /private/etc/hosts
dscacheutil -flushcache