SSH port forwarding/tunneling for MySQL connection

January 2nd, 2008

Create an account on the remote MySQL database server.

useradd -s /bin/false remote_user
mkdir /home/remote_user/.ssh
touch /home/remote_user/.ssh/authorized_keys
chown -R remote_user:remote_user /home/remote_user/.ssh
chmod 755 /home/remote_user/.ssh
chmod 600 /home/remote_user/.ssh/authorized_keys

Add MySQL permissions in the remote MySQL database to allow user connections from localhost.

USE mysql;
GRANT ALL ON db.* TO database_user@127.0.0.1 IDENTIFIED BY 'database_pass';
FLUSH PRIVILEGES;

Now, on the local server (as root) create an RSA key pair to avoide the need for passwords for remote_user. (Simply hit enter for each question encountered.)

ssh-keygen -t rsa

Now transfer the public key file to the remote server from your local server.

scp /var/root/.ssh/id_rsa.pub root@remote_server.com:/tmp/local_server.local_rsa.pub
ssh remote_server.com
cat /tmp/local_server.local_rsa.pub >> /home/remote_user/.ssh/authorized_keys

On the local server, create an SSH tunnel to the remote MySQL database server using the following command.

ssh -fNg -L 3306:127.0.0.1:3306 remote_user@remote_server.com sleep 9999

To use this from PHP you would simply do this:

<?php
...
$remote_server_mysql = mysql_connect( "127.0.0.1", "database_user", "database_pass" );
mysql_select_db( "database", $remote_server_mysql );
...
?>



Using the UNIX tail -f command to watch log files

December 4th, 2007

When troubleshooting a problem in Apache it is a pain to open the log file, find an error, close the log file, and then open it again after you perform some action. This is why ‘tail’ is so handy.

Simply use the command below to view the last 100 lines of a log file, and as new entries are added to the file they are automatically displayed on the screen.

tail -f /the/file/name -n -100



Plesk backup problem

November 27th, 2007

I had a problem backing up domains on a server and received the following error message:

Error: Unable to create backup session: Specified file is not accessible

Finally i solved this problem!!!! it was all about wrong permission in some folders!

check that the folders ‘/var/lib/psa/dumps’ and ‘/var/lib/psa/dumps/tmp’ are chmod to 777



Change/update time on Linux

November 9th, 2007

Sets whether the hardware clock is stored as UTC or local time.

/etc/sysconfig/clock

Symlink /etc/localtime to /usr/share/zoneinfo/… to set your timezone.

To set the current system date/time.

date MMDDhhmm

To set the hardware clock.

/sbin/hwclock --systohc



Javascript disable right click and image tool bar

September 26th, 2007

A recent request from a client was to make life more difficult for his competitors to steal images from his site. He was worried that they could save the images using the Image Toolbar in newer versions of Internet Explorer, and by using the right click menu on the page. For those of you that wish to stop the right clickers from stealing your code, or from stealing images, here is a quick and easy way to make life more difficult for them.

To disable the Internet Explorer Image Toolbar for an entire page add this meta tag:

<meta http-equiv="imagetoolbar" content="no">

To disable the Internet Explorer Image Toolbar for an individual Image do this:

<img src="image.gif" width="250" height="250" galleryimg="no">

Now to handle those who love their “right-click”. For the entire page:

<body oncontextmenu="return false">

And for individual images:

<img src="image.gif" width="250" height="250" oncontextmenu="return false">



CSS style sheet switcher using Prototype

September 25th, 2007

A recent project had a requirementfor a style switcher allowing a visitor to control font size on the site as needed. (Many do not know how to change it through a browser, and most sites are not designed to allow for font size changes without completely trashing presentation.)

Because the project in question was a dynamic site I wanted to make a style sheet switcher that didn’t force a page reload and it seemed like most examples on the net required a page to reload with a new stylesheet. (After PHP or some other scripting language decided which css sheet to render the page with.) This meant additional calls to the server to repopulate data grids and other info, after re-running a query and parsing in PHP. To me this was truly unacceptable load on a server to simply change font sizes on a page.

Read the rest of this entry »



PHP failing to upload images on a Plesk managed server

September 14th, 2007

I recently upgraded a few of my Linux servers from Plesk 7.5 to 8.2. Everything seemed to be fine, however calls started coming in about PHP forms not uploading images correctly.

My team and I were troubleshooting this problem for a few days trying to narrow down the problem. We looked at folder permissions, script permissions, database connectivity, and almost anything else we could think of. Then we stumbled across the error message given by PHP (who would have thought to look at the error message?) that said function move_uploaded_file will not work in safe_mode.

Now looking at the PHP info the main php.ini was set with safe_mode off. However, I found that the httpd.conf for the individual domains on a Plesk managed server carries a declaration for PHP safe_mode, and it was turned on. Upon further investigation I found that in the Plesk interface for the domain there is a checkbox beside the PHP setting that allows safe_mode to be turned on and off.

Mission accomplished!



Adding mssql capability to PHP5 on CentOS

September 6th, 2007

I had a need to connect to MSSQL using PHP version 5 from a CentOS 5 server. To do this I needed FreeTDS and the module mssql in PHP. After a diligent search I found that there was no quick and easy way to install the mssql module, like “up2date install php-gd” to get GD to work from PHP.

I found a few places that had ideas and hints to make this work, but finally used the directions I found at http://www.howtoforge.com/installing_php_mssql_centos5.0 (slightly altered to fit my means) and will duplicate here so I can easily find it later.

At first I thought I needed to recompile PHP, but as it turned out I only needed to pre-compile it so that I could fetch the mssql.so, and then manually edit the php.ini to use it.

Read the rest of this entry »



Using JOIN within the Zend Framework

August 16th, 2007

I found documentation very sparse on the subject of using JOIN with the Zend Framework. So i set out on a quest of many hours figuring out how to get it to work. Here is what I ended up with.

I do not claim that this is the best way to do it, or that it is correct, but here is how I solved this and got JOIN working within Zend Framework.

Read the rest of this entry »



Apache parse PHP from within files using ‘.html’ extension

August 7th, 2007

Recently I had someone that needed to move their site to a new server. The site was entirely created with the files using the .html extension, but had embeded inside.

I simply cleared this up by adding the following line to the httpd.conf, and after a reboot of Apache i was set to go.


AddType application/x-httpd-php .html

If you were to need this type of action for files using the .htm extension you would do the same thing, but replace the .html to .htm in the line.



Headphone problem with Ubuntu 7.04 (Feisty Fawn)

July 11th, 2007

I was having a sporadic problem with my headphone jack in my new Dell E1505 laptop that came pre-loaded with Ubuntu 7.04 (Feisty Fawn), using ALSA. The problem was that when I plugged in my headphones, sometimes they worked, and other times nothing happened. No sound from my headphones at all.

Here is how I fixed the sound in my Dell laptop…

Read the rest of this entry »



Apache redirecting to home directory using userdir module

July 10th, 2007

Development is made easier by running a full development environment on your workstation. I personally run a full LAMP (Linux, Apache, MySQL, PHP) environment that allows me to test what I am developing on my workstation. In this case I am on my new Dell Inspiron E1505n running Ubuntu 7.04 Feisty Fawn.

One of the problems with doing this is the need to play with permissions on ever site in the server root. So instead I am using ‘userdir’ to keep the sites for easy development and testing. In other words I use apache to pull the site from my home directory for display in my browser. Here is how I did it.

Read the rest of this entry »



Laptop not recovering from suspend mode (Dell with Ubuntu 7.04 Feisty Fawn)

July 9th, 2007

I am pretty mobile, and find it a pain to boot up my laptop every time I need it. So instead I simply close it to put it into suspend mode, and simply open it and log in without the needed wait for booting up. (Even though Ubuntu loads very quickly.)

The problem is that sometimes the laptop does not recover, and I am faced with a black screen instead of my login screen. This forces me to force shutdown by hitting the power button, or forcing reboot by hitting Ctrl+Alt+Delete.

After some searching I found a remedy that seems to have fixed the problem. I simply added ‘noapic nolapic’ to my boot. Here is how I did it:


$ sudo vi /boot/grub/menu.lst

Then I found the “kernel” line that corresponds with my boot process, and appended ‘noapic nolapic’ to the end of it. Here is how that line looked when I was finished:


kernel          /vmlinuz-2.6.20-16-generic noapic nolapic

Your line may differ slightly, but simply appending to the end will work fine.



Restarting Plesk base services

July 5th, 2007

I recently had the need to restart Plesk on a server. Everything on the server was running just fine, but Plesk was not responding.

After some searching I found these handy lines that allowed me to get Plesk back up and running.


# /etc/rc.d/init.d/psa stopall
# /etc/rc.d/init.d/psa start

Note: Must be run as root, or su.



New Dell Inspiron with Preloaded Ubuntu 7.04 (Feisty Fawn)

June 27th, 2007

Well, after a couple of weeks waiting my shiny new Dell Inspiron E1505 preloaded with Ubuntu 7.04 (Feisty Fawn) has finally arrived. First I must say that it took a LONG time. It is pretty common for Dell to take some time getting PC’s and/or Servers delivered after it is ordered. (IBM and others tend to get them out faster.) Second, after a few days with the new laptop, it was worth the wait.

Read the rest of this entry »



Microsoft Bluetooth keyboard and mouse on Ubuntu 7 (Feisty Fawn)

May 26th, 2007

I have a Microsoft Optical Desktop Elite Keyboard and Mouse for Bluetooth, and wanted to get them working on my newly installed Ubuntu 7.04 Feisty Fawn desktop. (This was my choice after the adventure of Windows Vista deciding it was not Genuine 1 1/2 months after install, even though it was.) See this article for the details.

I found the basics of this article on the Ubuntu forums, but found that I needed to adapt it a bit. So here is that article, with my changes/additions.

Read the rest of this entry »



Goodbye Windows Vista

May 23rd, 2007

Well, I installed Windows Vista 1 1/2 months ago. During that time I dealt with many driver problems, software issues, and quirks. But the end has come. Today Windows Vista decided it was not Genuine, and that I needed to activate it. Of course it is Genuine, and it had already been activated, so I put in a quick (HAH!) call to Microsoft to activate it after the automated method of doing it over the web failed.

Read the rest of this entry »



Redhat Linux uptime command

May 16th, 2007

The uptime command is very handy to get a snapshot of info about the servers time since last reboot, and load.

Command:

$ uptime

Sample Results:

20:43:04 up 40 days, 13:43,  6 users,  load average: 2.03, 1.68, 1.5

Breakdown of results:

This is the same information contained in the header line displayed by w and top command:

$ w
$ top

Note that w displays who is logged on and what they are doing.
The top command provides a dynamic real-time view of a running Linux/UNIX/BSD system.



Script memory usage, and displaying with PHP

May 15th, 2007

I recently had a problem where a script written by someone else was stopping. There was not warning, error, or indication at all what the problem was. The script simply died as if the process ended.
After a bit of troubleshooting I found that the script was ending due to memory loss. So here is how I used PHP’s memory_get_usage() to troubleshoot through it.

Here is a chart I used for conversion, to simply display the numbers.

1 Byte = 8 Bit
1 Kilobyte = 1024 Bytes
1 Megabyte = 1048576 Bytes
1 Gigabyte = 1073741824 Bytes

Here is how I used echo to display the memory used in MB’s at different points in the script to troubleshoot.

echo "Memory Usage: " . (memory_get_usage()/1048576) . " MB n";



MySqlDump export and MySQL import

May 14th, 2007

To export data as a backup you can’t beat mysqldump.

# mysqldump -u username database > database_2007-05-14.sql

Then to restore a database you would use:

# mysql -u username -p database < database_2007-05-14.sql

It doesn’t get any easier than that!



Getting differences between dates quickly in PHP or MySQL

February 7th, 2007

I recently needed a way to figure out the difference, in days, between two dates. Here is how I did it.

Using PHP:

$expireDate = "2006-02-07";

$year = substr($expireDate, 0, 4);
$month = substr($expireDate, 5, 2);
$day = substr($expireDate, 8, 2);

$splitExpireDate = (mktime(0, 0, 0, $month, $day, $year));
$today = (mktime(0, 0, 0, date("m"), date("d"), date("Y")));

$difference = (($today) - ($splitExpireDate));
$convertToDays = ($difference/86400);

echo $convertToDays;

Using MySQL:

SELECT (TO_DAYS(expire_date) - TO_DAYS(CURDATE())) as days_expired FROM tablename;



Get past date or convert different date format with php

January 25th, 2007

Quick way to figure out a past date in PHP.

echo date("Y-m-d", strtotime("20 days ago"));
echo date('Y-m-d',strtotime('12/15/2008'));



MySQL FIND_IN_SET

January 22nd, 2007

I was faced with a field in the database that had a comma separated list of INT’s with a space after the comma. The application searched this field to generate the recordset to display on a web page.

First I tried using LIKE, with something along this line: ($state_id is being passed by PHP)

SELECT * WHERE `assoc_states` LIKE '%$state_id%';

Well, as you can guess if I was searching for an INT less than two numbers I would get anything that had that digit in it. (Ex. - Searching for ‘%4%’ would also give me entries of 4, 14, 24, 34, 42, 44, etc.)

I may have been able to use RLIKE, but I didn’t fully understand it and there were no good examples of doing what I needed.

That was when I stumbled across FIND_IN_SET. Here is what MySQL.com has to say about it:

Returns a value in the range of 1 to N if the string str is in the string list strlist consisting of N substrings. A string list is a string composed of substrings separated by “,” characters. If the first argument is a constant string and the second is a column of type SET, the FIND_IN_SET() function is optimized to use bit arithmetic. Returns 0 if str is not in strlist or if strlist is the empty string. Returns NULL if either argument is NULL. This function does not work properly if the first argument contains a comma (”,”) character.

mysql> SELECT FIND_IN_SET('b','a,b,c,d');
        -> 2

Here is what I ended up with: ($state_id is being passed by PHP)


SELECT * WHERE FIND_IN_SET('$state_id', `assoc_state`)>0;



MySQL ADDDATE or DATE_ADD

January 15th, 2007

This weekend I needed a couple of MySQL query items that were out of the ordinary, so I thought I would write about them.

ADDDATE or DATE_ADD both work the same, but came in very handy. I was struggling with an application where I need to have the date 42 days from now. PHP doesn’t really have anything that is easy to use, and after a few tries I decided to turn to MySQL. Below is what MySQL.com has to say on these:

When invoked with the INTERVAL form of the second argument, ADDDATE() is a synonym for DATE_ADD(). The related function SUBDATE() is a synonym for DATE_SUB(). For information on the INTERVAL unit argument, see the discussion for DATE_ADD().

mysql> SELECT DATE_ADD('1998-01-02', INTERVAL 31 DAY);
        -> '1998-02-02'
mysql> SELECT ADDDATE('1998-01-02', INTERVAL 31 DAY);
        -> '1998-02-02'



Having Microsoft Fonts on Linux (Ubuntu)

January 10th, 2007

I have been using Ubuntu in the office lately. However, I did not have the standard fonts that you would find on a Windows system for use in documents. So I simply used the following method to add them:


# sudo aptitude install msttcorefonts

For these fonts to display in 96dpi you may also need to add a line in your /etc/X11/xorg.conf:


# sudo vi /etc/X11/xorg.conf

Add this line in the Section “Device” somewhere before EndSection


Option "DPI" "96x96"

Then you will need to either restart X or reboot to apply the settings. After the restart/reboot you can use the following command to see if you are using 96dpi.


# xdpyinfo | grep resolution



Next Page »

phentermine rxlist generic information does phentermine show on drug test canine arthritis phentermine contents of phentermine phentermine pictures dosages order phentermine hcl cod phentermine and mood iwant to purchase phentermine phentermine for sale in usa lose weight fast diet phentermine pill same day shipping on phentermine phentermine doctor weight loss ga cheapest phentermine 37.5x90 phentermine in green and white capsule phentermine and no presciption adjustable bed phentermine q searchers com phentermine show up in drug test drug phentermine side effects phentermine shipped to la 107 30t 37.5mg 64 90t phentermine phentermine st louis doctor cheap prescription diet pill phentermine 37.5mg phentermine nc reliable fast phentermine phentermine pictures phentermine order cash on delivery weight control center phentermine cheaper phentermine online buy prescription phentermine lannett phentermine paypal phentermine phentermine hcl prescription online phentermine menu buy phentermine mg phentermine 37.5 free shipping medical consult difference of phentermine buy domain phentermine tiki com phentermine cheapest overnight cod phentermine without prescription and energy pill online mexican pharmacy phentermine tenuate phentermine 30mg eon labs buy online phentermine information buy phentermine online about us cheap phentermine 15mg indian pharmacy online phentermine phentermine induced psychosis boards diet googlepray phentermine pill phentermine pharm pills phentermine without hoodia cheapest phentermine online cod burn desert ephedra phentermine fast phentermine delivery no prescription buy phentermine no perscritpion phentermine to arkansas buy phentermine cheaper cod delivery online phentermine lowest price on phentermine phentermine no prescription discount cheap diet pills phentermine buy phentermine online usa licensed pharmacy phentermine in the uk c cheap d o phentermine does phentermine test positive for amphetamines phentermine diet pills need doctor prescription phentermine prozac umaxppc phentermine adipex diet pill prescription diet inexpensive phentermine pill cheapest phentermine price phentermine philadelphia phentermine 37.5 and us pharmacy phentermine what doese it do information weight loss drug phentermine adipex buy phentermine without presription phentermine lasix straterra non rx required where can i order phentermine phentermine pharmacies on line buy phentermine blue pill 37.5 mg phentermine with no rx phentermine 37.5 black and green re prozac and phentermine anyone online phentermine cod prices buy phentermine online ritalin order phentermine 37.5x90 diet pill over the counter phentermine phentermine 30 mg getting phentermine online cheapest phentermine onine phentermine using c o d phentermine use cheapest phentermine prescriptions cheap phentermine phentermine to ky phentermine no prescri hr style bariatric clinic phentermine delivery florida online pharmacy phentermine phentermine without precription line order phentermine phentermine 37 5mg order online online adipex meridia phentermine prescription viagra phentermine rx online consult price phentermine where to purchase phentermine diet pills phentermine no prescription required online consultation 3b phentermine hemmorhoids and phentermine phentermine chest pain phentermine 37 5 order medication india generic phentermine buy phentermine weight loss pill phentermine purchase with money order buy cheapest phentermine place phentermine online no prescription order phentermine by phone no pres online pharmecies that sell phentermine phentermine hcl ultimate phentermine hcl data phentermine hcl symtoms re phentermine purchase phentermine overnight shipping online usa pharmacy phentermine 90 count internet phentermine phentermine fastin phentermine long term consequences phentermine no prior buy online phentermine xenical purephentermine bipolar phentermine us approved pharmacies phentermine 37.5 mg tab 90 search results phentermine no prescriptions phentermine no prior 30 mg phentermine 37.5mg purchase without a script phentermine side effects irregular menstruation phentermine w free consultation phentermine cod delievery low prices on phentermine 37.5 cheap phentermine offer cash on delivery 30 mg phentermine picture of phentermine 37.5 no prescripton e pharmacies phentermine can phentermine be shipped to florida phentermine without doctor perscription phentermine buy online with no prescription phentermine no prescription usa phentermine cod online pills phentermine 30mg without doctor prescription phentermine no prescripti phentermine obesity strong find cheap on line phentermine pills cheap phentermine without phentermine and psychosis iowa phentermine is adipex phentermine t order phentermine cash on delivery phentermine testimonials hack phentermine india phentermine phentermine testamonials phentermine by mastercard computer over phentermine phentermine no prescription european phentermine online no credit card adipex vs phentermine purephentermine 3 58 online phentermine purchase diet phentermine lifeline phentermine pay with cod carrie carmichael phentermine phentermine phentermine online us licensed pharmacies phentermine 90 count for under $150 case eon lab liability phentermine product need phentermine without dr prescription phentermine order cheap cardizem cd actos phentermine norvasc buy phentermine from study trial erope domain phentermine phentermine and steroids overseas cheap phentermine no prescription nevada coop phentermine site abuse phentermine phentermine phentramine online prescription order cheap phentermine overnight delivery buying real phentermine on the internet phentermine blue 30mg 30 caps reviews buy phentermine no prior prescription 37.5 discount phentermine buy generic phentermine buy phentermine prozac dr mcclellan crosby phentermine phentermine testimonails phentermine no script fedex overnight online phentermine xenical phentermine sites that accept mastercard best online pharmacy phentermine no prescribtion phentermine phentermine on medications webpark pl order phentermine without prescription ship overnight forum phentermine carisoprodol 30 ml phentermine no script adipex cheapest diet phentermine pill phentermine e bay drug reactions between phentermine and metabalife addiction drug online order phentermine phentermine results online pharmacy phentermine low cost get phentermine prescription phentermine and online prescriptions phentermine no processing fees buy phentermine 37.5 blue pill 4.01 online phentermine purchase cheap phentermine at vcezaebis org phentermine vs phendimetrazine phentermine and potassium meridia xenical and phentermine buying phentermine phentermine b12 injections amino acids phentermine buy order phentermine without the rx phentermine no prescription usa pharmacy selling phentermine busted ad pharmacy charges phentermine testicle swelling fact phentermine phentermine buy uk order phentermine 37.5 mg online cheapest phentermine without a prescription phentermine red and white pill phentermine online without precription phentermine green and white capsule picutres phentermine and ups phentermine incrediants phentermine us pharmacy order phentermine without doctors prescription bay phentermine index soma phentermine phentermine sent overnight ephedra phentermine phentermine 375 cod online phentermine buy phentermine site phentermine with master card phentermine prescription online physician phentermine no prescription us effects long phentermine side term licenced pharmacy phentermine drug testing phentermine herbal phentermine review wesites selling no perscription phentermine most successful ebook diet phentermine pill phentermine and celexa phentermine no dr no docter consultation phentermine phentermine phentermine information from drugs com discount generic phentermine effect nose phentermine runny side buy discount phentermine no prescription discounts for phentermine buy phentermine weight actavis mfg phentermine 30 mg phentermine and online prescriptions and physician phentermine online at cms phentermine mg at cms green white phentermine capsules phentermine ships to usa phentermine and healthy weight loss phentermine causes bad breath buy online phentermine start immediately phentermine add phentermine without prescription pharmacy online phentermine suspension phentermine 37.5 diet pills phentermine broker online in ky phentermine want to buy phentermine online buy cheapest cod phentermine site cash on delivery for phentermine zyrtec foradil phentermine evista 3pm cheap phentermine phentermine 37.5 90 $89 mastercard is phentermine stronger than didrex bontril phentermine pravachol phentermine and no prior and overnight buy phentermine online cheap phentermine prescription phentermine op ordering guaranteed lowest prices phentermine diet pal pay phentermine pill on line prescription for phentermine phentermine confidential phentermine bakersfield 2nd day fedex phentermine phentermine 30mg no prescription cheap phentermine pills pharmacy online buy phentermine from the united kingdom picture of phentermine pills forums phentermine cheapest prices phentermine 37.5 no prescription phentermine licensed physician cheap phentermine with fr phentermine presciption diet pills phentermine no doctor call bariatric facility and perscribed phentermine phentermine on line with out prescription phentermine pills break in half phentermine 37.5 $93 side effects of phentermines buy phentermine for less phentermine erection help phentermine 37.5 without physician phentermine 2007 adipex phentermine vs the offical site pharmacy phentermine phentermine 30 mg capsules 37 effects phentermine side pharmacy online phentermine online description price phentermine success story gt phentermine hci no prescription us pharmacy phentermine for weight loss online pharmacy canadian pharmacy for phentermine phentermine lortab online birth defects and phentermine use accepting cod pharmacy phentermine custom phentermine phentermine equivalents phentermine no prescription mexico phentermine prescription no consultation herbal phentermine diet drugs phentermine phentermine didrex 37.5 tablets phentermine without a perscription phentermine supplier phentermine and sex phentermine direct net contact phentermine site travel phentermine 37.5 tablets no prescription phentermine sell phentermine in hair follicle drug test phentermine tablets online prescription consultation ingredients in phentermine didrex didrex and phentermine di buy phentermine in florida buy cheap phentermine here phentermine manic depression keyword phentermine 37.5mg buy phentermine no phentermine prescription prior works as good as phentermine phentermine hydrochloride us licensed pharmacies phentermine fear of pills phentermine buy cheap online phentermine 37.5 no prescription overnight delivery comment info personal phentermine remember phentermine online no prior prescription cheap online phentermine price fioricet phentermine shipping no rx phentermine 37.5 90 150 phentermine usa pharmacy ativan phentermine online no dr approval no prescription required phentermine diet phentermine phentermine phentermine mail order cheap phentermine online pharmacy online buy phentermine in stock here phentermine amphetamines search results discount phentermine order phentermine no physician no rx for phentermine phentermine no prior prescription phentramine diet pills online no prescription phentermine phentermine life in the system cheapest diet phentermine pill overnight phentermine with drs consult health career diet phentermine pill buy phentermine res phentermine phentamine cheapest phentermine us licensed pharmacies buy phentermine cash delivery phentermine rankings buy phentermine 37.5 90 phentermine overprescribing phentermine hydroc first approved phentermine cheap phentermine 37 5 phentermine buy on line overnight order phentermine online use mastercard phentermine soma online pharmacy phentermine site effects by movable phentermine powered type phentermine online overnight prescription phentermine great search phentermine hydrochloride pdr discount phentermine no prescription free shipping phentermine from pakistan phentermine cod no rx needed phentermine kosmix topic page online order phentermine uk no script phentermine best price phentermine shipped cod best online pharmacy no prescription meds phentermine phentermine with out doctor phentermine ssri low cholesterol diet buy phentermine phentermine review online pills huge discounts cheap cod phentermine 37.5mg cheap phentermine phentermine us pharmacys online diet pill called phentermine cheap phentermine on line phentermine weight loss success stories phentermine best price online purchase phentermine no tx phentermine heart palpitations phentermine 37.5 mg no perscription 1 134 phentermine cheap phentermine taking cheap phentermine low price on pills generic for adipex p phentermine hcl canadian pharmacies for phentermine phentermine orders phentermine as a pink pill lowest price phentermine with free shipping phentermine usa pharmacy fda buy phentermine adipex-p online phentermine with no prescription of physician phentermine high pulse 37.5 90 phentermine pill phentermine 37.5 mg pills e scripts phentermine fast shipping for phentermine cheap mg phentermine phentermine under $1.00 per pill phentermine online suppliers phentermine no prescriptions sat delivery ordering 30mg phentermine cheapest price on phentermine 24 hour phentermine no prescription phentermine phentermine pillstore zdravi online pharmacies phentermine no prescription phentermine blue and clear buy phentermine with no prescripton delivered phentermine phentermine drug phentermine groups ingredient phentermine phentermine online form can phentermine cause edema weight loss phentermine cardinal health diet phentermine pill deine nachricht phentermine site florida pharmacy phentermine 90.00 phentermine what's in phentermine what does phentermine look like phentermine yellow without doctor script phentermine doctor san diego phentermine with usa doctors consult phentermine and prozac for weight loss phentermines buy online pal pay phentermine phentermine online pay with mastercard articles on phentermine phentramin exciting new alternative to phentermine phentermine information from drugs phentermine with no persciption buy phentermine 37.5 90ct for $90 metabolized of phentermine phentermine forums before valentines buy phentermine pay with mastercard phentermine no prescription online consultation 37.5 overseas phentermine phentermine over night without prescription phentermine 90 count phentermine deliver uk cash day delivery guaranteed next phentermine 4.28 diet phentermine pill phentermine online and sonata online pharmacies phentermine sat shipment no rx phentermine for sale no prescription phentermine purchase online doctor diet programs using phentermine adipex phentermine pill buy phentermine cod medipharm cheap phentermine order discount phentermine online phentermine 20 2037.5 phentermine no shipping to kentucky discount phentermine phentermine mg cheapest phentermine drug information for phentermine order phentermine without a presription phentermine order best online pharmacy cheap phentermine online get phentermine cheapest best diet online pharmacy phentermine pill phentermine crack down phentermine buy now cheap phentermine very phentermine order express shipping bargain buy phentermine phentermine consultation no prescription buy phentermine forum review buy adipex p phentermine online phentermine free physician consultation phentermine 37.5mg tablet phentermine with online doctor consultation phentermine cod overnight eft phentermine online with free consultation buying phentermine without a rx buy phentermine no prescrition phentermine ionamin canada phentermine no preescription capsule phentermine yellow controlled substances phentermine pharmacy degree line phentermine online smoke phentermine cheapest phentermine phentermine best prices no prescription needed lysergic acid diethylamide aciphex phentermine pharmacy buy phentermine without prescriptions buy phentermine no prescription purephentermine phentermine doctor prescription address phone phentermine no presecription accepting card master pharmacy phentermine purchase phentermine us pharmacy free shipping online orcer phentermine overnight phentermine shipping buy phentermine saturday overnight phentermine brand accepted cod order phentermine s phentermine overnight cod pay by check phentermine no prescription for phentermine phentermine buy cheap phentermine pills online drug screening phentermine phentermine hcl 37 mg tablets phentermine no prescription fedex overnight delivery phentermine with discover without rx phentermine overnight usa pharmacy online cheap phentermine at our canadian pharmacy cheap phentermine $99.00 no prescription dr perez pa phentermine find cheap phentermine fl phentermine u s a no rx phentermine supplement facts phentermine free consultation no prescription phentermine yellow 30 mg pravachol actos phentermine flextra prescription phentermine with cod payment pharm phentermine order phentermine online fast delivery phentermine with dr consult a pharmaceutical grade alternative to phentermine phentermine 37.5 mg 90 buy no precription phentermine online tablets phentermine no rx weight loss philadelphia phentermine xenical vs phentermine vs meridia cheap phentermine without prescritption buy fastin phentermine no prescriptions cheap phentermine witout a prescription phentermine 375 online overnight delivery do meridia phentermine work the same loss phentermine weigh search results adipex phentermine vs phentermine site map buy phentermine overnight saturday delivery purephentermine diaic diet sheet phentermine pill buying phentermine overseas cheapest phentermine no dr number phentermine effexor pharmacy phentermine overnight delivery phentermine online ordering ups overnight delivery phentermine us only phentermine hcl without a prescription phentermine buy phentermine online cheap phentermine phentermine without a prescription consultation online phentermine 37.5 $180 phentermine pharmacy phentermine pharmacy mystery phentermine withou a prescription phentermine 37.5 mg no prescripton cheap phentermine with online consultation best prices phentermine online pharmacy cheapest no phentermine prescription diet discount phentermine pill phentermine pharmacy non prescription phentermine ionamin fedex delivery phentermine order phentermine free consultation eon phentermine non prescription phentermine mexico phentermine order online best price phentermine without a prescription buy phentermine online cod phentermine safe to take online phentermine mastercard hydrocodone keyword pain phentermine vicodi phentermine 37.5mg 180 tablets is phentermine a street drug buy phentermine phentermine online delivered overnight weight loss prescription phentermine changes in libido phentermine phentermine side effect sweating online phentermine consult free online phentermine usa phentermine adipex side effects phentermine fedex no precription phentermine cheap u s pharmacy phentermine buy online no prescription phentermine 37.5mg cheap phentermine c o d phentermine free consult overnight buy phentermine online no pescription discount phentermine discount phentermine norvasc buy diet pills phentermine discount phentermine online pharmacy phentermine study buy phentermine no prescription required in stock phentermine without prescription cash on delivery phentermine no prescription 2007 phentermines 30mg picture of phentermine phentermine and pharmacy phentermine 37.5mg pills loss medication phentermine weight phentermine overnight pharmacy phentermine before surgery international phentermine no rx discount phentermine phentermine phoenix arizona buy phentermine without rx purchasing phentermine without a doctor phentermine no prescriptions cheap phentermine no subscription phentermine snort phentermine hair loss phentermine about withdrawl order phentermine without a prescription adipex cheap phentermine phentermine us pharmacy online physican approval real phentermine diet pills phentermine on line consultation and prescription cod phentermine informative phentermine details discount free phentermine shipping get prescription for phentermine on line eon labs phentermine no prescription online overnight phentermine prescription indian phentermine cheap no perscription phentermine phentermine to buy with mastercard compare adipex to phentermine phentermine diet pill message board 37.5 cod phentermine phentermine and side effects effects long phentermine prescription side term 30mg phentermine without prescription cheapest prescription phentermine phentermine no prescripti phentermine obesity phenermine generic phentermine no prescription phenermine vs phentermine v-care surgical private ltd phentermine phentermine 37.5 pictyre bontril phentermine is phentermine bad for your heart diet hcl phentermine pill online us pharmacy with md phentermine weightloss clinics phentermine appetite suppressants and phentermine buy phentermine phentermine prescription cheapest phentermine 30 mg online pharmacy no prescription phentermine phenylpropanolamine in phentermine buy cheap phentermine online lowest prices phentermine cap phentermine hair loss fake phentermine websites discount phentermine without prescription no script next day phentermine comment keyword phentermine purchase pravachol phentermine pharmacy los angeles custom hrt phentermine phentermine phentermine online phentermine side effects 30 cap mg phentermine price compare phentermine no prescription no prescription needed and cheap phentermine phentermine and wellbutrin phentermine hydrochloride 8 mg international pharmacies and phentermine phentermine hpen fen no dr required energy equal to phentermine phentermine false postive phentermine no perscriptions phentermine no prescription fedex delivery a159 s phentermine pharmacies phentermine compare buy phentermine by cod phentermine to california phentermine phentermine mastercard online besked hjemmeside navn phentermine phentermine saturday delivery cash on delivery internet prescriptions phentermine cheap brand name phentermine canada phentermine international orders quitting phentermine phentermine gen for adipex-p best buy phentermine price top websites for phentermine what is phentermine hydrochloride phentermine phentermine online phentermine hcl acomplia amp phentermine diet pills non phentermine prescription phentermine without prescription phentramine phentermine 37.5 mg no prescription phentermine ephedra phentermine sibutramine best prices order phentermine hcl without prescription no rx phentermine 30mg true phentermine no prescription needed immediate phentermine overnight delivery purchase phentermine fedex 4.22 n order phentermine buy phentermine online online doctor phentermine online orders org phentermine site phentermine causing miscarriage complete phentermine phentermine images drug phentermine review pravachol nexium actos phentermine tamiflu phentermine diffferences in color of pills phentermine sources phentermine pulmonary hypertension cheap delivery online phentermine saturday forums order phentermine celexa phentermine us licensed pharmacies phentermine and heart rate during exercise overnight saturday phentermine before 4pm phentermine missouri phentermine no prescription cheap us pharmacy phentermine 90 ct no rx phentermine mp273 tablets no prior prescription required phentermine phentermine vs adipex p purchase phentermine cheapest phentermine online bac phentermine uk buy phentermine and facts not sales phentermine zoloft together florida phentermine cod cheap phentermine without prescription pharmacy online diet in phentermine pill uk phentermine pharm in stock cheap ionamin with no prescription phentermine phentermine 37.5 us pharmacy phentermine for under 100 tablet phentermine round pill no pharmacy phentermine rx us phentermine cheap no rx complete phentermine information from drugs phentermine mg drug store best prcies buy online pharmacy phentermine constipation phentermine phentermine hcl 37.5 mg hard to find phentermine order perscrption phentermine without rx cod diet phentermine pill shipped phentermine for migraine prevention phentermine diet pill diet pill discount phentermine to florida cheap phentermine com order phentermine hcl tricuspid regurgitation and phentermine topamax and phentermine 2003 daily feb online phentermine statistics cheapest phentermine prescription phentermine purchase online no prescription phentermine mexican pharmacies online phentramine vs phentermine phentermine without prescription detailed information about overnight no prescription phentermine discount phentermine discount phentermine phentermine pill dermatoses from phentermine usage order us phentermine online cheep phentermine no prescription phentermine online adipex without a prescription not phentermine manufacturer of phentermine phentermine cod nrop 90 count buy cheap phentermine s diet pills phentermine cheap phorum script buy phentermine phentermine and pregnancy test buy followup phentermine post phentermine doctors new york weight loss clinic phentermine redondo beach florida phentermine shipped phentermine without a perscription global pharmacy phentermine phentermine 99 didrex message phentermine post phentermine with c o d phentermine discover card online questionnaire perscriptions for phentermine phentermine 37.5 c o d phentermine 37.5 order medication mexico phentermine prescription no health re software diet phentermine pill phentermine at lowest price us aciphex actos phentermine norvasc diet pills adipex p phentermine order phentermine online uk when was phentermine approved prescription weight loss pills phentermine buy phentermine using pay pal phentermine and pregnancy cheap refill on phentermine 30mg kingwood tx phentermine phentermine hydrocloride iv tablets phentermine taiwan complete phentermine information from diet prescription phentermine diabetes diet prescription phentermine hcl without prescription phentermine resin 30 picture of phentermine capsules phentermine in enid oklahoma phentermine antidepressant phentermine online prescriptions phentermine online buy nasacort aciphex phentermine pharmacy pittsburgh discount phentermine phentermine adipex phentermine adipex mcdonough georgia phentermine phentermine cause positiv purchasing phentermine online online phentermine requiring no prescription buy no perscription phentermine 375mg phentermine delivered to fl 1000mg hoodia phentermine buy overnight phentermine buy phentermine online without a prescrition long phentermine term use phentermine green white capsules order phentermine cheap phentermine quick phentermine and pancreatitus phentermine dangerous cheap phentermine free medical consult phentermine no prescription indeks phentermine rx online 37 mg phentermine card master no phentermine prescription buy phentermine no prescription overnight delivery phentermine online with insurance no prescription phentermine and heart disease international pharmacies selling phentermine 3.34 cost low phentermine 37 5mg phentermine nc phentermine sitetracer com good website phentermine buy phentermine in kentucky phentermine online cheap when does phentermine sart to work diet phentermine pill phentermine 37 5 mg free shipping 90 phentermine over seas where to buy phentermine phoenix arizona phentermine 24 hour delivery phentermine mastercard no rx phentermine and fast shipping phentermine 375 90 day cheap phentermine no prescription do it work phentermine capsule 30mg phentermine and shots phentermine directions rx phentermine online overnight phentermine eft mississippi pharmacies sell phentermine drug interactions with phentermine and lamictal phentermine and acne buy phentermine levitra cheap 37 5 phentermine rx adipex phentermine weight loss effects phentermine psychological side phentermine shipped fast phentermine average weight loss does phentermine cause high blood pressure phentermine us cheapest buy cheap phentermine yellow mg phentermine phentermin