Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Found a fix for the ftp password prompt issue…Credit goes to ufgcorp on the MT forums.

    1. open wp-config.php
    2. Add the following and edit with your ftp info

    // ** FTP SETTINGS FOR AUTO-UPDATE ** //
    define(‘FTP_HOST’, ‘localhost’);
    define(‘FTP_USER’, ‘YOUR-FTP-USERNAME’);
    define(‘FTP_PASS’, ‘YOUR-FTP-PASSWORD’);

    Thread Starter JustinMason

    (@justinmason)

    This issue was fixed by adding in a proper .htaccess that allowed for mod rewrite (I had changed my permalinks).

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
Viewing 2 replies - 1 through 2 (of 2 total)