Warning: Using unique option prefix pass instead of password is deprecated and will be removed in a future release.

Warning: Using unique option prefix pass instead of password is deprecated and will be removed in a future release. Please use the full name instead.

Solution

Locate your my.cnf, or my.ini and change “pass” with “password”.

my.cnf location
http://stackoverflow.com/questions/2482234/how-to-know-mysql-my-cnf-location

Official MySQL post about the warning
http://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-13.html

WordPress Once Click Update

If you want to use the WordPress OneClick feature, i have some news for you:

"file ownership: all of your WordPress files must be owned by the user under which your web server executes. In other words, the owner of your WordPress files must match the user under which your web server executes. The web server user (named "apache", "web", "www", "nobody", or some such) is not necessarily the owner of your WordPress files. Typically, WordPress files are owned by the ftp user which uploaded the original files. If there is no match between the owner of your WordPress files and the user under which your web server executes, you will receive a dialog box asking for "connection information", and you will find that no matter what you enter in that dialog box, you won't be able to update using the "Update Now" button."
http://codex.wordpress.org/Updating_WordPress#Automatic_Update.
Date: 3/31/2014

Proposition #1

So technically whatever permissions you painstakingly set up on your WordPress folder, you have to scratch them and run something like :
chown apache:apache * -R on your wordpress folder.

Wow that is crazy! what about my sftp accounts?

Proposition #2

Another solution will be to switch your web server to the user account that owns the WordPress core files temporarily, then run the OneClick update then replace the user back after you are done.

I do not like either solutions, but i will keep on looking for a better way to handle that in the meantime if you have a comment please express yourself.

SFTP and FTP Permissions for a Team of Developers

If you do not have anything too confidential, you would probably want all your developers to have have 775 and 664 permission by default on all folders and files respectively. They will be able to change each other’s files without a big deal, granted you are dealing of course with responsible developers.

FTP

Here is the way to do it with ftp (vsftp). Don’t forget to restart your ftp server and your ftp client.
Modify your vsftp.conf to include the following:

local_umask=0002
file_open_mode=0777

and

SFTP

Here is the way to do in in sftp

Follow the instructions in this website below:
http://john.parnefjord.se/node/62/print

NOTE: This post assumes that you are working on a development server. For live servers, it is recommended that only a single user account has write access.

How to Merge Outlook PSTs

Merging PSTs in Outlook is very straightforward but again like with everything in life it is only easy when you know it.

FIRST

Open your Outlook

Second

Import your PST. (Here is an OUTLOOK 2013 screenshot)

merge outlook psts

Third

 
Proceed to the Wizard
merge outlook psts1

Fourth

merge outlook psts2

Fifth

 
Complete the steps and repeat the process for each additional PST.

rt-server.fcgi incomplete headers

Check your apache error log file in my case error_log.
after checking the error log file i saw this :
“File::Temp version 0.18 required–this is only version 0.16”

So I had to install :

cpan -i File::temp

then another error about Sys::Syslog
so i had to install:

cpan -i Sys::Syslog