Skip to content

Commit

Permalink
adding to github
Browse files Browse the repository at this point in the history
  • Loading branch information
flyingoctopus committed Nov 3, 2011
0 parents commit d9cc0c9
Show file tree
Hide file tree
Showing 1,136 changed files with 282,261 additions and 0 deletions.
238 changes: 238 additions & 0 deletions .htaccess
@@ -0,0 +1,238 @@

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /eatart.org/
RewriteRule ^index\.php$ - [L]
RewriteRule ^css/(.*) /eatart.org/wp-content/themes/eatart.org/css/$1 [QSA,L]
RewriteRule ^js/(.*) /eatart.org/wp-content/themes/eatart.org/js/$1 [QSA,L]
RewriteRule ^img/(.*) /eatart.org/wp-content/themes/eatart.org/img/$1 [QSA,L]
RewriteRule ^plugins/(.*) /eatart.org/wp-content/plugins/$1 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /eatart.org/index.php [L]
</IfModule>

# ----------------------------------------------------------------------
# Better website experience for IE users
# ----------------------------------------------------------------------

# Force the latest IE version, in various cases when it may fall back to IE7 mode
# github.com/rails/rails/commit/123eb25#commitcomment-118920
# Use ChromeFrame if it's installed for a better experience for the poor IE folk

<IfModule mod_setenvif.c>
<IfModule mod_headers.c>
BrowserMatch MSIE ie
Header set X-UA-Compatible "IE=Edge,chrome=1" env=ie
</IfModule>
</IfModule>

<IfModule mod_headers.c>
# Because X-UA-Compatible isn't sent to non-IE (to save header bytes),
# We need to inform proxies that content changes based on UA
Header append Vary User-Agent
# Cache control is set only if mod_headers is enabled, so that's unncessary to declare
</IfModule>


# ----------------------------------------------------------------------
# Cross-domain AJAX requests
# ----------------------------------------------------------------------

# Serve cross-domain ajax requests, disabled.
# enable-cors.org
# code.google.com/p/html5security/wiki/CrossOriginRequestSecurity

# <IfModule mod_headers.c>0
# </IfModule>



# ----------------------------------------------------------------------
# Webfont access
# ----------------------------------------------------------------------

# allow access from all domains for webfonts
# alternatively you could only whitelist
# your subdomains like "sub.domain.com"

<FilesMatch "\.(ttf|otf|eot|woff|font.css)$">
<IfModule mod_headers.c>0
</IfModule>
</FilesMatch>



# ----------------------------------------------------------------------
# Proper MIME type for all files
# ----------------------------------------------------------------------

# audio
AddType audio/ogg oga ogg

# video
AddType video/ogg ogv
AddType video/mp4 mp4
AddType video/webm webm

# Proper svg serving. Required for svg webfonts on iPad
# twitter.com/FontSquirrel/status/14855840545
AddType image/svg+xml svg svgz
AddEncoding gzip svgz

# webfonts
AddType application/vnd.ms-fontobject eot
AddType font/truetype ttf
AddType font/opentype otf
AddType application/x-font-woff woff

# assorted types
AddType image/x-icon ico
AddType image/webp webp
AddType text/cache-manifest appcache manifest
AddType text/x-component htc
AddType application/x-chrome-extension crx
AddType application/x-xpinstall xpi
AddType application/octet-stream safariextz



# ----------------------------------------------------------------------
# gzip compression
# ----------------------------------------------------------------------

<IfModule mod_deflate.c>


# force deflate for mangled headers developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping/
<IfModule mod_setenvif.c>
<IfModule mod_headers.c>
SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s,?\s(gzip|deflate)?|X{4,13}|~{4,13}|-{4,13})$ HAVE_Accept-Encoding
RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
</IfModule>
</IfModule>
# html, txt, css, js, json, xml, htc:
<IfModule filter_module>
FilterDeclare COMPRESS
FilterProvider COMPRESS DEFLATE resp=Content-Type /text/(html|css|javascript|plain|x(ml|-component))/
FilterProvider COMPRESS DEFLATE resp=Content-Type /application/(javascript|json|xml|x-javascript)/
FilterChain COMPRESS
FilterProtocol COMPRESS change=yes;byteranges=no
</IfModule>

<IfModule !mod_filter.c>
# Legacy versions of Apache
AddOutputFilterByType DEFLATE text/html text/plain text/css application/json
AddOutputFilterByType DEFLATE text/javascript application/javascript application/x-javascript
AddOutputFilterByType DEFLATE text/xml application/xml text/x-component
</IfModule>

# webfonts and svg:
<FilesMatch "\.(ttf|otf|eot|svg)$" >
SetOutputFilter DEFLATE
</FilesMatch>
</IfModule>



# ----------------------------------------------------------------------
# Stop screen flicker in IE on CSS rollovers
# ----------------------------------------------------------------------

# The following directives stop screen flicker in IE on CSS rollovers - in
# combination with the "ExpiresByType" rules for images (see above). If
# needed, un-comment the following rules.

# BrowserMatch "MSIE" brokenvary=1
# BrowserMatch "Mozilla/4.[0-9]{2}" brokenvary=1
# BrowserMatch "Opera" !brokenvary
# SetEnvIf brokenvary 1 force-no-vary



# ----------------------------------------------------------------------
# Prevent SSL cert warnings
# ----------------------------------------------------------------------

# Rewrite secure requests properly to prevent SSL cert warnings, e.g. prevent
# https://www.domain.com when your cert only allows https://secure.domain.com
# Uncomment the following lines to use this feature.

# <IfModule mod_rewrite.c>
# RewriteCond %{SERVER_PORT} !^443
# RewriteRule (.*) https://example-domain-please-change-me.com/$1 [R=301,L]
# </IfModule>



# ----------------------------------------------------------------------
# Prevent 404 errors for non-existing redirected folders
# ----------------------------------------------------------------------

# without -MultiViews, Apache will give a 404 for a rewrite if a folder of the same name does not exist
# e.g. /blog/hello : webmasterworld.com/apache/3808792.htm

Options -MultiViews



# ----------------------------------------------------------------------
# UTF-8 encoding
# ----------------------------------------------------------------------

# use utf-8 encoding for anything served text/plain or text/html
AddDefaultCharset utf-8

# force utf-8 for a number of file formats
AddCharset utf-8 .html .css .js .xml .json .rss



# ----------------------------------------------------------------------
# A little more security
# ----------------------------------------------------------------------


# Do we want to advertise the exact version number of Apache we're running?
# Probably not.
## This can only be enabled if used in httpd.conf - It will not work in .htaccess
# ServerTokens Prod


# "-Indexes" will have Apache block users from browsing folders without a default document
# Usually you should leave this activated, because you shouldn't allow everybody to surf through
# every folder on your server (which includes rather private places like CMS system folders).
Options -Indexes


# Block access to "hidden" directories whose names begin with a period. This
# includes directories used by version control systems such as Subversion or Git.
<IfModule mod_rewrite.c>
RewriteRule "(^|/)\." - [F]
</IfModule>


# If your server is not already configured as such, the following directive
# should be uncommented in order to set PHP's register_globals option to OFF.
# This closes a major security hole that is abused by most XSS (cross-site
# scripting) attacks. For more information: http://php.net/register_globals
#
# IF REGISTER_GLOBALS DIRECTIVE CAUSES 500 INTERNAL SERVER ERRORS :
#
# Your server does not allow PHP directives to be set via .htaccess. In that
# case you must make this change in your php.ini file instead. If you are
# using a commercial web host, contact the administrators for assistance in
# doing this. Not all servers allow local php.ini files, and they should
# include all PHP configurations (not just this one), or you will effectively
# reset everything to PHP defaults. Consult www.php.net for more detailed
# information about setting PHP directives.

# php_flag register_globals Off


# Increase cookie security
<IfModule php5_module>
php_value session.cookie_httponly true
</IfModule>
# END WordPress
63 changes: 63 additions & 0 deletions error_log
@@ -0,0 +1,63 @@
[08-Jan-2011 22:12:36] PHP Warning: include(sidebar_journal.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:36] PHP Warning: include(sidebar_journal.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:36] PHP Warning: include() [<a href='function.include'>function.include</a>]: Failed opening 'sidebar_journal.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:37] PHP Warning: include(sidebar_journal.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:37] PHP Warning: include(sidebar_journal.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:37] PHP Warning: include() [<a href='function.include'>function.include</a>]: Failed opening 'sidebar_journal.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:37] PHP Warning: include(sidebar_journal.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:37] PHP Warning: include(sidebar_journal.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:37] PHP Warning: include() [<a href='function.include'>function.include</a>]: Failed opening 'sidebar_journal.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:37] PHP Warning: include(sidebar_journal.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:37] PHP Warning: include(sidebar_journal.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:37] PHP Warning: include() [<a href='function.include'>function.include</a>]: Failed opening 'sidebar_journal.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:37] PHP Warning: include(sidebar_journal.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:37] PHP Warning: include(sidebar_journal.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:37] PHP Warning: include() [<a href='function.include'>function.include</a>]: Failed opening 'sidebar_journal.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:37] PHP Warning: include(sidebar_journal.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:37] PHP Warning: include(sidebar_journal.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:37] PHP Warning: include() [<a href='function.include'>function.include</a>]: Failed opening 'sidebar_journal.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:37] PHP Warning: include(sidebar_journal.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:37] PHP Warning: include(sidebar_journal.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[08-Jan-2011 22:12:37] PHP Warning: include() [<a href='function.include'>function.include</a>]: Failed opening 'sidebar_journal.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/index.php on line 45
[10-Jan-2011 00:22:19] PHP Parse error: syntax error, unexpected $end in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/header.php on line 125
[10-Jan-2011 18:49:05] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:49:06] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:50:22] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:50:25] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:50:28] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:50:28] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:50:34] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:50:39] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:50:42] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:50:45] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:50:48] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:50:51] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:50:54] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:51:08] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:52:16] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:52:18] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:52:27] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:52:31] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:52:34] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:52:37] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:52:40] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 18:52:44] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 19:05:07] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 19:05:17] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 19:05:21] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 19:05:24] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 19:05:26] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[10-Jan-2011 19:05:32] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[12-Jan-2011 11:33:13] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[12-Jan-2011 11:33:14] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[12-Jan-2011 11:33:15] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[12-Jan-2011 13:21:51] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[12-Jan-2011 13:21:52] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[12-Jan-2011 13:22:10] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[12-Jan-2011 13:52:13] PHP Warning: Module 'imagick' already loaded in Unknown on line 0
[22-Jan-2011 21:54:45] PHP Parse error: syntax error, unexpected '}' in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/sidebar.php on line 56
[22-Jan-2011 21:55:02] PHP Parse error: syntax error, unexpected '}' in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/sidebar.php on line 56
[22-Jan-2011 21:55:05] PHP Parse error: syntax error, unexpected '}' in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/sidebar.php on line 56
[22-Jan-2011 21:55:12] PHP Parse error: syntax error, unexpected '}' in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/sidebar.php on line 56
[22-Jan-2011 21:57:19] PHP Parse error: syntax error, unexpected '}' in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/sidebar.php on line 80
[22-Jan-2011 21:59:22] PHP Parse error: syntax error, unexpected T_ENDIF in /home/flyingoc/public_html/coccoon/public_html/wp-content/themes/makerfaire.ca/sidebar.php on line 94
31 changes: 31 additions & 0 deletions fantastico_fileslist.txt
@@ -0,0 +1,31 @@
wp-admin
wp-content
wp-includes
data.sql
fantversion.php
index.php
license.txt
readme.html
wp-activate.php
wp-app.php
wp-atom.php
wp-blog-header.php
wp-comments-post.php
wp-commentsrss2.php
wp-config-sample.php
wp-config.php
wp-cron.php
wp-feed.php
wp-links-opml.php
wp-load.php
wp-login.php
wp-mail.php
wp-pass.php
wp-rdf.php
wp-register.php
wp-rss.php
wp-rss2.php
wp-settings.php
wp-signup.php
wp-trackback.php
xmlrpc.php
5 changes: 5 additions & 0 deletions fantversion.php
@@ -0,0 +1,5 @@
<?php

$version = '3.0.1' ;

?>
Binary file added flyingoctopus_little.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions getWordpess.sh
@@ -0,0 +1,2 @@
wget http://wordpress.org/latest.tar.gz
tar -zxvf wordpress-3.1.1.tar.gz

0 comments on commit d9cc0c9

Please sign in to comment.