Search Results

my blog still sucks

Thursday, July 17th, 2008
If you’re new here, you may want to subscribe to my RSS feed. Thanks for visiting!one day I’ll finally finish setting up wordpress


using wordpress from multiple locations

Wednesday, May 21st, 2008
Wordpress checks to make sure your running on from the proper site location. Problem is sometimes you just need it to run. ex: wordpress runs at elsid.net, admin runs at admin.iamsid.net Or you run both your development and production version of wordpress from the same db edit the get_option function in the functions.php file in the wordpress includes […]


all about the wordpress 2.5 caching system

Wednesday, April 23rd, 2008
theres a post on neosmart that answers alot of questions about the new caching system in wordpress Ever since the creation of interpreted languages and the birth of dynamic web content, developers have been on the lookout for tools, workarounds, and extensions in search of a solution for a solution to bring maximum performance to the […]


configuring wp-cache to work with apc

Wednesday, April 23rd, 2008
Having issues getting wp-cache and apc to play nice? So was mark, luckily he found the answer so I can link to him APC (Alternative PHP Cache) is great for WordPress. It caches the compiled WordPress PHP files and greatly speeds up subsequent loads. I even wrote a WordPress plugin to make WordPress store its objects in APC instead […]


Introducing the Google AJAX Translation WordPress Plugin

Wednesday, April 23rd, 2008
Keep an eye on this project. libin at libinpan.com has started a wordpress plugin to translate your text using ajax and google’s translation service Google just released a new API yesterday: Google AJAX Language API. AJAX Language API is built on top of Google Translate, it current supports 13 languages and 29 translation pairs. It is new […]


Wordpress: modifying uploads

Wednesday, April 16th, 2008
I’ve been working for a while to figure out how to modifiy the way wordpress handles uploads.  If your trying to make changes in the actual upload process open file.php in the wordpress wp-includes folder. the function you’ll need to make changes to is wp_handle_upload for anyone wondering why you would ever want to modify uploads heres […]


integrating wordpress into existing site - part 2

Tuesday, March 11th, 2008
I realized I left out alot while reading part1, so i’m covering more here, an possibly in additional posts disable plugins if not in wordpress  You’ll need to use wordpress on the backend from time to time, mostly for login / logout functionality. You should build a connector class to handle this. When using wordpress via your […]


reference: Exclude Category in WordPress

Monday, February 25th, 2008
This is probably the fastest way to exclude category in WordPress besides using a plugin. This is also the same method that I use for Shortnotes plugin. Exclude Category in WordPress


answers: how to fix wordpress session issues and kills

Monday, February 4th, 2008
I recently had an issue with wordpress killing custom sessions from the site is was integrated in. After a quick google i found out i wasn’t the only one. Here’s whats worked for me wp-config.php : at the top of this file add @session_start() and global $_SESSION template files : add global $_SESSION Your sessions should now run fine […]


integrating wordpress into existing site

Tuesday, December 25th, 2007
this is more for my reference than anything, but I cover the areas i modified to integrate wordpress in to a clients current site. I’m posting this, mainly to keep me from having to compare files everytime i do a wp upgrade. its by no means a solid tut as there are additional site classes […]