Skip to content

Instantly share code, notes, and snippets.

View saxenap's full-sized avatar

Praveen Saxena saxenap

  • West Lafayette, IN
View GitHub Profile

Awesome PHP Libraries

A list of amazingly awesome PHP libraries that you should be using:

#!/bin/bash
###############################################
# To use:
# wget https://gist.githubusercontent.com/saxenap/10738762/raw
# chmod 777 raw
# ./raw
###############################################
echo "*****************************************"
echo " PHP Configuration Changes in php.ini"
echo "*****************************************"
#!/bin/bash
###############################################
# To use:
# wget https://gist.githubusercontent.com/saxenap/10741490/raw
# chmod 777 raw
# ./raw
###############################################
echo "" >> /etc/httpd/conf/httpd.conf
echo "" >> /etc/httpd/conf/httpd.conf
echo "*****************************************"
#!/bin/bash
# From here: http://www.codingsteps.com/install-apache-php-apc-mysql-on-amazon-ec2-with-amazon-linux-ami/
###############################################
# To use:
# wget https://gist.githubusercontent.com/saxenap/10741794/raw
# chmod 777 raw
# ./raw
###############################################
sudo mkdir /var/www/html/thirdparty
echo "*****************************************"
@saxenap
saxenap / setup
Last active August 29, 2015 13:59
#!/bin/bash
###############################################
# To use:
# wget https://gist.githubusercontent.com/saxenap/10742693/raw
# sudo cp raw setup
# sudo rm raw
# chmod 777 setup
# ./setup
###############################################
echo "*****************************************"
<?php
//much of this borrowed from the amazon documentation
//http://docs.amazonwebservices.com/amazondynamodb/latest/developerguide/LowLevelPHPTableOperationsExample.html
require_once('include.php');
$response = $dynamoDB->query(array(
'TableName' => $properties["table"]["TableName"]
, 'HashKeyValue' => array(
$properties["table"]["KeySchema"]["HashKeyElement"]["AttributeType"]
=> $hashKey )
@saxenap
saxenap / Apache2.4
Last active August 29, 2015 14:07
PHP 55 + Apache 2.4 + Other Packages
#!/bin/bash
yum -y install httpd24-devel
/sbin/chkconfig --levels 235 httpd on
service httpd start
@saxenap
saxenap / php-extensions
Last active August 29, 2015 14:07
Php extensions installation
#!/bin/bash
###############################################
# To use:
# rm -rf php-extensions
# wget https://gist.githubusercontent.com/saxenap/b9987273e096a053f7d3/raw/php-extensions
# chmod 777 php-extensions
# ./php-extensions
###############################################
BASE_Extensions_Dir="/etc/php-5.5.d"
#!/bin/bash
###############################################
# To use:
# rm -rf php-ini-settings
# wget https://gist.githubusercontent.com/saxenap/061d31fd5f09643d5832/raw/php-ini-settings
# chmod 777 php-ini-settings
# ./php-ini-settings
###############################################
PHP_INI_FILE_PATH="/etc/php.ini"
@saxenap
saxenap / Simple-INI-Parser
Created November 19, 2014 16:51
Simple INI file parser by Kevin Porter
#
# Copyright (c) 2009 Kevin Porter / Advanced Web Construction Ltd
# (http://coding.tinternet.info, http://webutils.co.uk)
# Copyright (c) 2010-2014 Ruediger Meier <[email protected]>
# (https://github.com/rudimeier/)
#
# License: BSD-3-Clause, see LICENSE file
#
# Simple INI file parser.
#