Monthly Archives: July 2012

3 Steps To Healing And Enlightenment

step #1 : letting go the first part is completely relaxing and letting go off all worries step #2: reflect yourself within the univers realise your true position within the universe step #3: collect as much energy as possible to … Continue reading

Posted in everyday tips | Leave a comment

Dating Blocks Your Creative Energy And Destroys Healthy Energy

Never go out on dates. If a great relationship happens it happens out of friendship not dates. Dates and casual sex completely destroy your energy field for several days if not weeks blocking you in getting ahead in your other … Continue reading

Posted in everyday tips | Leave a comment

Extracting Emails Getcontacts Yahoo Sdk

most codes dont work properly so i wrote my own simple code: // fetch latest user data $user_contacts = $oauthapp->getContacts(null,0,20); //print_r($user_contacts); foreach ($user_contacts->contact as $contact) { //echo $contact->id."<br>"; $far = $contact->fields; if(is_array($far)){ if(strstr($far[0]->value, "@")){ $emails[] = $far[0]->value; }else{ $emails[] = … Continue reading

Posted in everyday tips | Leave a comment

How To Install Configure SSL Certificate In Plesk COMODO PositiveSSL

go to domain -> secure your sites -> enter information and create request. use that signature you receive with comodo or some other provider to create your key. you get 3 files in a zip from them one is your … Continue reading

Posted in everyday tips | Leave a comment

Php Execution Time Function – Multiple Times

I just hate how many “complicated” classes there are for testing your script performance. so i wrote a simple function to do that. function runtimer($cmd){ global $timearray; global $starttime; if($cmd == "start"){ $starttime = microtime(); } if($cmd == "end"){ $endtime … Continue reading

Posted in everyday tips | Leave a comment

Set Mysql Password Psa Plesk

Symptoms Cannot log in to Parallels Plesk Panel (PP). The following error is displayed instead of the login screen: ERROR: PleskFatalException Unable to connect to database: saved admin password is incorrect. 0: common_func.php3:93 psaerror(string ‘Unable to connect to database: saved … Continue reading

Posted in everyday tips | Leave a comment

Debugging And Enhancing Mysql Performance

first backup all your databases. if you use plesk: mysqldump -u admin -p`cat /etc/psa/.psa.shadow` –all-databases > /var/tools/backdb/all-database.sql connect to mysql via command line or phpmyadmin or some other SQL query tool. mysql -u DBUSER -h DBSERVERNAME -p use DATABASENAME use … Continue reading

Posted in everyday tips | Tagged | Leave a comment