All Posts Tagged
Tag: ‘fix’

Fix Wordpress Permissions on MediaTemple DV Server…

Heres a simple way to fix the permissions across all sites on a MediaTemple DV Server…
First, To stop wordpress from asking you for FTP information on plugins, add the following code at the beginning of your wp-config.php file.

define(‘FTP_BASE’, ‘/httpdocs/’);
define(‘FTP_CONTENT_DIR’, ‘/httpdocs/wp-content/’);
define(‘FTP_PLUGIN_DIR ‘, ‘/httpdocs/wp-content/plugins/’);
define(‘FTP_USER’, ‘<FTP_Username>’);
define(‘FTP_PASS’, ‘<FTP_Password>’);
define(‘FTP_HOST’, ‘ftp.example.com:21′);

If you dont want to add this, you can install …

Read More