search for: database_typ

Displaying 6 results from an estimated 6 matches for "database_typ".

Did you mean: database_type
2017 Feb 21
4
Problems with my simple write conf files method
...k from psotfix docs): cat <<EOF>>/etc/aliases || exit 1 root: youremail EOF See: http://medon.htt-consult.com/Centos7-armv7.html But with postfixadmin I stumbled onto a problem. The following: cat <<EOF>/usr/share/postfixadmin/config.local.php || exit 1 <?php $CONF['database_type'] = 'mysqli'; $CONF['database_user'] = 'postfix'; $CONF['database_password'] = 'xyz'; $CONF['database_name'] = 'postfix'; $CONF['configured'] = true; ?> EOF produces: cat <<EOF>/usr/share/postfixadmin/config.local.p...
2017 Feb 21
1
Problems with my simple write conf files method
...etc/aliases || exit 1 > root: youremail > EOF > > See: http://medon.htt-consult.com/Centos7-armv7.html > > But with postfixadmin I stumbled onto a problem. The following: > > cat <<EOF>/usr/share/postfixadmin/config.local.php || exit 1 > <?php > $CONF['database_type'] = 'mysqli'; > $CONF['database_user'] = 'postfix'; > $CONF['database_password'] = 'xyz'; > $CONF['database_name'] = 'postfix'; > > $CONF['configured'] = true; > ?> > EOF > > produces: > > cat &...
2017 Feb 21
1
Centos 7 with Postfixadmin, what provides php5-mysql
...erver. This means moving to Apache 2.4 and MariaDB, so I am finding a number of changes from my notes. I now have MariaDB running with the databases created and Apache running. I try accessing postfixadmin and get: DEBUG INFORMATION: MySQL 4.1 functions not available! (php5-mysqli installed?) database_type = 'mysqli' in config.inc.php, are you using a different database? Please check the documentation and website for more information. ================= mysqli is what the config.inc.php says to use for // mysqli = MySQL 4.1+ or MariaDB I installed httpd mod_ssl php mariadb-server Thanks...
2017 Feb 21
0
Problems with my simple write conf files method
...k from psotfix docs): cat <<EOF>>/etc/aliases || exit 1 root: youremail EOF See: http://medon.htt-consult.com/Centos7-armv7.html But with postfixadmin I stumbled onto a problem.? The following: cat <<EOF>/usr/share/postfixadmin/config.local.php || exit 1 <?php $CONF['database_type'] = 'mysqli'; $CONF['database_user'] = 'postfix'; $CONF['database_password'] = 'xyz'; $CONF['database_name'] = 'postfix'; $CONF['configured'] = true; ?> EOF produces: cat <<EOF>/usr/share/postfixadmin/config.local.p...
2017 Feb 22
0
Problems with my simple write conf files method
On Tue, 2017-02-21 at 10:50 -0500, Robert Moskowitz wrote: > cat <<EOF>/usr/share/postfixadmin/config.local.php || exit 1 > <?php > $CONF['database_type'] = 'mysqli'; > $CONF['database_user'] = 'postfix'; > $CONF['database_password'] = 'xyz'; > $CONF['database_name'] = 'postfix'; > > $CONF['configured'] = true; > ?> > EOF KMs method of escaping every $ in...
2012 Aug 02
1
Using pry-rails with a Rails engine.
I created a new Rails 3.2.6 engine via a command like this: $ rails plugin new $engine_name --skip-bundle -d $database_type -T --dummy-path=spec/dummy --full --mountable Then, I set it up with RSpec 2.11.0, and included the "pry-rails" gem as a dependency: $ grep pry-rails $engine_name.gemspec s.add_development_dependency ''pry-rails'', ''~> 0.1.6'' However, when I sta...