This file contains hidden or 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 | |
class Database extends Core { | |
private | |
$link, | |
$db_vars, | |
$enconing = 'utf8'; | |
public function __construct($host, $db, $user, $pass){ | |
$this->db_vars = new stdClass(); | |
This file contains hidden or 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
#!/bin/sh | |
# | |
# chkconfig: 35 99 99 | |
# description: Node.js /home/nodejs/sample/app.js | |
# | |
. /etc/rc.d/init.d/functions | |
USER="nodejs" |
This file contains hidden or 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 | |
if((!isset($_COOKIE) || !isset($_GET['r'])) || $_GET['r'] != $_COOKIE['r']){ | |
$rnd = md5(mt_rand()); | |
if($_SERVER['QUERY_STRING'] && !$_GET['r']){ | |
$s = '?' . $_SERVER['QUERY_STRING'] . '&r='.$rnd; | |
}else{ | |
$s = '?r='.$rnd; | |
}; | |
This file contains hidden or 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 | |
function showOAuthError($error, $error_description){ | |
if($error == 'access_denied'){ | |
header("Location: http://".$_SERVER['HTTP_HOST']); | |
}else{ | |
$error = '<strong>Error: '.$error.'</strong> | |
<p>'.preg_replace('/\+/', ' ', $error_description).'</p>'; | |
die($error); | |
}; |
NewerOlder