I'm trying to set up a site with a story queue a la Kuro5hin. I've installed the queue module and I've configured the content settings for stories like this:
hi, I have been trying to get a border around my blocks, so it looks as if they are seperate boxes. Do i need to add "background-image: "border.gif"" in the css? and where exactly do i put this ?
thnx a lot
Ash
Tried to install the nodeperm_taxonomy.module from jonbob's sandbox. toyed around with it and always get the same error whenever i logged out of the admin account:
warning: Invalid argument supplied for foreach() in C:\apachefriends\xampp\htdocs\drupal\modules\node.module on line 1667.
This is the code the warning is referring to:
function node_access_where_sql($op = 'view', $node_access_alias = 'na') {
if (user_access('administer nodes')) {
/**
* This number is being used in a SQL query in a boolean nature.
* It is "'1'" instead of "1" for database compatibility, as both
* Postgres and Mysql treat it as boolean in this case.
*/
return "'1'";
}
$sql = $node_access_alias .'.grant_'. $op .' = 1 AND CONCAT('. $node_access_alias .'.realm, '. $node_access_alias .'.gid) IN (';
$grants = array();
foreach (node_access_grants($op) as $realm => $gids) {
foreach ($gids as $gid) {
$grants[] = "'". $realm . $gid ."'";
}
}
$sql .= implode(',', $grants) .')';
return $sql;
}
I'm using the lastest CVS of Drupal and Jonbob's sandbox. I'm totally new to PHP and Drupal. Any help is greatly appreciated. Thank you!
I'm very sure this or something similar has been discussed so I'm looking for a link I'm unable to find. My question pertains to my need for some way of syncronizing the various contrib modules to Drupal core. Here is what I'm facing. There is a large amount of developer activity surrounding Drupal. This is 98% a good thing. However during the periods between code freezes and releases there are problems for me with modules getting out of synch with the base. (Due to the aformentions developer activity on the indivual contrib modules).
This information is irrelevant to the question but my install that stopped working (htmlarea that is) is CVS version from exactly 1 month ago on Linux with MySql 4.2 standard. With that out of the way I was wondering if anyone could theorize on why it would work one day and not the next. I tried a reinstall and it doesn't help. I tried to upgrade to the newsest htmlare module and accompanying dist files (didn't upgrade the datatables becasue they look to be identical) and that didn't work either.