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
{ | |
"name": "wptailor/gravityforms-subtotal-mergetag", | |
"description": "Adds a {subtotal} merge tag which calculates the subtotal of the form. This merge tag can only be used", | |
"type": "wordpress-plugin", | |
"license": "GPL3+", | |
"authors": [ | |
{ | |
"name": "David Smith", | |
"email": "[email protected]" | |
}, |
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 | |
/** | |
* WordPress Fragment Caching convenience wrapper. | |
* | |
* @author Mark Jaquith, packed by WPTailor | |
*/ | |
defined('ABSPATH') or exit; | |
/* |
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
#!/usr/bin/env bash | |
if [ "$UID" -ne 0 ] | |
then echo "Please run this script as root user" | |
exit | |
fi | |
apt-get -y update | |
apt-get -y upgrade | |
apt-get -y install build-essential zlib1g-dev libssl-dev libreadline6-dev libyaml-dev git sqlite3 libsqlite3-dev |
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
{ | |
"name": "wptailor/gform-class-submission-limit", | |
"description": "Limit the number of times a form can be submitted per a specific time period. You modify this limit to apply to the visitor's IP address, the user's ID, the user's role, a specific form URL, or the value of a specific field.", | |
"require": { | |
}, | |
"license": "GPL-2.0+", | |
"authors": [ | |
{ | |
"name": "Mark Jaquith", | |
"email": "[email protected]" |