AnjaliForberPratt
Getting out of the local permissions / server login catch 22
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.
Web accessibility resource that may be better than W3C
From one of our favorite clients, regarding a capability on which we need to greatly improve our performance:
Administering CCK the Agaric Way
> - with the news blurb on front page -- how make it have start of txt not
> date
Theming views to use imagecache
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
Agaric wants to disable comments for nodes, en masse, retroactively
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.
