Advertisement
Guest User

Untitled

a guest
Dec 6th, 2012
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 29.79 KB | None | 0 0
  1. Textpattern version: 4.5.4 (r4919)
  2. Last update: 2012-12-06 21:52:08/2012-12-05 14:55:44
  3. Document root: /home/xxxxxxxx/public_html
  4. $path_to_site: /home/xxxxxxxx/public_html
  5. Textpattern path: /home/xxxxxxxx/public_html/textpattern
  6. Permanent link mode: section_title
  7. Temporary directory path: /home/xxxxxxxx/public_html/textpattern/tmp
  8. Site URL: xxxxxxxx.xxxxxxxxxx.xxx
  9. PHP version: 5.3.19
  10. Register globals: 1
  11. GD Graphics Library: version bundled (2.0.34 compatible), supported formats: GIF, JPG, PNG
  12. Server TZ: America/Chicago
  13. Server local time: 2012-12-06 16:59:43
  14. DST enabled?: 0
  15. Automatically adjust DST setting?: 0
  16. Time zone: America/Chicago (-21600)
  17. MySQL: 5.5.27-rel29.0-log
  18. Locale: en_US.UTF-8
  19. Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 mod_fcgid/2.3.6
  20. PHP server API: cgi-fcgi
  21. RFC 2616 headers: 0
  22. Server OS: Linux 2.6.18-308.16.1.el5
  23. Active plugins: cbe_if_prod_status-0.1, cnk_versioning-0.1.7 (modm, joh_admin_markitup-0.1.3m, gbp_admin_library-0.4.669, rss_unlimited_categories-0.7.5.3
  24. Admin-side theme: hive 4.5.4
  25.  
  26. Pre-flight check:
  27. ------------------------
  28. Clean URL data test failed.: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
  29. ------------------------
  30.  
  31. .htaccess file contents:
  32. ------------------------
  33. # Apache configuration file
  34. # httpd.apache.org/docs/2.2/mod/quickreference.html
  35.  
  36. # Note .htaccess files are an overhead, this logic should be in your Apache
  37. # config if possible: httpd.apache.org/docs/2.2/howto/htaccess.html
  38.  
  39. # Techniques in here adapted from all over, including:
  40. # Kroc Camen: camendesign.com/.htaccess
  41. # perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/
  42. # Sample .htaccess file of CMS MODx: modxcms.com
  43.  
  44.  
  45. # ----------------------------------------------------------------------
  46. # Better website experience for IE users
  47. # ----------------------------------------------------------------------
  48.  
  49. # Force the latest IE version, in various cases when it may fall back to IE7 mode
  50. # github.com/rails/rails/commit/123eb25#commitcomment-118920
  51. # Use ChromeFrame if it's installed for a better experience for the poor IE folk
  52.  
  53. <IfModule mod_headers.c>
  54. Header set X-UA-Compatible "IE=Edge,chrome=1"
  55. # mod_headers can't match by content-type, but we don't want to send this header on *everything*...
  56. <FilesMatch "\.(js|css|gif|png|jpe?g|pdf|xml|oga|ogg|m4a|ogv|mp4|m4v|webm|svg|svgz|eot|ttf|otf|woff|ico|webp|appcache|manifest|htc|crx|oex|xpi|safariextz|vcf)$" >
  57. Header unset X-UA-Compatible
  58. </FilesMatch>
  59. </IfModule>
  60.  
  61.  
  62. # ----------------------------------------------------------------------
  63. # Cross-domain AJAX requests
  64. # ----------------------------------------------------------------------
  65.  
  66. # Serve cross-domain Ajax requests, disabled by default.
  67. # enable-cors.org
  68. # code.google.com/p/html5security/wiki/CrossOriginRequestSecurity
  69.  
  70. # <IfModule mod_headers.c>
  71. # Header set Access-Control-Allow-Origin "*"
  72. # </IfModule>
  73.  
  74.  
  75. # ----------------------------------------------------------------------
  76. # CORS-enabled images (@crossorigin)
  77. # ----------------------------------------------------------------------
  78.  
  79. # Send CORS headers if browsers request them; enabled by default for images.
  80. # developer.mozilla.org/en/CORS_Enabled_Image
  81. # blog.chromium.org/2011/07/using-cross-domain-images-in-webgl-and.html
  82. # hacks.mozilla.org/2011/11/using-cors-to-load-webgl-textures-from-cross-domain-images/
  83. # wiki.mozilla.org/Security/Reviews/crossoriginAttribute
  84.  
  85. <IfModule mod_setenvif.c>
  86. <IfModule mod_headers.c>
  87. # mod_headers, y u no match by Content-Type?!
  88. <FilesMatch "\.(gif|png|jpe?g|svg|svgz|ico|webp)$">
  89. SetEnvIf Origin ":" IS_CORS
  90. Header set Access-Control-Allow-Origin "*" env=IS_CORS
  91. </FilesMatch>
  92. </IfModule>
  93. </IfModule>
  94.  
  95.  
  96. # ----------------------------------------------------------------------
  97. # Webfont access
  98. # ----------------------------------------------------------------------
  99.  
  100. # Allow access from all domains for webfonts.
  101. # Alternatively you could only whitelist your
  102. # subdomains like "subdomain.example.com".
  103.  
  104. <IfModule mod_headers.c>
  105. <FilesMatch "\.(ttf|ttc|otf|eot|woff|font.css)$">
  106. Header set Access-Control-Allow-Origin "*"
  107. </FilesMatch>
  108. </IfModule>
  109.  
  110.  
  111. # ----------------------------------------------------------------------
  112. # Proper MIME type for all files
  113. # ----------------------------------------------------------------------
  114.  
  115. # JavaScript
  116. # Normalize to standard type (it's sniffed in IE anyways)
  117. # tools.ietf.org/html/rfc4329#section-7.2
  118. AddType application/javascript js jsonp
  119. AddType application/json json
  120.  
  121. # Audio
  122. AddType audio/ogg oga ogg
  123. AddType audio/mp4 m4a f4a f4b
  124.  
  125. # Video
  126. AddType video/ogg ogv
  127. AddType video/mp4 mp4 m4v f4v f4p
  128. AddType video/webm webm
  129. AddType video/x-flv flv
  130.  
  131. # SVG
  132. # Required for svg webfonts on iPad
  133. # twitter.com/FontSquirrel/status/14855840545
  134. AddType image/svg+xml svg svgz
  135. AddEncoding gzip svgz
  136.  
  137. # Webfonts
  138. AddType application/vnd.ms-fontobject eot
  139. AddType application/x-font-ttf ttf ttc
  140. AddType font/opentype otf
  141. AddType application/x-font-woff woff
  142.  
  143. # Assorted types
  144. AddType image/x-icon ico
  145. AddType image/webp webp
  146. AddType text/cache-manifest appcache manifest
  147. AddType text/x-component htc
  148. AddType application/xml rss atom xml rdf
  149. AddType application/x-chrome-extension crx
  150. AddType application/x-opera-extension oex
  151. AddType application/x-xpinstall xpi
  152. AddType application/octet-stream safariextz
  153. AddType application/x-web-app-manifest+json webapp
  154. AddType text/x-vcard vcf
  155. AddType application/x-shockwave-flash swf
  156. AddType text/vtt vtt
  157.  
  158.  
  159. # ----------------------------------------------------------------------
  160. # Allow concatenation from within specific js and css files
  161. # ----------------------------------------------------------------------
  162.  
  163. # e.g. Inside of script.combined.js you could have
  164. # <!--#include file="libs/jquery-1.5.0.min.js" -->
  165. # <!--#include file="plugins/jquery.idletimer.js" -->
  166. # and they would be included into this single file.
  167.  
  168. # This is not in use in the boilerplate as it stands. You may
  169. # choose to use this technique if you do not have a build process.
  170.  
  171. #<FilesMatch "\.combined\.js$">
  172. # Options +Includes
  173. # AddOutputFilterByType INCLUDES application/javascript application/json
  174. # SetOutputFilter INCLUDES
  175. #</FilesMatch>
  176.  
  177. #<FilesMatch "\.combined\.css$">
  178. # Options +Includes
  179. # AddOutputFilterByType INCLUDES text/css
  180. # SetOutputFilter INCLUDES
  181. #</FilesMatch>
  182.  
  183.  
  184. # ----------------------------------------------------------------------
  185. # Gzip compression
  186. # ----------------------------------------------------------------------
  187.  
  188. <IfModule mod_deflate.c>
  189.  
  190. # Force deflate for mangled headers developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping/
  191. <IfModule mod_setenvif.c>
  192. <IfModule mod_headers.c>
  193. SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
  194. RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
  195. </IfModule>
  196. </IfModule>
  197.  
  198. # Compress all output labeled with one of the following MIME-types
  199. <IfModule mod_filter.c>
  200. AddOutputFilterByType DEFLATE application/atom+xml \
  201. application/javascript \
  202. application/json \
  203. application/rss+xml \
  204. application/vnd.ms-fontobject \
  205. application/x-font-ttf \
  206. application/xhtml+xml \
  207. application/xml \
  208. font/opentype \
  209. image/svg+xml \
  210. image/x-icon \
  211. text/css \
  212. text/html \
  213. text/plain \
  214. text/x-component \
  215. text/xml
  216. </IfModule>
  217.  
  218. </IfModule>
  219.  
  220.  
  221. # ----------------------------------------------------------------------
  222. # Expires headers (for better cache control)
  223. # ----------------------------------------------------------------------
  224.  
  225. # These are pretty far-future expires headers.
  226. # They assume you control versioning with filename-based cache busting
  227. # Additionally, consider that outdated proxies may miscache
  228. # www.stevesouders.com/blog/2008/08/23/revving-filenames-dont-use-querystring/
  229.  
  230. # If you don't use filenames to version, lower the CSS and JS to something like
  231. # "access plus 1 week".
  232.  
  233. <IfModule mod_expires.c>
  234. ExpiresActive on
  235.  
  236. # Perhaps better to whitelist expires rules? Perhaps.
  237. ExpiresDefault "access plus 1 month"
  238.  
  239. # cache.appcache needs re-requests in FF 3.6 (thanks Remy ~Introducing HTML5)
  240. ExpiresByType text/cache-manifest "access plus 0 seconds"
  241.  
  242. # Your document html
  243. ExpiresByType text/html "access plus 0 seconds"
  244.  
  245. # Data
  246. ExpiresByType text/xml "access plus 0 seconds"
  247. ExpiresByType application/xml "access plus 0 seconds"
  248. ExpiresByType application/json "access plus 0 seconds"
  249.  
  250. # Feed
  251. ExpiresByType application/rss+xml "access plus 1 hour"
  252. ExpiresByType application/atom+xml "access plus 1 hour"
  253.  
  254. # Favicon (cannot be renamed)
  255. ExpiresByType image/x-icon "access plus 1 week"
  256.  
  257. # Media: images, video, audio
  258. ExpiresByType image/gif "access plus 1 month"
  259. ExpiresByType image/png "access plus 1 month"
  260. ExpiresByType image/jpeg "access plus 1 month"
  261. ExpiresByType video/ogg "access plus 1 month"
  262. ExpiresByType audio/ogg "access plus 1 month"
  263. ExpiresByType video/mp4 "access plus 1 month"
  264. ExpiresByType video/webm "access plus 1 month"
  265.  
  266. # HTC files (css3pie)
  267. ExpiresByType text/x-component "access plus 1 month"
  268.  
  269. # Webfonts
  270. ExpiresByType application/x-font-ttf "access plus 1 month"
  271. ExpiresByType font/opentype "access plus 1 month"
  272. ExpiresByType application/x-font-woff "access plus 1 month"
  273. ExpiresByType image/svg+xml "access plus 1 month"
  274. ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
  275.  
  276. # CSS and JavaScript
  277. ExpiresByType text/css "access plus 1 year"
  278. ExpiresByType application/javascript "access plus 1 year"
  279.  
  280. </IfModule>
  281.  
  282.  
  283. # ----------------------------------------------------------------------
  284. # Prevent mobile network providers from modifying your site
  285. # ----------------------------------------------------------------------
  286.  
  287. # The following header prevents modification of your code over 3G on some
  288. # European providers.
  289. # This is the official 'bypass' suggested by O2 in the UK.
  290.  
  291. # <IfModule mod_headers.c>
  292. # Header set Cache-Control "no-transform"
  293. # </IfModule>
  294.  
  295.  
  296. # ----------------------------------------------------------------------
  297. # ETag removal
  298. # ----------------------------------------------------------------------
  299.  
  300. # FileETag None is not enough for every server.
  301. <IfModule mod_headers.c>
  302. Header unset ETag
  303. </IfModule>
  304.  
  305. # Since we're sending far-future expires, we don't need ETags for
  306. # static content.
  307. # developer.yahoo.com/performance/rules.html#etags
  308. FileETag None
  309.  
  310.  
  311. # ----------------------------------------------------------------------
  312. # Stop screen flicker in IE on CSS rollovers
  313. # ----------------------------------------------------------------------
  314.  
  315. # The following directives stop screen flicker in IE on CSS rollovers - in
  316. # combination with the "ExpiresByType" rules for images (see above).
  317.  
  318. # BrowserMatch "MSIE" brokenvary=1
  319. # BrowserMatch "Mozilla/4.[0-9]{2}" brokenvary=1
  320. # BrowserMatch "Opera" !brokenvary
  321. # SetEnvIf brokenvary 1 force-no-vary
  322.  
  323.  
  324. # ----------------------------------------------------------------------
  325. # Set Keep-Alive Header
  326. # ----------------------------------------------------------------------
  327.  
  328. # Keep-Alive allows the server to send multiple requests through one
  329. # TCP-connection. Be aware of possible disadvantages of this setting. Turn on
  330. # if you serve a lot of static content.
  331.  
  332. # <IfModule mod_headers.c>
  333. # Header set Connection Keep-Alive
  334. # </IfModule>
  335.  
  336.  
  337. # ----------------------------------------------------------------------
  338. # Cookie setting from iframes
  339. # ----------------------------------------------------------------------
  340.  
  341. # Allow cookies to be set from iframes (for IE only)
  342. # If needed, specify a path or regex in the Location directive.
  343.  
  344. # <IfModule mod_headers.c>
  345. # Header set P3P "policyref=\"/w3c/p3p.xml\", CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\""
  346. # </IfModule>
  347.  
  348.  
  349. # ----------------------------------------------------------------------
  350. # Start rewrite engine
  351. # ----------------------------------------------------------------------
  352.  
  353. # Turning on the rewrite engine is necessary for the following rules and
  354. # features. FollowSymLinks must be enabled for this to work.
  355.  
  356. # Some cloud hosting services require RewriteBase to be set: goo.gl/HOcPN
  357. # If using the h5bp in a subdirectory, use `RewriteBase /foo` instead where
  358. # 'foo' is your directory.
  359.  
  360. # If your web host doesn't allow the FollowSymlinks option, you may need to
  361. # comment it out and use `Options +SymLinksOfOwnerMatch`, but be aware of the
  362. # performance impact: http://goo.gl/Mluzd
  363.  
  364. <IfModule mod_rewrite.c>
  365. # Options +FollowSymlinks
  366. # Options +SymLinksIfOwnerMatch
  367. RewriteEngine On
  368. # RewriteBase /
  369. </IfModule>
  370.  
  371.  
  372. # ----------------------------------------------------------------------
  373. # Suppress or force the "www." at the beginning of URLs
  374. # ----------------------------------------------------------------------
  375.  
  376. # The same content should never be available under two different URLs -
  377. # especially not with and without "www." at the beginning, since this can cause
  378. # SEO problems (duplicate content). That's why you should choose one of the
  379. # alternatives and redirect the other one.
  380.  
  381. # By default option 1 (no "www.") is activated.
  382. # no-www.org/faq.php?q=class_b
  383.  
  384. # If you'd prefer to use option 2, just comment out all option 1 lines
  385. # and uncomment option 2.
  386.  
  387. # IMPORTANT: NEVER USE BOTH RULES AT THE SAME TIME!
  388.  
  389. # ----------------------------------------------------------------------
  390.  
  391. # Option 1:
  392. # Rewrite "www.example.com -> example.com".
  393.  
  394. #<IfModule mod_rewrite.c>
  395. # RewriteCond %{HTTPS} !=on
  396. # RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
  397. # RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
  398. #</IfModule>
  399.  
  400. # ----------------------------------------------------------------------
  401.  
  402. # Option 2:
  403. # Rewrite "example.com -> www.example.com".
  404. # Be aware that the following rule might not be a good idea if you use "real"
  405. # subdomains for certain parts of your website.
  406.  
  407. # <IfModule mod_rewrite.c>
  408. # RewriteCond %{HTTPS} !=on
  409. # RewriteCond %{HTTP_HOST} !^www\..+$ [NC]
  410. # RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
  411. # </IfModule>
  412.  
  413. # ----------------------------------------------------------------------
  414.  
  415. # Option 3: TXP
  416.  
  417. <IfModule mod_rewrite.c>
  418. RewriteEngine On
  419. #RewriteBase /relative/web/path/
  420.  
  421. RewriteCond %{REQUEST_FILENAME} -f [OR]
  422. RewriteCond %{REQUEST_FILENAME} -d
  423. RewriteRule ^(.+) - [PT,L]
  424.  
  425. RewriteCond %{REQUEST_URI} !=/favicon.ico
  426. RewriteRule ^(.*) index.php
  427.  
  428. RewriteCond %{HTTP:Authorization} !^$
  429. RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization}]
  430. </IfModule>
  431.  
  432.  
  433.  
  434. # ----------------------------------------------------------------------
  435. # Built-in filename-based cache busting
  436. # ----------------------------------------------------------------------
  437.  
  438. # If you're not using the build script to manage your filename version revving,
  439. # you might want to consider enabling this, which will route requests for
  440. # /css/style.20110203.css to /css/style.css
  441.  
  442. # To understand why this is important and a better idea than all.css?v1231,
  443. # read: github.com/h5bp/html5-boilerplate/wiki/cachebusting
  444.  
  445. # <IfModule mod_rewrite.c>
  446. # RewriteCond %{REQUEST_FILENAME} !-f
  447. # RewriteCond %{REQUEST_FILENAME} !-d
  448. # RewriteRule ^(.+)\.(\d+)\.(js|css|png|jpg|gif)$ $1.$3 [L]
  449. # </IfModule>
  450.  
  451.  
  452. # ----------------------------------------------------------------------
  453. # Prevent SSL cert warnings
  454. # ----------------------------------------------------------------------
  455.  
  456. # Rewrite secure requests properly to prevent SSL cert warnings, e.g. prevent
  457. # https://www.example.com when your cert only allows https://secure.example.com
  458.  
  459. # <IfModule mod_rewrite.c>
  460. # RewriteCond %{SERVER_PORT} !^443
  461. # RewriteRule ^ https://example-domain-please-change-me.com%{REQUEST_URI} [R=301,L]
  462. # </IfModule>
  463.  
  464.  
  465. # ----------------------------------------------------------------------
  466. # Prevent 404 errors for non-existing redirected folders
  467. # ----------------------------------------------------------------------
  468.  
  469. # without -MultiViews, Apache will give a 404 for a rewrite if a folder of the
  470. # same name does not exist.
  471. # webmasterworld.com/apache/3808792.htm
  472.  
  473. Options -MultiViews
  474.  
  475.  
  476. # ----------------------------------------------------------------------
  477. # Custom 404 page
  478. # ----------------------------------------------------------------------
  479.  
  480. # You can add custom pages to handle 500 or 403 pretty easily, if you like.
  481. # If you are hosting your site in subdirectory, adjust this accordingly
  482. # e.g. ErrorDocument 404 /subdir/404.html
  483. ErrorDocument 404 /404.html
  484.  
  485.  
  486. # ----------------------------------------------------------------------
  487. # UTF-8 encoding
  488. # ----------------------------------------------------------------------
  489.  
  490. # Use UTF-8 encoding for anything served text/plain or text/html
  491. AddDefaultCharset utf-8
  492.  
  493. # Force UTF-8 for a number of file formats
  494. AddCharset utf-8 .atom .css .js .json .rss .vtt .xml
  495.  
  496.  
  497. # ----------------------------------------------------------------------
  498. # A little more security
  499. # ----------------------------------------------------------------------
  500.  
  501. # To avoid displaying the exact version number of Apache being used, add the
  502. # following to httpd.conf (it will not work in .htaccess):
  503. # ServerTokens Prod
  504.  
  505. # "-Indexes" will have Apache block users from browsing folders without a
  506. # default document Usually you should leave this activated, because you
  507. # shouldn't allow everybody to surf through every folder on your server (which
  508. # includes rather private places like CMS system folders).
  509. <IfModule mod_autoindex.c>
  510. Options -Indexes
  511. </IfModule>
  512.  
  513. # Block access to "hidden" directories or files whose names begin with a
  514. # period. This includes directories used by version control systems such as
  515. # Subversion or Git.
  516. <IfModule mod_rewrite.c>
  517. RewriteCond %{SCRIPT_FILENAME} -d [OR]
  518. RewriteCond %{SCRIPT_FILENAME} -f
  519. RewriteRule "(^|/)\." - [F]
  520. </IfModule>
  521.  
  522. # Block access to backup and source files. These files may be left by some
  523. # text/html editors and pose a great security danger, when anyone can access
  524. # them.
  525. <FilesMatch "(\.(bak|config|sql|fla|psd|ini|log|sh|inc|swp|dist)|~)$">
  526. Order allow,deny
  527. Deny from all
  528. Satisfy All
  529. </FilesMatch>
  530.  
  531. # If your server is not already configured as such, the following directive
  532. # should be uncommented in order to set PHP's register_globals option to OFF.
  533. # This closes a major security hole that is abused by most XSS (cross-site
  534. # scripting) attacks. For more information: http://php.net/register_globals
  535. #
  536. # IF REGISTER_GLOBALS DIRECTIVE CAUSES 500 INTERNAL SERVER ERRORS:
  537. #
  538. # Your server does not allow PHP directives to be set via .htaccess. In that
  539. # case you must make this change in your php.ini file instead. If you are
  540. # using a commercial web host, contact the administrators for assistance in
  541. # doing this. Not all servers allow local php.ini files, and they should
  542. # include all PHP configurations (not just this one), or you will effectively
  543. # reset everything to PHP defaults. Consult www.php.net for more detailed
  544. # information about setting PHP directives.
  545.  
  546. # php_flag register_globals Off
  547.  
  548. # Rename session cookie to something else, than PHPSESSID
  549. # php_value session.name sid
  550.  
  551. # Disable magic quotes (This feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0.)
  552. # php_flag magic_quotes_gpc Off
  553.  
  554. # Do not show you are using PHP
  555. # Note: Move this line to php.ini since it won't work in .htaccess
  556. # php_flag expose_php Off
  557.  
  558. # Level of log detail - log all errors
  559. # php_value error_reporting -1
  560.  
  561. # Write errors to log file
  562. # php_flag log_errors On
  563.  
  564. # Do not display errors in browser (production - Off, development - On)
  565. # php_flag display_errors Off
  566.  
  567. # Do not display startup errors (production - Off, development - On)
  568. # php_flag display_startup_errors Off
  569.  
  570. # Format errors in plain text
  571. # Note: Leave this setting 'On' for xdebug's var_dump() output
  572. # php_flag html_errors Off
  573.  
  574. # Show multiple occurrence of error
  575. # php_flag ignore_repeated_errors Off
  576.  
  577. # Show same errors from different sources
  578. # php_flag ignore_repeated_source Off
  579.  
  580. # Size limit for error messages
  581. # php_value log_errors_max_len 1024
  582.  
  583. # Don't precede error with string (doesn't accept empty string, use whitespace if you need)
  584. # php_value error_prepend_string " "
  585.  
  586. # Don't prepend to error (doesn't accept empty string, use whitespace if you need)
  587. # php_value error_append_string " "
  588.  
  589. # Increase cookie security
  590. <IfModule php5_module>
  591. php_value session.cookie_httponly true
  592. </IfModule>
  593. AuthType Basic
  594. AuthName "dev"
  595. AuthUserFile "/home/grchamb/.htpasswds/public_html/passwd"
  596. require valid-user
  597.  
  598. ------------------------
  599.  
  600. Charset (default/config): latin1/utf8
  601. character_set_client: utf8
  602. character_set_connection: utf8
  603. character_set_database: latin1
  604. character_set_filesystem: binary
  605. character_set_results: utf8
  606. character_set_server: latin1
  607. character_set_system: utf8
  608. character_sets_dir: /usr/local/Percona-Server-5.5.27-rel29.0-315.Linux.x86_64/share/charsets/
  609. 17 Tables: OK
  610.  
  611. 10 Custom fields: custom_1, custom_2, custom_3, custom_4, custom_5, custom_6, custom_7, custom_8, custom_9, custom_10 (10)
  612.  
  613. PHP extensions: Core/5.3.19, date/5.3.19, ereg, libxml, openssl, pcre, sqlite3/0.7-dev, zlib/1.1, bcmath, calendar, ctype, curl, dom/20031129, filter/0.11.0, ftp, gd, hash/1.0, iconv, SPL/0.2, json/1.2.1, mbstring, mcrypt, mysql/1.0, mysqli/0.1, session, standard/5.3.19, posix, Reflection/$Id: 593a0506b01337cfaf9f63ebc12cd60523fc2c41 $, Phar/2.0.1, SimpleXML/0.1, sockets, imap, tidy/2.0, tokenizer/0.1, xml, xmlreader/0.1, xmlwriter/0.1, cgi-fcgi, PDO/1.0.4dev, pdo_sqlite/1.0.1, SQLite/2.0-dev, pdo_mysql/1.0.2
  614.  
  615. pretext_data: <html><head>
  616. <title>401 Authorization Required</title>
  617. </head><body>
  618. <h1>Authorization Required</h1>
  619. <p>This server could not verify that you
  620. are authorized to access the document
  621. requested. Either you supplied the wrong
  622. credentials (e.g., bad password), or your
  623. browser doesn't understand how to supply
  624. the credentials required.</p>
  625. <p>Additionally, a 401 Authorization Required
  626. error was encountered while trying to use an ErrorDocument to handle the request.</p>
  627. </body></html>
  628.  
  629.  
  630. /home/xxxxxxxx/public_html/index.php:
  631. r4086 (1cacaf70cbd9defaa6e21f44a4a823df)
  632. /home/xxxxxxxx/public_html/css.php:
  633. r4086 (c8b264911e6ad82a71588066c133f7b6)
  634. /home/xxxxxxxx/public_html/textpattern/css.php:
  635. r3189 (d2b173a93393ba06195d315de47f7b62)
  636. /home/xxxxxxxx/public_html/textpattern/include/import/import_b2.php:
  637. r3997 (0b219807adeed43500ae73d50dc9c43e)
  638. /home/xxxxxxxx/public_html/textpattern/include/import/import_blogger.php:
  639. r3901 (3c5ab5b884ccd3ee713f018112143b60)
  640. /home/xxxxxxxx/public_html/textpattern/include/import/import_mt.php:
  641. r3446 (e175e6a3ffa57c3ed21721a33c2a7ccc)
  642. /home/xxxxxxxx/public_html/textpattern/include/import/import_mtdb.php:
  643. r3997 (43104a7df70524f5b64305f4d05284ed)
  644. /home/xxxxxxxx/public_html/textpattern/include/import/import_wp.php:
  645. r3997 (f4b1d8914f7041682cee5857fc4da4a2)
  646. /home/xxxxxxxx/public_html/textpattern/include/txp_admin.php:
  647. r4092 (c5a5b7d863afa56bb10b59554b1791b4)
  648. /home/xxxxxxxx/public_html/textpattern/include/txp_article.php:
  649. r4270 (05ef282938604e3fe403beffb7e667c6)
  650. /home/xxxxxxxx/public_html/textpattern/include/txp_auth.php:
  651. r3964 (117a841ec286ef82644b664aa1591e44)
  652. /home/xxxxxxxx/public_html/textpattern/include/txp_category.php:
  653. r4089 (9c0715b38872290d9dcc6097e4247a05)
  654. /home/xxxxxxxx/public_html/textpattern/include/txp_css.php:
  655. r4090 (98363a3352a545c5c79b7c2368e1a4c6)
  656. /home/xxxxxxxx/public_html/textpattern/include/txp_diag.php:
  657. r4192 (e14d3b00084b2a74587e0c309b169e23)
  658. /home/xxxxxxxx/public_html/textpattern/include/txp_discuss.php:
  659. r4089 (9326426b24abcc5422403e2e9fff48e2)
  660. /home/xxxxxxxx/public_html/textpattern/include/txp_file.php:
  661. r4089 (56a9db44164ec37b8a0d1899c6fb1e5c)
  662. /home/xxxxxxxx/public_html/textpattern/include/txp_form.php:
  663. r4156 (306e46a796f1093fdffc675a5484adda)
  664. /home/xxxxxxxx/public_html/textpattern/include/txp_image.php:
  665. r4089 (56fc01f0efac7654a2deb891af251085)
  666. /home/xxxxxxxx/public_html/textpattern/include/txp_import.php:
  667. r3997 (29d60777dad6d2c25df2ccf51d64ed9f)
  668. /home/xxxxxxxx/public_html/textpattern/include/txp_link.php:
  669. r4089 (561afab2d5e3627bc32f9f3f64d455d1)
  670. /home/xxxxxxxx/public_html/textpattern/include/txp_list.php:
  671. r4089 (1be0b2b868e73992b078c94ab8681088)
  672. /home/xxxxxxxx/public_html/textpattern/include/txp_log.php:
  673. r4062 (aaccee1f6e803b10425b45d91f84d0e1)
  674. /home/xxxxxxxx/public_html/textpattern/include/txp_page.php:
  675. r4873 (1681cd54d9297d554c6e61322bf7895b)
  676. /home/xxxxxxxx/public_html/textpattern/include/txp_plugin.php:
  677. r4062 (51761ef37ef637b7fa57d3a58e1681a7)
  678. /home/xxxxxxxx/public_html/textpattern/include/txp_prefs.php:
  679. r4062 (7d8fd18d1ec95b0b5a715f7c425a553e)
  680. /home/xxxxxxxx/public_html/textpattern/include/txp_section.php:
  681. r4089 (d64d4d8fc9d69b50817dac59c4588bbc)
  682. /home/xxxxxxxx/public_html/textpattern/include/txp_tag.php:
  683. r4095 (d7c064d2076dcad78735c1858c8b2bb8)
  684. /home/xxxxxxxx/public_html/textpattern/index.php:
  685. r4916 (7b72f5976df392022490a80042dd9a3c)
  686. /home/xxxxxxxx/public_html/textpattern/jquery.js:
  687. unknown (b8d64d0bc142b3f670cc0611b0aebcae)
  688. /home/xxxxxxxx/public_html/textpattern/lib/IXRClass.php:
  689. r3394 (40f7d5f34686ecd9d259b35006a6042d)
  690. /home/xxxxxxxx/public_html/textpattern/lib/admin_config.php:
  691. r3896 (3b3da76b1c304cd8f72cc2292f737113)
  692. /home/xxxxxxxx/public_html/textpattern/lib/class.thumb.php:
  693. r3733 (d9a8fad9eb15619c6acf6438e02b4fa2)
  694. /home/xxxxxxxx/public_html/textpattern/lib/classTextile.php:
  695. r4096 (2e201db32675f78f0eda37ebc85cb6e8)
  696. /home/xxxxxxxx/public_html/textpattern/lib/constants.php:
  697. r4060 (99d81fec07cfef75e66a3a50f599ccda)
  698. /home/xxxxxxxx/public_html/textpattern/lib/taglib.php:
  699. r2868 (286eac5e382bfa77ecc7953f019ea88b)
  700. /home/xxxxxxxx/public_html/textpattern/lib/txplib_admin.php:
  701. r3818 (52ffa8633e95f442ec00a1a652cb2124)
  702. /home/xxxxxxxx/public_html/textpattern/lib/txplib_db.php:
  703. r3752 (df0b9ae0199fbe8a6148c02ad3ad53b0)
  704. /home/xxxxxxxx/public_html/textpattern/lib/txplib_forms.php:
  705. r4872 (c2ab15d7473a18ef4b55e91c879ad7a6)
  706. /home/xxxxxxxx/public_html/textpattern/lib/txplib_head.php:
  707. r3989 (3f910c8f20cf421ce7b14965a88f90b0)
  708. /home/xxxxxxxx/public_html/textpattern/lib/txplib_html.php:
  709. r4163 (69349d370870489aad691e993a3df20e)
  710. /home/xxxxxxxx/public_html/textpattern/lib/txplib_misc.php:
  711. r4816 (b2931b48f632a6036d86d369b76ece3f)
  712. /home/xxxxxxxx/public_html/textpattern/lib/txplib_publish.php:
  713. r4461 (ea3fbc11514faf38ce9027221b3db31e)
  714. /home/xxxxxxxx/public_html/textpattern/lib/txplib_theme.php:
  715. r3944 (5b2e74350182e012fb05688bbf8ffd29)
  716. /home/xxxxxxxx/public_html/textpattern/lib/txplib_update.php:
  717. r4020 (b71d3ecc7d549b309b1d217b87493331)
  718. /home/xxxxxxxx/public_html/textpattern/lib/txplib_validator.php:
  719. r3802 (e78ec0330390a90cc6c1782af901e77f)
  720. /home/xxxxxxxx/public_html/textpattern/lib/txplib_wrapper.php:
  721. r2931 (ecbe1b28c8a1d897d44a4a099a15e2f9)
  722. /home/xxxxxxxx/public_html/textpattern/publish.php:
  723. r4461 (79818b49d8875dc42a9551ccfc0545a5)
  724. /home/xxxxxxxx/public_html/textpattern/publish/atom.php:
  725. r4011 (937d52579e3c46c5ecf66d3240826c9d)
  726. /home/xxxxxxxx/public_html/textpattern/publish/comment.php:
  727. r4058 (aa88c15e827c5eeb61c880f6e4052658)
  728. /home/xxxxxxxx/public_html/textpattern/publish/log.php:
  729. r3505 (b4fa399a00c6dd321fc198181e6fce4a)
  730. /home/xxxxxxxx/public_html/textpattern/publish/rss.php:
  731. r4011 (7dc2f4065bb1a01b936e35cbfe1029df)
  732. /home/xxxxxxxx/public_html/textpattern/publish/search.php:
  733. r2812 (093e236da60feda207545d45b79a11b0)
  734. /home/xxxxxxxx/public_html/textpattern/publish/taghandlers.php:
  735. r4058 (8b46584619b1d30dd75c79a9e4c8f627)
  736. /home/xxxxxxxx/public_html/textpattern/textpattern.js:
  737. r4057 (bc03389e8771a1a052de955081514079)
  738. /home/xxxxxxxx/public_html/textpattern/theme/classic/classic.php:
  739. r4055 (362612183fb3e4e6e33bf646a2617ca2)
  740. /home/xxxxxxxx/public_html/textpattern/update/_to_1.0.0.php:
  741. r4011 (8fb6bf221628bee9f5d0834643ea5077)
  742. /home/xxxxxxxx/public_html/textpattern/update/_to_4.0.2.php:
  743. r4011 (af1f41698c76adca0eb88af3e2f97001)
  744. /home/xxxxxxxx/public_html/textpattern/update/_to_4.0.3.php:
  745. r4011 (7ef2e0b60d4a82c53283d0959e6c3105)
  746. /home/xxxxxxxx/public_html/textpattern/update/_to_4.0.4.php:
  747. r4011 (b8bb1964b610af251f832ace40200743)
  748. /home/xxxxxxxx/public_html/textpattern/update/_to_4.0.5.php:
  749. r4011 (92610d1ce1eab53871a93287e5589e0c)
  750. /home/xxxxxxxx/public_html/textpattern/update/_to_4.0.6.php:
  751. r4011 (639c3164eb1bed0ee5740f4b5f7bc1f1)
  752. /home/xxxxxxxx/public_html/textpattern/update/_to_4.0.7.php:
  753. r4011 (f21a18372d7f1263b7bb540cecc3e9a2)
  754. /home/xxxxxxxx/public_html/textpattern/update/_to_4.0.8.php:
  755. r3057 (e4e88113d4b0ab6fd003ab62a3c29675)
  756. /home/xxxxxxxx/public_html/textpattern/update/_to_4.2.0.php:
  757. r4011 (43397d2c07e7e54d7b69e0651bc50bc5)
  758. /home/xxxxxxxx/public_html/textpattern/update/_to_4.3.0.php:
  759. r4011 (24accd9fb2688208d02d380b176b3989)
  760. /home/xxxxxxxx/public_html/textpattern/update/_to_4.4.0.php:
  761. r4011 (d30851758fe93cb98ecd998a80fd41f7)
  762. /home/xxxxxxxx/public_html/textpattern/update/_to_4.4.1.php:
  763. r4011 (ceadb82db0c5b238159e3f95937d3c56)
  764. /home/xxxxxxxx/public_html/textpattern/update/_to_4.5.0.php:
  765. r4020 (2ef4d4505566b6a74ec2f1c9948c7ab5)
  766. /home/xxxxxxxx/public_html/textpattern/update/_update.php:
  767. r4919 (683a9a82f055e7fc750cae16a9619eea)
  768.  
  769. ------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement