AnjaliForberPratt

Getting out of the local permissions / server login catch 22

Key words and phrases: 
authorized keys
Description & Info: 

The first step to getting out of the local permissions / server login catch-22 is to know you're in it.

Perhaps you found this page searching for "Permission denied on publickey even though I can log into the server with a public key it doesn't make any sense grrr argh how dare it deny me i created it why won't it work permissions are correct this isn't right" or something like that.

by Benjamin Melançon
Posted on Sun, 2008-06-29 19:09
in

Anjali Forber Pratt

Project Details
Launch Date: 
September 2007

Web accessibility resource that may be better than W3C

Key words and phrases: 
accessible accessibility screen readers visual impairments different abilities handicap
Description & Info: 

From one of our favorite clients, regarding a capability on which we need to greatly improve our performance:

Administering CCK the Agaric Way

Description & Info: 

> - with the news blurb on front page -- how make it have start of txt not
> date

Theming views to use imagecache

Key words and phrases: 
views, imagecache, and theming view templates
Description & Info: 

Agaric needs to make a view, such as a preview of an image gallery for the front page of a site, use imagecache to generate cropped and resized thumbnails.

<?php
print_r
($node);
?>
stdClass Object
(
[nid] => 6
[files_filepath] => sites/anjaliforberpratt.com/files/images/137901886019f.jpg
)

So it's saying, I am an object, I am called node, this is what I am made up of.

We want it to print our node, the entire node.

So we have to load it:

$agaric_image_node = node_load()

Here we've found the piece we care about:

[images] => Array (
[_original] => sites/anjaliforberpratt.com/files/images/137901886019f.jpg

by Benjamin Melançon
Posted on Tue, 2007-09-25 15:04
in

Agaric wants to disable comments for nodes, en masse, retroactively

Key words and phrases: 
disable comments on multiple nodes bulk disable comments drupal retroactively disable comments drupal
Description & Info: 

disable comments for all nodes of a content type (meaning existing nodes)

This guy wanted it for Drupal 4.6...
http://drupal.org/node/161880

These folks only wanted it for specific nodes, which of course is built in:
http://drupal.org/node/87495

Long story short, there does not seem to be much demand for the ability to retroactively disable comments for a large number of nodes.