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
/* Line 539 */ | |
INSERT INTO `sources` VALUES (1,1,'stuffpress',1,1,1,'2009-12-03 22:19:18','2000-01-01 01:00:00',''); |
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
1. Install PHP | |
2. Install Zend | |
3. Edit config (no db yet though) | |
4. WSOD | |
5. Debug = 1 | |
6. Log exception (write permissions) | |
7. Mkdir protected/logs/ | |
8. Database exception | |
9. Create DB, load SQL | |
10. Bounced me to storytlr.com |
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
for i in $(find . -type d -empty); do touch $i/.gitignore; done |
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
*/15 * * * * cd /home/jmhobbs/lifestream.velvetcache.org && /usr/local/php5/bin/php ./protected/tools/update.php |
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 | |
// Data Vizualization in PHP | |
// This file will render a 1024x1024 PNG using the raw binary data from a file. | |
// 1's will be black, 0's will be white. | |
/* | |
Copyright (c) 2010 John Hobbs | |
Permission is hereby granted, free of charge, to any person obtaining a copy |
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 | |
header( 'Content-type: text/plain' ); | |
ini_set( 'output_buffering', 'Off' ); | |
error_reporting( E_ALL & ~E_NOTICE & ~E_WARNING ); | |
ini_set( 'display_errors', 0 ); | |
$argc = 2; | |
$argv = array( 'update.php', 'admin' ); |
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 Check { | |
protected static $errors = 0; | |
protected static $include_found = true; | |
public static function no_errors () { | |
return true;//( 0 == self::$errors ); | |
} |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import time | |
from datetime import datetime | |
from pymongo.connection import Connection | |
import pymongo | |
class ToDoApplication: |
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
#!/usr/bin/env php | |
<?php | |
error_reporting( E_ERROR | E_PARSE ); | |
class ToDo { | |
protected $argv = array(); | |
public function __construct ( $argv ) { |
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 | |
ob_start(); | |
header('HTTP/1.1 503 Service Temporarily Unavailable'); | |
header('Status: 503 Service Temporarily Unavailable'); | |
header('Retry-After: 3600'); | |
header('X-Powered-By:'); | |
?><!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> | |
<html><head> | |
<title>503 Service Temporarily Unavailable</title> | |
</head><body> |
OlderNewer