User login

Drupal Development

Open File Browser from Terminal Window in Ubuntu

nautilus foldername

or for the current folder:

nautilus .

To go the other way, File browser to terminal, you need to install:

sudo apt-get install nautilus-open-terminal

Resolution

Writing Help Documentation for Drupal Developers and Administrators: Tools needed

Kathleen: I want to be able to click on a link to write help on admin pages.

We have to be able to integrate this with the advanced_help

Wow. The Advanced Help Injection and Export module,
http://drupal.org/project/helpinject
is already a good bit there.

Filed an issue asking about getting the rest of the way there
http://drupal.org/node/416068

Decisionmaking API & Consensus Module, and bringing more people into funding Drupal

Posted to the Drupal consultant list:

One thing that frustrates me as a consultant is that for funding easily available to aggregated small-money people using Drupal for web sites, we could more than match the invaluable corporate and foundation contributions– but as yet, the key part - aggregating needs and funds - has not happened.

I'd very much like to see Sam Boyer's Decision-making API funded and built (approved by the community but unfortunately not ultimately by the Knight Foundation).

The Agaric Drupal Book

We are going to write a Drupal book, so we have to plan important stuff, like the title

Titles?
Drupal: The Living Web

Subtitles?
Building web sites for people

How to do Drupal sustainably

by the Agaric Collective
and friends

A fatal error without any of your code in the backtrace: check your form_alter

Fatal error: Cannot use string offset as an array in /home/ben/code/pdonline/drupal/includes/form.inc on line 976
Call Stack
# Time Memory Function Location
1 0.0019 64260 {main}( ) ../index.php:0
2 2.7990 23389320 menu_execute_active_handler( ) ../index.php:18
3 2.8490 23579028 call_user_func_array ( ) ../menu.inc:348
4 2.8490 23579192 node_add( ) ../menu.inc:0
5 2.8490 23580296 drupal_get_form( ) ../node.pages.inc:58
6 3.3649 29258140 drupal_process_form( ) ../form.inc:119

Easily adding content found in pubmed to your Drupal Biblio (and Agaric) enhanced site

After dreaming about using views to query other databases, namely pubmed... and having an import button for the content you really want... I realized that rather than writing views understanding of authors and mesh terms and titles to be able to add to the URL query entrez wonderfully allows us to query PubMed and other databases with.... it would be far, far easier to give the people who need to find articles an 'import this article' button in the browser.

Biblio module importing Biblio from PubMed node referenced but not created

The nodes are, in fact, being saved. They are in the Drupal database node table with a user ID of zero.

Very very oddly, however, instead of displaying $node->uid = 0 nodes as authored by "Anonymous" (or "Visitor" or whatever you changed your anonymous user string to), Drupal returns "Page not found."

Weirdness.

Anyhow, the cause in this case is the way information is getting passed to biblio_node_save.

Minor race condition in Drupal: If you create admin account through regular screen then finish wizard, it breaks

Discovered a race condition type bug in Drupal... if you register another account while the superuser account screen has not been submitted yet, and you use the same username and password for both screens,
things break when you submit the final page of the site setup process, and you can't login as the superuser.

Only as the other user you made.

Which has no powers.

This can be fixed by changing uid 1 from its placeholder values to the username and e-mail address you want, and changing the status from disabled (0) to enabled (1).

Syndicate content