drupal
Blogging to Drupal with Flock
It's easy to set up Flock to blog to your Drupal site (or your blog on some huge community Drupal site!)
There's probably more than one way to set the settings (such as by clicking self-hosted blog under Blogging in the Accounts and Services sidebar), but here's one direct way that worked for Agaric:
- In Flock, go to File » New Blog Post
MAMP MySQL connection problems
Getting Drupal to connect on MAMP
I had to use the host name instead of localhost, and to provide the non-standard port number.
host: Ebony-II.local
port: 8889
Ask Agaric: Can we add a menu item that...
Once some people get a little familiar with doing things with Drupal, it seems all further requests come as subsidiary requirements of the important thing: creating a menu item.
That's not really where I, as a web developer, want to come in on the conversation.
Someone tell me, am I making sense? What should I say?
Unuplugged: a Drupal offline synchronization module (idea)
Initial vision:
Unplugged
The Drupal synchronization module
The Drupal Synch module
* knows that when it last synched you are at node 253, user 43, comment 422, etc...
Logs, configuration settings, installed modules etc. could - should - be one way, from the server to your offline Drupal.
offline to server and back
Drupal Test to Live
2006 July 10: Drupal: Enterprise Edition | Nick Lewis: The Blog
Nick Lewis on needs for moving data from test to live, with Bér, MerlinOfChaos, others weighing in.
Crazy Drupal Sites
Agaric Design Collective's ever-growing list of crazy Drupal sites (not ours, but ones we admire or that interest us for some reason), started in a text document back in the mists of time and moved here ... now.
Raw, unfiltered randomness commences:
http://www.freedomtoaster.org/
http://www.naomiklein.org/about-this-site - hell, I bought that domain
http://www.paa-tx.org/ - Progressive Action Alliance (PAA) promotes progressive candidates, ideas, and issues through action, advocacy, education, and networking.
How to apply a patch to a Drupal module
Following the Drupal documentation on applying patches.
The module localization client, originally developed for Drupal 6, needs a patch to the Drupal core module, locale (note that while locale is core it is also optional and disabled by default).
Path to theme
Looking for the drupal path to your current theme? It can be helpful if you're making a theme and, for a change, you want to link directly to
print theme('stylesheet_import', base_path() . path_to_theme() ."/modules.css");
For our purposes, something like:
<img src="<?php echo base_path() . path_to_theme() . "/sample.png"; ?>" /> Now I'm not sure that "." in echo will work. Feel free to test it out for us!
UPDATE: To get print an image that is in your theme by getting its path, Agaric thinks the recommended approach is
<?php
