User login

Complete

To be used with care. Pages are complete only when they meet the posting guidelines.

Special characters in database password cause error 1045 using mysql via command line

mysql password with percent symbol not working in ssh

mysqldump: Got error: 1045: Access denied for user 'example'@'localhost' (using password: YES) when trying to connect

Here's the password:
8A%2CLrsvi69shN8ty

Internal Agaric communication:

If you use the *correct* password for root-- the mysql root password is not the same as the server root password -- it works.

Using the DB password does not work for me either. I swear it's because the % symbol is messing things up somehow.

mysql password with percent symbol not working in ssh

mysqldump: Got error: 1045: Access denied for user 'example'@'localhost' (using password: YES) when trying to connect

Here's the password:
8A%2CLrsvi69shN8ty

Internal Agaric communication:

If you use the *correct* password for root-- the mysql root password is not the same as the server root password -- it works.

Using the DB password does not work for me either. I swear it's because the % symbol is messing things up somehow.

mysqldump % error

Hunch confirmed:

Backing up a site, manually

Agaric's procedures for backing up a site manually, when we feel like being paranoid, which is quite a lot lately.

Back up the database the Agaric way, including bringing it down to a local computer.

Bring down the files that are not kept in version control:

Ebony:~/Documents/Web Sites Data/COA News & FSTV/media reform job/backup ben$ scp -r ben@66.135.37.243:/var/www/drupal-5-live/sites/democraticmedia.ca/files files

Agaric's procedures for backing up a site manually, when we feel like being paranoid, which is quite a lot lately.

Back up the database the Agaric way, including bringing it down to a local computer.

Bring down the files that are not kept in version control:

Ebony:~/Documents/Web Sites Data/COA News & FSTV/media reform job/backup ben$ scp -r ben@66.135.37.243:/var/www/drupal-5-live/sites/democraticmedia.ca/files files

www .htaccess rewrite and Drupal multisite

keywords:
forward all to one url

RewriteCond %{HTTP_HOST} ^www\.tom\.com$ [NC]
RewriteRule ^(.*)$ http://tom.com/$1 [L,R=301]

RewriteCond %{HTTP_HOST} ^www\.jerry\.com$ [NC]
RewriteRule ^(.*)$ http://jerry.com/$1 [L,R=301]

from http://exodusdev.com/multi-site-compatible-apache-rewrite-rules

Question: can the above be automated or universalized?

keywords:
forward all to one url

RewriteCond %{HTTP_HOST} ^www\.tom\.com$ [NC]
RewriteRule ^(.*)$ http://tom.com/$1 [L,R=301]

RewriteCond %{HTTP_HOST} ^www\.jerry\.com$ [NC]
RewriteRule ^(.*)$ http://jerry.com/$1 [L,R=301]

from http://exodusdev.com/multi-site-compatible-apache-rewrite-rules

Question: can the above be automated or universalized?

Windows (putty) getting rejected by server with refused key message

all the answers:

http://www.andremolnar.com/how_to_set_up_ssh_keys_with_putty_and_not_get_server_refused_our_key

in our case, it was the permissions on the .ssh folder and authorized_keys file.

svn checkout

Say, checking out the groovy in-house version of the Agaric Starter Profile:

svn co https://server.example.com/svn/drupal/profiles/agaric_recipes agaric_recipes

Say, checking out the groovy in-house version of the Agaric Starter Profile:

svn co https://server.example.com/svn/drupal/profiles/agaric_recipes agaric_recipes

Mailhandler, IMAP, round 1

So I set up the mailhandler module, specifically to be able to send pics from my phone that will get posted.. etc.

but, I get this error upon pressing retreive or running cron....

Call to undefined function imap_open() in /srv/drupal-5/live-modules/mailhandler- 5.x-1.1.tar/mailhandler/mailhandler.module on line 16

a bunch of posts say that imap needs to be enabled on the server in php.... can you help me with this?

Did something like apt-get install php-net-imap

So I set up the mailhandler module, specifically to be able to send pics from my phone that will get posted.. etc.

but, I get this error upon pressing retreive or running cron....

Call to undefined function imap_open() in /srv/drupal-5/live-modules/mailhandler- 5.x-1.1.tar/mailhandler/mailhandler.module on line 16

a bunch of posts say that imap needs to be enabled on the server in php.... can you help me with this?

Did something like apt-get install php-net-imap

Editing a sidebar on a page

Hello Lisa,

I apologize for the delay. (A crisis with another client's site-- and all our fault!)

I'm CCing my brother and my friend Danielle who are interested in working with Agaric because this is a good example of the

When you log into the site, you should see an "Edit" tab (following "View" and possibly followed by "Revisions") on each page.

This is somewhat subtle and can be missed: it's directly under the title.

HOWEVER in this case the services provided appear to be listed in the sidebar, and so in a "block".

Edit these at:

<

blockquote>Hello Lisa,

I apologize for the delay. (A crisis with another client's site-- and all our fault!)

I'm CCing my brother and my friend Danielle who are interested in working with Agaric because this is a good example of the

When you log into the site, you should see an "Edit" tab (following "View" and possibly followed by "Revisions") on each page.

This is somewhat subtle and can be missed: it's directly under the title.

HOWEVER in this case the services provided appear to be listed in the sidebar, and so in a "block".

Edit these at:

Single signon shared user table setup steps

You can set up the settings.php to use the existing database and new table prefixes for all except the shared user etc. tables which you have use the same

Come to think of it I'd be real careful about what install profile I use on this step... certainly none that create users by deleting existing rows first...

multiple roles single sign-on login toboggan Drupal

enable single signon at admin/build/modules
go to admin/settings/singlesignon

first on the master site and then on the secondary sites.

You can set up the settings.php to use the existing database and new table prefixes for all except the shared user etc. tables which you have use the same

Come to think of it I'd be real careful about what install profile I use on this step... certainly none that create users by deleting existing rows first...

multiple roles single sign-on login toboggan Drupal

enable single signon at admin/build/modules
go to admin/settings/singlesignon

first on the master site and then on the secondary sites.

Don't forget to give special roles some actual permissions, admin/user/access

Backing up, restoring, making test databases with MySQL command line

increase phpmyadmin upload size limit
forget it.

mysql from command line

mysqldump -u internetbar_live -p

--ignore-table=name

worked- (few misstarts, didn't like having a password included, placement of db name)

mysqldump -u internetbar_live -p --ignore-table=internetbar_live.ibcdru_watchdog internetbar_live > internetbar_backup.sql

One line. One goddamn line. And you can get the password you need from settings.php

increase phpmyadmin upload size limit forget it. mysql from command line mysqldump -u internetbar_live -p --ignore-table=name worked- (few misstarts, didn't like having a password included, placement of db name) mysqldump -u internetbar_live -p --ignore-table=internetbar_live.ibcdru_watchdog internetbar_live > internetbar_backup.sql

Windows software for checking a web site for broken links

Windows only, free but not open source free:
http://home.snafu.de/tilman/xenulink.html

Thought there was a Drupal module, but I couldn't find it.
drupal check site for broken links

Windows only, free but not open source free:
http://home.snafu.de/tilman/xenulink.html

Thought there was a Drupal module, but I couldn't find it.
drupal check site for broken links

Syndicate content