the update of p2 theme has made my blog very ugly -.-
Recent Updates RSS Toggle Comment Threads | Keyboard Shortcuts
-
Nathan Haskins
-
Nathan Haskins
force SSL addresses with .htaccess
pretty simple, added this to .htaccess:
RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://mywebsite.com/$1 [R,L] -
Nathan Haskins
epub to itunes research
why a .epub from inDesign won’t upload to itunes producer without a problems is beyond me. Links to try and debug it:
all .epub’s to the itunes producer need to pass epubcheck 1.0.5: http://www.threepress.org/document/epub-validate
Tip #4: Even though the files properly validate with an EpubCheck site and validate with iTunes Producer, they’re not being tested for everything that Apple’s system might require. Validation doesn’t necessarily mean valid.list of errors: http://code.google.com/p/epubcheck/wiki/Errors
link to downloadable examples of epubs that made it into the apple store: http://usspi.org/download/
Some one’s workflow (second comment): http://www.kindleboards.com/index.php/topic,26225.20/wap2.html
-
Nathan Haskins
-
Nathan Haskins
@mashable, 6/28/10 1:54 PM
Pete Cashmore (@mashable)
6/28/10 1:54 PM
Facebook Steals the Architect of Google Chrome OS – http://bit.ly/ajOq4dSent with Twitter for iPhone
Sent from my iPhone
-
Nathan Haskins
typepad -> wordpress
here’s the directions, its really easy: http://teblog.typepad.com/david_tebbutt/2005/12/moving_from_typ.html
-
Nathan Haskins
WordPress MU and subdomains
-one man’s struggle: http://vernonkesner.com/230/wordpress-mu-subdomains-on-plesk.php
-for MAMP testing, you need to get rid of the :8888 default port: http://www.sawmac.com/mamp/
-need to use your local IP address to access MU 127.0.0.1/: http://www.johnkolbert.com/wordpress/how-to-install-wordpress-mu-on-mamp/ *I still can’t get this install to work… switching gears for now.
-
Nathan Haskins
@jeresig, 6/23/10 5:57 PM
John Resig (@jeresig)
6/23/10 5:57 PM
IE 9 shipping with Canvas! http://j.mp/cTyuQgSent with Tweetie
Sent from my iPhone
-
Nathan Haskins
WordPress defaul 32MB memory limit.. and how to increase it
1) go into wp-config.php
2) add this define(‘WP_MEMORY_LIMIT’, ’128M’);save, done. thanks justin ardoin at simplehelix.com for that one.
-
Nathan Haskins
Allow more filetypes in wordpress upload
Pretty much, add a hook into the theme’s function.php, and specify more… ex:
add_filter('upload_mimes', 'custom_upload_mimes'); function custom_upload_mimes ( $existing_mimes=array() ) { // add your ext => mime to the array $existing_mimes['vcf'] = 'text/x-vcard'; $existing_mimes['vcard'] = 'text/x-vcard'; // add as many as you like // and return the new full result return $existing_mimes; }vcard.. heh
a more in dept summery is here: http://chrismeller.com/2007/07/modifying-allowed-upload-types-in-wordpress