View stream-user-generator.php
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 | |
/** | |
* Plugin Name: Stream User Generator | |
* Description: Generates X-Team users for testing | |
* Version: 0.1 | |
* Author: johnregan3 | |
* Author URI: http://johnregan3.me | |
* | |
* USE: | |
* Upload this into your Plugins directory. |
View wp_dequeue_media.php
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
/** | |
* Remove media library javascript files to prevent other plugins from conflicting with yours. | |
*/ | |
function dequeue_media_conflicts() { | |
if ( 'your_plugin_hook_name' !== get_current_screen() ) { | |
return; | |
} | |
wp_dequeue_script( 'media-upload' ); | |
wp_enqueue_script( 'media-editor' ); |
View Vagrantfile.diff
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
diff --git Vagrantfile Vagrantfile | |
index 65de7b1..40ba133 100644 | |
--- Vagrantfile | |
+++ Vagrantfile | |
@@ -33,7 +33,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
v.vm.box_url = "http://files.vagrantup.com/precise64_vmware.box" | |
end | |
- if (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM) == nil | |
- config.vm.synced_folder ".", "/srv", nfs: true |
View nginx.conf
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
user www-data; | |
worker_processes 4; | |
pid /var/run/nginx.pid; | |
events { | |
worker_connections 1024; | |
# multi_accept on; | |
} | |
http { |
View nginx.conf
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
## Start nginx.conf | |
user www-data; | |
worker_processes 8; | |
error_log /var/log/nginx/error.log; | |
pid /var/run/nginx.pid; | |
events { | |
worker_connections 1024; |
View inspect_hooks.php
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 | |
/** | |
* Plugin Name: Hook Debug Output | |
* Plugin URI: http://unserkaiser.com | |
* Description: Debug Hooked filter callback functions with adding <code>?debug=secret&hook=your_hook_name</code> to the URl | |
* Version: 0.1 | |
* Author: Stephen Harris, Franz Josef Kaiser | |
* Author URI: http://unserkaiser.com | |
*/ | |
// Prevent loading this file directly - Busted! |
View get_perm_byname.php
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 | |
/** | |
* Gets the permalink from the post slug | |
* @param string $name the post, page or custom post type slug | |
* @param string $p_type the post type | |
* | |
* @return string The permalink YAHHH!!! | |
*/ | |
function get_perm_byname( $name, $p_type = 'page' ) { |
View front-end-uploads.php
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
/** | |
* File upload ajax handler function to save the file and send image or file html back to the browser | |
* These functions are part of a class | |
*/ | |
function ajax_upload_file() { | |
check_ajax_referer( 'ugc_user_upload', 'nonce' ); | |
$file_data = array( | |
'name' => $_FILES['ugc_attachment_file']['name'], | |
'type' => $_FILES['ugc_attachment_file']['type'], | |
'tmp_name' => $_FILES['ugc_attachment_file']['tmp_name'], |
View start_local_servers.sh
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
!/bin/bash | |
#This bash script controls starting and stopping the homebrew installed Nginx, PHP-FPM and MySql servers | |
start=start | |
stop=stop | |
restart=restart | |
status=status | |
echo server $1 executed.. |
OlderNewer