• Changing root password in phpMyAdmin on MAMP

    To change the root password on MAMP for phpMyAdmin, run this command in terminal: (replace newpass with the new password you want. For password, leave it as password, do not use your current password, you will be prompted for that when you hit enter. keep newpass in single quotes) /Applications/MAMP/Library/bin/mysqladmin -u root -p password ’newpass’ Now you should be prompted for your current password. Enter your current password and the change should take effect. Make…Continue reading

  • Random PHP Banner Rotation Script

    I wrote this script which is used to rotate different types of banners. So far this script can rotate: images, swf, and code. The code will handle any code put into it so be careful when testing. /** /** * Simple Banner Rotation Script * @author Jeremy Simkins aka SoN9ne * * $i is used instead of a number to make the script easier to manage without having to renumber each array item. * $i… Continue reading

  • Setting up MAMP Pro with Zend Debugger, Optimizer and Extension Manager

    It seems some are having trouble setting up the Zend Debugger so i wrote this after doing some testing to see why people are having this problem. I provide below how to do this in MAMP Pro. This will also get rid of the :8888 at the end of the url as well. Download an install the latest version of MAMP Install MAMP Install MAMP Pro - I recommend this if you work on multiple projects,… Continue reading

  • MPS and SweetCron

    I have been working on an open source program called MPS (My Profile Space) for phpBB forums for a couple years now. This has been a project that I worked on in my spare time, so when i say I have been working on it for a couple years, please bear with me. MPS is a social network for phpBB forums that originally started out as a new profile system for phpBB. With my job…Continue reading

  • Use one sweetcron install for multiple domains

    Well, After playing with sweetcron for a bit I wanted to have 4 sites use it but I didn’t want to have to update each site everytime I need to update sweetcron. I found a little tweak you can do to get sweetcron working on multple domains with one install. First, create the folder and put the files in there from the sweetcron download. Next, point a domain to that folder ( i am assuming… Continue reading

1