Author Topic: Password Plugin - Bluehost  (Read 10560 times)

Offline shawnw

  • Newbie
  • *
  • Posts: 2
Password Plugin - Bluehost
« on: January 14, 2013, 11:29:17 PM »
Hey everyone, could really use some help on this one....I've been racking my brain for a few hours now reading EVERYTHING google could find, and have had no success.

First and foremost - my host is bluehost.com, and I have enabled the password plugin properly (shows up in the roundcube settings as a new tab).

In my address bar my bluehost account dispplays this:
Code: [Select]
https://box677.bluehost.com:2083/frontend/bluehost/filemanager/index.html?dirselect=domainrootselect&domainselect=osceolasnowmobile.com&dir=%2Fhome2%2Fosceolas%2Fpublic_html
My "public_html/mail/plugins/password" directory originally only had a "config.inc.php.dist". I saw numerous posts where people referred to "config.inc.php", so I created that file from the .dist file in my install.

Here are the settings in my "config.inc.php" file.
Code: [Select]
// Password Plugin options
// -----------------------
// A driver to use for password change. Default: "sql".
// See README file for list of supported driver names.
$rcmail_config['password_driver'] = 'cpanel';
and
Code: [Select]
// cPanel Driver options
// --------------------------
// The cPanel Host name
$rcmail_config['password_cpanel_host'] = 'box677.bluehost.com';

// The cPanel admin username
$rcmail_config['password_cpanel_username'] = 'xxxxxxx';

// The cPanel admin password
$rcmail_config['password_cpanel_password'] = 'xxxxxxx';

// The cPanel port to use
$rcmail_config['password_cpanel_port'] = 2083;

// Using ssl for cPanel connections?
$rcmail_config['password_cpanel_ssl'] = false;

// The cPanel theme in use
$rcmail_config['password_cpanel_theme'] = 'bluehost';

So please, if anyone sees something wrong, some help would be GREATLY appreciated. I like to think I'm pretty tech savvy typically, but this plugin is making me feel like an idiot.

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,876
    • SKaero - Custom Roundcube development
Re: Password Plugin - Bluehost
« Reply #1 on: January 15, 2013, 12:22:07 AM »
$rcmail_config['password_cpanel_ssl'] needs to be true since "https://" is at the start of the cPanel url.

Offline shawnw

  • Newbie
  • *
  • Posts: 2
Re: Password Plugin - Bluehost
« Reply #2 on: January 15, 2013, 07:25:45 AM »
$rcmail_config['password_cpanel_ssl'] needs to be true since "https://" is at the start of the cPanel url.
I'm embarrassed to say that the fix was indeed that simple. I tried about a million different combinations based off the million different posts people have regarding this issue, and when I finally nailed down what I thought were all of the settings I must have forgotten to enable ssl.

Thanks!
Shawn