Howto setup roundcube password plugin with sql driver and mysql encrypt using random salt?roundcube password plugin not updatingis it possible to create a hidden encrypted /home partition in linuxPostfix sasl login failing no mechanism foundMySQL Password Authentication with Proxy Users and Group MappingPure FTPd and MySQL, working with sha512RoundCube login to local IMAP server failingpureftpd auth using crypt sha512convert plain text passwords to sha512-crypt in dovecot + postfix's mysql mailbox tablePostfix Not Sending Or Receiving EmailsPostfix SMTP SASL Authentication with pam_mysql can't accept email addresses as usernamePostfix authentication using MySQL SHA512
Print "N NE E SE S SW W NW"
How to befriend someone who doesn't like to talk?
How much web presence should I have?
What does the homotopy coherent nerve do to spaces of enriched functors?
What is the proper event in Extended Events to track stored procedure executions?
What's the difference between DHCP and NAT? Are they mutually exclusive?
Do Veracrypt encrypted volumes have any kind of brute force protection?
If the pressure inside and outside a balloon balance, then why does air leave when it pops?
Why would a home insurer offer a discount based on credit score?
Is all-caps blackletter no longer taboo?
What class is best to play when a level behind the rest of the party?
What exactly "triggers an additional time" in the interaction between Afterlife and Teysa Karlov?
What does "lit." mean in boiling point or melting point specification?
In Pandemic, why take the extra step of eradicating a disease after you've cured it?
Why did the World Bank set the global poverty line at $1.90?
What did the 8086 (and 8088) do upon encountering an illegal instruction?
Are the guests in Westworld forbidden to tell the hosts that they are robots?
ASCII Meme Arrow Generator
Forgot passport for Alaska cruise (Anchorage to Vancouver)
What is this Amiga 2000 mod?
What does this line mean in Zelazny's The Courts of Chaos?
Quasar Redshifts
Grandpa has another non math question
In American Politics, why is the Justice Department under the President?
Howto setup roundcube password plugin with sql driver and mysql encrypt using random salt?
roundcube password plugin not updatingis it possible to create a hidden encrypted /home partition in linuxPostfix sasl login failing no mechanism foundMySQL Password Authentication with Proxy Users and Group MappingPure FTPd and MySQL, working with sha512RoundCube login to local IMAP server failingpureftpd auth using crypt sha512convert plain text passwords to sha512-crypt in dovecot + postfix's mysql mailbox tablePostfix Not Sending Or Receiving EmailsPostfix SMTP SASL Authentication with pam_mysql can't accept email addresses as usernamePostfix authentication using MySQL SHA512
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have a mailserver with postfix installed and configured as in http://flurdy.com/docs/postfix/index.html.
I use a mysql database maildb
with a table users
with two fileds id
='user@domain.com'
and crypt
='salted_md5_hash'
. Password is updated with a query like this:
UPDATE users SET crypt = ENCRYPT('apassword', CONCAT('$5$', MD5(RAND()))) WHERE id = 'user@domain.tld';
Roundcube 1.0-RC is installed according http://trac.roundcube.net/wiki/Howto_Install
Howto setup roundcube password plugin to work with the above installation?
linux mysql php roundcube
add a comment |
I have a mailserver with postfix installed and configured as in http://flurdy.com/docs/postfix/index.html.
I use a mysql database maildb
with a table users
with two fileds id
='user@domain.com'
and crypt
='salted_md5_hash'
. Password is updated with a query like this:
UPDATE users SET crypt = ENCRYPT('apassword', CONCAT('$5$', MD5(RAND()))) WHERE id = 'user@domain.tld';
Roundcube 1.0-RC is installed according http://trac.roundcube.net/wiki/Howto_Install
Howto setup roundcube password plugin to work with the above installation?
linux mysql php roundcube
add a comment |
I have a mailserver with postfix installed and configured as in http://flurdy.com/docs/postfix/index.html.
I use a mysql database maildb
with a table users
with two fileds id
='user@domain.com'
and crypt
='salted_md5_hash'
. Password is updated with a query like this:
UPDATE users SET crypt = ENCRYPT('apassword', CONCAT('$5$', MD5(RAND()))) WHERE id = 'user@domain.tld';
Roundcube 1.0-RC is installed according http://trac.roundcube.net/wiki/Howto_Install
Howto setup roundcube password plugin to work with the above installation?
linux mysql php roundcube
I have a mailserver with postfix installed and configured as in http://flurdy.com/docs/postfix/index.html.
I use a mysql database maildb
with a table users
with two fileds id
='user@domain.com'
and crypt
='salted_md5_hash'
. Password is updated with a query like this:
UPDATE users SET crypt = ENCRYPT('apassword', CONCAT('$5$', MD5(RAND()))) WHERE id = 'user@domain.tld';
Roundcube 1.0-RC is installed according http://trac.roundcube.net/wiki/Howto_Install
Howto setup roundcube password plugin to work with the above installation?
linux mysql php roundcube
linux mysql php roundcube
asked Feb 13 '14 at 17:00
rdarda
1,6171817
1,6171817
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Edit roundcube main config.inc.php
and add the plugin name 'password' to the plugins array() as shown below, to activate the plugin:
// List of active plugins (in plugins/ directory)
$config['plugins'] = array('password');
You may also note down the DSN used by roundcube to connect to the 'roundcube' mysql database $config['db_dsnw'] = 'mysql://user:pass@localhost/roundcube'
cd into .../roundcube_www_root/plugins/password/
and create config.inc.php
# cp config.inc.php.dist config.inc.php
# vi config.inc.php
Edit the following lines in the password plugin's config.inc.php
:
<?php
$config['password_driver'] = 'sql';
$config['password_confirm_current'] = true;
$config['password_minimum_length'] = 8;
$config['password_require_nonalpha'] = false;
$config['password_log'] = false;
$config['password_login_exceptions'] = null;
// If the server is accessed via fqdn, replace localhost by the fqdn:
$config['password_hosts'] = array('127.0.0.1');
$config['password_force_save'] = true;
// SQL Driver options
$config['password_db_dsn'] = 'mysql://user:pass@localhost/maildb';
// SQL Update Query with encrypted password using random 8 character salt
$config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$5$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';
...
To use SHA-512
password hashes instead of SHA-256
, set the $id$
to $6$
(see also man 3 crypt
):
$config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$6$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';
See .../plugins/password/README
and .../plugins/password/config.inc.php.dist
for more info.
Assuming you will use the same mysql user for the password plugin to update the password, you have to GRANT SELECT and UPDATE privileges on the table 'users' in 'maildb' to the 'roundcube' mysql user:
# mysql -u root -p
mysql > GRANT SELECT,UPDATE ON maildb.users TO 'roundcube'@'localhost';
mysql > FLUSH PRIVILEGES;
mysql > quit
#
That's it. If you encounter problems, tail the roundcube error log:
# tail -f ../../logs/error
1
I thinkarray(password)
should bearray('password')
.
– Andrew Schulman
Feb 13 '14 at 17:09
OK, thanks, I corrected it. However, both variants seem to work fine.
– rda
Feb 13 '14 at 17:16
Thanks!! Worked for me. I've been trying to figure this issue out for a long time. I was listing out password hosts$config['password_hosts'] = array('mail.host1.com', 'mail.host2.com', 'mail.host3.com');
which doesn't work. Upon switching to$config['password_hosts'] = array('localhost');
as per above the password Setting option appeared.
– Brandon Coder
Mar 29 '15 at 2:39
I forgot to mention, Roundcube v1.0.3, Password plugin v3.4. Cheers!
– Brandon Coder
Mar 29 '15 at 18:48
I had a similar issue with this. Some server setups may require using 127.0.0.1 instead of using localhost. Just a heads up. Using the IP address is what worked for me personally. localhost didn't do anything.
– Terry Carter
Feb 29 '16 at 19:13
|
show 4 more comments
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f575389%2fhowto-setup-roundcube-password-plugin-with-sql-driver-and-mysql-encrypt-using-ra%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Edit roundcube main config.inc.php
and add the plugin name 'password' to the plugins array() as shown below, to activate the plugin:
// List of active plugins (in plugins/ directory)
$config['plugins'] = array('password');
You may also note down the DSN used by roundcube to connect to the 'roundcube' mysql database $config['db_dsnw'] = 'mysql://user:pass@localhost/roundcube'
cd into .../roundcube_www_root/plugins/password/
and create config.inc.php
# cp config.inc.php.dist config.inc.php
# vi config.inc.php
Edit the following lines in the password plugin's config.inc.php
:
<?php
$config['password_driver'] = 'sql';
$config['password_confirm_current'] = true;
$config['password_minimum_length'] = 8;
$config['password_require_nonalpha'] = false;
$config['password_log'] = false;
$config['password_login_exceptions'] = null;
// If the server is accessed via fqdn, replace localhost by the fqdn:
$config['password_hosts'] = array('127.0.0.1');
$config['password_force_save'] = true;
// SQL Driver options
$config['password_db_dsn'] = 'mysql://user:pass@localhost/maildb';
// SQL Update Query with encrypted password using random 8 character salt
$config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$5$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';
...
To use SHA-512
password hashes instead of SHA-256
, set the $id$
to $6$
(see also man 3 crypt
):
$config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$6$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';
See .../plugins/password/README
and .../plugins/password/config.inc.php.dist
for more info.
Assuming you will use the same mysql user for the password plugin to update the password, you have to GRANT SELECT and UPDATE privileges on the table 'users' in 'maildb' to the 'roundcube' mysql user:
# mysql -u root -p
mysql > GRANT SELECT,UPDATE ON maildb.users TO 'roundcube'@'localhost';
mysql > FLUSH PRIVILEGES;
mysql > quit
#
That's it. If you encounter problems, tail the roundcube error log:
# tail -f ../../logs/error
1
I thinkarray(password)
should bearray('password')
.
– Andrew Schulman
Feb 13 '14 at 17:09
OK, thanks, I corrected it. However, both variants seem to work fine.
– rda
Feb 13 '14 at 17:16
Thanks!! Worked for me. I've been trying to figure this issue out for a long time. I was listing out password hosts$config['password_hosts'] = array('mail.host1.com', 'mail.host2.com', 'mail.host3.com');
which doesn't work. Upon switching to$config['password_hosts'] = array('localhost');
as per above the password Setting option appeared.
– Brandon Coder
Mar 29 '15 at 2:39
I forgot to mention, Roundcube v1.0.3, Password plugin v3.4. Cheers!
– Brandon Coder
Mar 29 '15 at 18:48
I had a similar issue with this. Some server setups may require using 127.0.0.1 instead of using localhost. Just a heads up. Using the IP address is what worked for me personally. localhost didn't do anything.
– Terry Carter
Feb 29 '16 at 19:13
|
show 4 more comments
Edit roundcube main config.inc.php
and add the plugin name 'password' to the plugins array() as shown below, to activate the plugin:
// List of active plugins (in plugins/ directory)
$config['plugins'] = array('password');
You may also note down the DSN used by roundcube to connect to the 'roundcube' mysql database $config['db_dsnw'] = 'mysql://user:pass@localhost/roundcube'
cd into .../roundcube_www_root/plugins/password/
and create config.inc.php
# cp config.inc.php.dist config.inc.php
# vi config.inc.php
Edit the following lines in the password plugin's config.inc.php
:
<?php
$config['password_driver'] = 'sql';
$config['password_confirm_current'] = true;
$config['password_minimum_length'] = 8;
$config['password_require_nonalpha'] = false;
$config['password_log'] = false;
$config['password_login_exceptions'] = null;
// If the server is accessed via fqdn, replace localhost by the fqdn:
$config['password_hosts'] = array('127.0.0.1');
$config['password_force_save'] = true;
// SQL Driver options
$config['password_db_dsn'] = 'mysql://user:pass@localhost/maildb';
// SQL Update Query with encrypted password using random 8 character salt
$config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$5$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';
...
To use SHA-512
password hashes instead of SHA-256
, set the $id$
to $6$
(see also man 3 crypt
):
$config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$6$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';
See .../plugins/password/README
and .../plugins/password/config.inc.php.dist
for more info.
Assuming you will use the same mysql user for the password plugin to update the password, you have to GRANT SELECT and UPDATE privileges on the table 'users' in 'maildb' to the 'roundcube' mysql user:
# mysql -u root -p
mysql > GRANT SELECT,UPDATE ON maildb.users TO 'roundcube'@'localhost';
mysql > FLUSH PRIVILEGES;
mysql > quit
#
That's it. If you encounter problems, tail the roundcube error log:
# tail -f ../../logs/error
1
I thinkarray(password)
should bearray('password')
.
– Andrew Schulman
Feb 13 '14 at 17:09
OK, thanks, I corrected it. However, both variants seem to work fine.
– rda
Feb 13 '14 at 17:16
Thanks!! Worked for me. I've been trying to figure this issue out for a long time. I was listing out password hosts$config['password_hosts'] = array('mail.host1.com', 'mail.host2.com', 'mail.host3.com');
which doesn't work. Upon switching to$config['password_hosts'] = array('localhost');
as per above the password Setting option appeared.
– Brandon Coder
Mar 29 '15 at 2:39
I forgot to mention, Roundcube v1.0.3, Password plugin v3.4. Cheers!
– Brandon Coder
Mar 29 '15 at 18:48
I had a similar issue with this. Some server setups may require using 127.0.0.1 instead of using localhost. Just a heads up. Using the IP address is what worked for me personally. localhost didn't do anything.
– Terry Carter
Feb 29 '16 at 19:13
|
show 4 more comments
Edit roundcube main config.inc.php
and add the plugin name 'password' to the plugins array() as shown below, to activate the plugin:
// List of active plugins (in plugins/ directory)
$config['plugins'] = array('password');
You may also note down the DSN used by roundcube to connect to the 'roundcube' mysql database $config['db_dsnw'] = 'mysql://user:pass@localhost/roundcube'
cd into .../roundcube_www_root/plugins/password/
and create config.inc.php
# cp config.inc.php.dist config.inc.php
# vi config.inc.php
Edit the following lines in the password plugin's config.inc.php
:
<?php
$config['password_driver'] = 'sql';
$config['password_confirm_current'] = true;
$config['password_minimum_length'] = 8;
$config['password_require_nonalpha'] = false;
$config['password_log'] = false;
$config['password_login_exceptions'] = null;
// If the server is accessed via fqdn, replace localhost by the fqdn:
$config['password_hosts'] = array('127.0.0.1');
$config['password_force_save'] = true;
// SQL Driver options
$config['password_db_dsn'] = 'mysql://user:pass@localhost/maildb';
// SQL Update Query with encrypted password using random 8 character salt
$config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$5$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';
...
To use SHA-512
password hashes instead of SHA-256
, set the $id$
to $6$
(see also man 3 crypt
):
$config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$6$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';
See .../plugins/password/README
and .../plugins/password/config.inc.php.dist
for more info.
Assuming you will use the same mysql user for the password plugin to update the password, you have to GRANT SELECT and UPDATE privileges on the table 'users' in 'maildb' to the 'roundcube' mysql user:
# mysql -u root -p
mysql > GRANT SELECT,UPDATE ON maildb.users TO 'roundcube'@'localhost';
mysql > FLUSH PRIVILEGES;
mysql > quit
#
That's it. If you encounter problems, tail the roundcube error log:
# tail -f ../../logs/error
Edit roundcube main config.inc.php
and add the plugin name 'password' to the plugins array() as shown below, to activate the plugin:
// List of active plugins (in plugins/ directory)
$config['plugins'] = array('password');
You may also note down the DSN used by roundcube to connect to the 'roundcube' mysql database $config['db_dsnw'] = 'mysql://user:pass@localhost/roundcube'
cd into .../roundcube_www_root/plugins/password/
and create config.inc.php
# cp config.inc.php.dist config.inc.php
# vi config.inc.php
Edit the following lines in the password plugin's config.inc.php
:
<?php
$config['password_driver'] = 'sql';
$config['password_confirm_current'] = true;
$config['password_minimum_length'] = 8;
$config['password_require_nonalpha'] = false;
$config['password_log'] = false;
$config['password_login_exceptions'] = null;
// If the server is accessed via fqdn, replace localhost by the fqdn:
$config['password_hosts'] = array('127.0.0.1');
$config['password_force_save'] = true;
// SQL Driver options
$config['password_db_dsn'] = 'mysql://user:pass@localhost/maildb';
// SQL Update Query with encrypted password using random 8 character salt
$config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$5$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';
...
To use SHA-512
password hashes instead of SHA-256
, set the $id$
to $6$
(see also man 3 crypt
):
$config['password_query'] = 'UPDATE users SET crypt=ENCRYPT(%p,CONCAT(_utf8'$6$',RIGHT(MD5(RAND()),8),_utf8'$')) WHERE id=%u LIMIT 1';
See .../plugins/password/README
and .../plugins/password/config.inc.php.dist
for more info.
Assuming you will use the same mysql user for the password plugin to update the password, you have to GRANT SELECT and UPDATE privileges on the table 'users' in 'maildb' to the 'roundcube' mysql user:
# mysql -u root -p
mysql > GRANT SELECT,UPDATE ON maildb.users TO 'roundcube'@'localhost';
mysql > FLUSH PRIVILEGES;
mysql > quit
#
That's it. If you encounter problems, tail the roundcube error log:
# tail -f ../../logs/error
edited May 28 at 6:05
answered Feb 13 '14 at 17:00
rdarda
1,6171817
1,6171817
1
I thinkarray(password)
should bearray('password')
.
– Andrew Schulman
Feb 13 '14 at 17:09
OK, thanks, I corrected it. However, both variants seem to work fine.
– rda
Feb 13 '14 at 17:16
Thanks!! Worked for me. I've been trying to figure this issue out for a long time. I was listing out password hosts$config['password_hosts'] = array('mail.host1.com', 'mail.host2.com', 'mail.host3.com');
which doesn't work. Upon switching to$config['password_hosts'] = array('localhost');
as per above the password Setting option appeared.
– Brandon Coder
Mar 29 '15 at 2:39
I forgot to mention, Roundcube v1.0.3, Password plugin v3.4. Cheers!
– Brandon Coder
Mar 29 '15 at 18:48
I had a similar issue with this. Some server setups may require using 127.0.0.1 instead of using localhost. Just a heads up. Using the IP address is what worked for me personally. localhost didn't do anything.
– Terry Carter
Feb 29 '16 at 19:13
|
show 4 more comments
1
I thinkarray(password)
should bearray('password')
.
– Andrew Schulman
Feb 13 '14 at 17:09
OK, thanks, I corrected it. However, both variants seem to work fine.
– rda
Feb 13 '14 at 17:16
Thanks!! Worked for me. I've been trying to figure this issue out for a long time. I was listing out password hosts$config['password_hosts'] = array('mail.host1.com', 'mail.host2.com', 'mail.host3.com');
which doesn't work. Upon switching to$config['password_hosts'] = array('localhost');
as per above the password Setting option appeared.
– Brandon Coder
Mar 29 '15 at 2:39
I forgot to mention, Roundcube v1.0.3, Password plugin v3.4. Cheers!
– Brandon Coder
Mar 29 '15 at 18:48
I had a similar issue with this. Some server setups may require using 127.0.0.1 instead of using localhost. Just a heads up. Using the IP address is what worked for me personally. localhost didn't do anything.
– Terry Carter
Feb 29 '16 at 19:13
1
1
I think
array(password)
should be array('password')
.– Andrew Schulman
Feb 13 '14 at 17:09
I think
array(password)
should be array('password')
.– Andrew Schulman
Feb 13 '14 at 17:09
OK, thanks, I corrected it. However, both variants seem to work fine.
– rda
Feb 13 '14 at 17:16
OK, thanks, I corrected it. However, both variants seem to work fine.
– rda
Feb 13 '14 at 17:16
Thanks!! Worked for me. I've been trying to figure this issue out for a long time. I was listing out password hosts
$config['password_hosts'] = array('mail.host1.com', 'mail.host2.com', 'mail.host3.com');
which doesn't work. Upon switching to $config['password_hosts'] = array('localhost');
as per above the password Setting option appeared.– Brandon Coder
Mar 29 '15 at 2:39
Thanks!! Worked for me. I've been trying to figure this issue out for a long time. I was listing out password hosts
$config['password_hosts'] = array('mail.host1.com', 'mail.host2.com', 'mail.host3.com');
which doesn't work. Upon switching to $config['password_hosts'] = array('localhost');
as per above the password Setting option appeared.– Brandon Coder
Mar 29 '15 at 2:39
I forgot to mention, Roundcube v1.0.3, Password plugin v3.4. Cheers!
– Brandon Coder
Mar 29 '15 at 18:48
I forgot to mention, Roundcube v1.0.3, Password plugin v3.4. Cheers!
– Brandon Coder
Mar 29 '15 at 18:48
I had a similar issue with this. Some server setups may require using 127.0.0.1 instead of using localhost. Just a heads up. Using the IP address is what worked for me personally. localhost didn't do anything.
– Terry Carter
Feb 29 '16 at 19:13
I had a similar issue with this. Some server setups may require using 127.0.0.1 instead of using localhost. Just a heads up. Using the IP address is what worked for me personally. localhost didn't do anything.
– Terry Carter
Feb 29 '16 at 19:13
|
show 4 more comments
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f575389%2fhowto-setup-roundcube-password-plugin-with-sql-driver-and-mysql-encrypt-using-ra%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown