The easiest way to get the ClamAV package is using Homebrew
$ brew install clamav
Before trying to start the clamd process, you'll need a copy of the ClamAV databases.
Create a freshclam.conf file and configure as so
| #!/bin/bash | |
| # | |
| # PostgreSQL Backup Script Ver 1.0 | |
| # http://autopgsqlbackup.frozenpc.net | |
| # Copyright (c) 2005 Aaron Axelsen <[email protected]> | |
| # | |
| # This script is based of the AutoMySQLBackup Script Ver 2.2 | |
| # It can be found at http://sourceforge.net/projects/automysqlbackup/ | |
| # | |
| # The PostgreSQL changes are based on a patch agaisnt AutoMySQLBackup 1.9 |
| // License: GPLv2+ | |
| var el = wp.element.createElement, | |
| registerBlockType = wp.blocks.registerBlockType, | |
| ServerSideRender = wp.components.ServerSideRender, | |
| TextControl = wp.components.TextControl, | |
| InspectorControls = wp.editor.InspectorControls; | |
| /* | |
| * Here's where we register the block in JavaScript. |
| /* First we need to extend main profile tabs */ | |
| add_filter('um_profile_tabs', 'add_custom_profile_tab', 1000 ); | |
| function add_custom_profile_tab( $tabs ) { | |
| $tabs['mycustomtab'] = array( | |
| 'name' => 'My custom tab', | |
| 'icon' => 'um-faicon-comments', | |
| ); | |
The easiest way to get the ClamAV package is using Homebrew
$ brew install clamav
Before trying to start the clamd process, you'll need a copy of the ClamAV databases.
Create a freshclam.conf file and configure as so
| <?php | |
| /** | |
| * WordPress Query Comprehensive Reference | |
| * Compiled by luetkemj - luetkemj.com | |
| * | |
| * CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
| * Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php | |
| */ | |
| $args = array( |
http://docs.aws.amazon.com/AmazonVPC/latest/GettingStartedGuide/GetStarted.html
phpMyAdmin
| Type | Protocol | Port Range | Destination |
|---|---|---|---|
| SSH | TCP | 22 | 0.0.0.0/0 |
| add_filter( 'tw_query_args', array( &$this, 'query_args' ), 10, 2 ); | |
| public function query_args( $args, $atts ) { | |
| global $wpdb; | |
| $args['post_type'] = $atts['post_type']; | |
| $no_cache = $atts['no_cache']; | |
| if ( $no_cache ) { | |
| $args['no_cache'] = 1; |
| <?php # -*- coding: utf-8 -*- | |
| /* | |
| Plugin Name: All Actions List | |
| Description: Lists all actions run during one request. | |
| Version: 1.0 | |
| Required: 3.1 | |
| Author: Thomas Scholz | |
| Author URI: http://toscho.de | |
| License: GPL | |
| */ |
| add_action( 'bp_setup_nav', 'add_videos_subnav_tab', 100 ); | |
| function add_videos_subnav_tab() { | |
| global $bp; | |
| bp_core_new_subnav_item( array( | |
| 'name' => 'Videos', | |
| 'slug' => 'videos', | |
| 'parent_url' => trailingslashit( bp_loggedin_user_domain() . 'friends' ), |