Skip to content

Instantly share code, notes, and snippets.

@RobertCalise
RobertCalise / custom_field_lookup.php
Created May 2, 2014 17:31
Infusionsoft Custom Field Lookup
<?php
// Require Infusionsoft PHP-SDK: https://github.com/infusionsoft/PHP-iSDK
require_once('isdk.php');
$api = new iSDK;
$api->cfgCon('appname');
// What code was entered?
$code = $_POST['code'];
#!/bin/sh
# Laravel Install Script
# Based on the FuelPHP Install Script by Kenji Suzuki
# https://gist.github.com/kenjis/1479807
#
# @author Robert Calise http://github.com/RobertCalise
# @copyright 2014 Robert Calise
# @license MIT License http://www.opensource.org/licenses/mit-license.php
@RobertCalise
RobertCalise / install-fuelphp-on-dotcloud.sh
Last active December 27, 2015 23:49 — forked from kenjis/install-fuelphp.sh
Download/install FuelPHP from GitHub into a local repo, create new dotCloud application, and push the application live in a single command.
#!/bin/sh
# FuelPHP Install Script
#
# @author Kenji Suzuki https://github.com/kenjis
# @copyright 2011 Kenji Suzuki
# @license MIT License http://www.opensource.org/licenses/mit-license.php
if [ $# -lt 2 ]; then
echo "Install FuelPHP and Create Application Repository"