Search Results
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 […]
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
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
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
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
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 […]
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 […]
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 […]
Thursday, February 21st, 2008
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 […]