I’ve been looking for something over the last 20 years and I’ve recently found it. To be more accurate it found me. Fortune Hi-Tech Marketing has a perfect business model where you don’t have to work 40 hours a week or, in many cases, more to earn a great income. People work hard and spend a lifetime at their careers building valuable skills or climbing a corporate ladder and then have to retire on half of what they couldn’t live on before. As you invest in only yourself you become your only asset.
Fortune’s business model will continue to return an income even if you are injured, sick or retired. Building your business with Fortune means that you are investing in others while helping them earn a great income as well. As you build your business you create an asset that unlike any other career it can be passed on to your children once you are gone.
I am so impressed with Fortune and everything it offers. It’s exactly what I’ve been looking for. There is an opportunity to be an area leader and build a lasting investment. You just need to get started. A quote that our founder often repeats, “The best time to plant an oak tree was thirty years ago, the next best time is today.”
Sara and I will be attending Fortune Fest 2010 in Lexington, KY next week. Also attending is my brother Doug and his wife, Sonya. We will be at the Rupp Arena as it’s the only building large enough in the area to hold the large number of Representatives gather for the annual meeting. The corporate offices for FHTM is located in Lexington.
We will enjoy performances from Lee Ann Womack, Paul Overstreet and Garth Fundis.
if [ -z "$SUBDOMAIN" ]
then
if [ -z "$DBNAME" ]
then
mysqldump $DBNAME > /var/www/vhosts/$SITE/httpdocs/$DBNAME.sql
fi
tar -czvf $SITE.httpdocs.tar.gz /var/www/vhosts/$SITE/httpdocs
else
if [ -z "$DBNAME" ]
then
mysqldump $DBNAME > /var/www/vhosts/$SITE/subdomains/$SUBDOMAIN/httpdocs/$DBNAME.sql
fi
tar -czvf $SUBDOMAIN.$SITE.httpdocs.tar.gz /var/www/vhosts/$SITE/subdomains/$SUBDOMAIN/httpdocs
fi
When using is_home(), is_category(), is_page() etc. in my WordPress plugin that displays category-based ads, they kept returning NULL.
My problem was that I was calling this these function directly in my plugin. I resolved this by adding these call to my adHeaderSetup() function and setting the hook add_action(‘wp_head’, ‘adHeaderSetup’);
I know how tempting it is to press that upgrade button, but don’t do it without backing up those files. Backing up your files first is just too quick and easy to skip when doing it from the command line. Here’s how:
Backup your MySQL database DATE=`date | tr ” ” _`
mysqldump -u root -p DatabaseName > DatabaseName.$DATE.sql
Backup your web directory tar cvzf new_filename.tar.gz /var/www/thiessen.us/httpdocs
c = create v = verbose z = compress f = filename is being provided
If you need to restore these files
Restore MySQL database mysql -u root -p DatabaseName < DatabaseName.Thu_Jun_11_08:14:41_CDT_2009.sql
Restore the web directory
cd /var/www/thiessen.us (change directory to the location of the web directory)
mv httpdocs httpdocs_bad (rename the current web directory)