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
Protocol that worked to install Arch on a remote server | |
Situation: host provides CentOS image but not one for Arch. | |
Default CentOS install includes two hard drives in a RAID 1 setup, mapped as /dev/mapper/vg-root and /dev/mapper/vg-swap | |
Guides: | |
https://wiki.archlinux.org/index.php/Remote_installation | |
https://wiki.archlinux.org/index.php/Install_from_existing_Linux | |
https://wiki.archlinux.org/index.php/Install_from_SSH | |
http://ordinatechnic.com/os-specific-guides/arch/archlinux-installing-from-an-existing-linux-installation |
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 /* | |
[myapp/slideshow] | |
label = "MyApp Slideshow" | |
icon = picture-o | |
path[label] = Folder | |
path[type] = select | |
path[initial] = "sliders" |
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 | |
date_default_timezone_set('My/Time_Zone'); | |
$app_id = '1234567890'; | |
$app_secret = 'abcdefghijklmnopqrstuvwxyz'; | |
//Facebook API function to get the event details from FB | |
define('FACEBOOK_SDK_V4_SRC_DIR', $_SERVER['DOCUMENT_ROOT']."/facebook-sdk/src/Facebook/"); | |
require $_SERVER["DOCUMENT_ROOT"].'/facebook-sdk/autoload.php'; | |
use Facebook\FacebookSession; |