Search Results

using wordpress from multiple locations

Wednesday, May 21st, 2008
If you’re new here, you may want to subscribe to my RSS feed. Thanks for visiting!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 […]


php: Serpent encryption class

Tuesday, May 13th, 2008
Php Serpent class using mcrypt. requires two md5 keys for encryption You can download from: http://gregsidberry.com/wp-content/uploads/2008/05/Serpent.inc


php: aes Rijndael encryption class

Tuesday, May 13th, 2008
Php aes [ Rijndael ] class using mcrypt. requires two md5 keys for encryption You can download from: http://gregsidberry.com/wp-content/uploads/2008/05/Rijndael.inc


php: twofish encryption class

Tuesday, May 13th, 2008
Php twofish class using mcrypt. requires two md5 keys for encryption You can download from: http://gregsidberry.com/wp-content/uploads/2008/05/TwoFish.inc


php: blowfish encryption class

Tuesday, May 13th, 2008
Php blowfish class using mcrypt. requires two md5 keys for encryption You can download from: http://gregsidberry.com/wp-content/uploads/2008/05/BlowFish.inc


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 […]


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 […]


pending items

Thursday, February 21st, 2008


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 […]