A quick question from an administrator point of view - where I can I find the revision history of a node/flexinode so that I can rollback if necessary?
I can see the table for revision history in PHPAdmin, so I know it's there, and I do have the access control set so that I, as administrator have the ability to view and do a rollback. I just can't see where to access the history in the admin interface.
I'm brand new to Drupal, and pretty new to php/SQL as well. Anyway, I got my site up and running and mostly love it. However, I'm having a slight problem with the img_assist module. When I go to Add content | image, and upload an image, I receive the following error:
Table 'eternaldroop.img_assist_map' doesn't exist query: DELETE FROM img_assist_map WHERE nid = 8 in /home/.jeoffry/eternalcow/culture.sethwilson.us/includes/database.mysql.inc on line 66.
I am trying to get paypal framework to work correctly. I have been tediously documenting how to get paypal subscription to work at http://drupal.org/node/44295.
I'm going to do the same thing here for paypal framework.
http://drupal.org/node/39284 reports that the datetime stamp problems makes paypal framework impractical for realtime transactions.
I am trying to develop a block that will only show when a certain type of content is being viewed. I have basically come up with 3 if statements:
1. node/nid
2. taxonomy/term/nid
3. url aliases
Is there not a function call or something that will not just give me the taxonomy context of the main column. I have found that in a block $node is out of context but this would still lead to multiple if statements as it is not set when viewing by taxonomy term.
In trawling previously through the forums I found the code below to wrap access control around seperate menu blocks. Now I've found nicemenus and ideally would like to wrap the same access control around a nicemenu block. Is is possible to call a module's block from PHP so I can create a similar effect?
Many Thanks
global $user;
if (in_array('authenticated user',$user->roles)) {
if ($menu = theme_menu_tree('70')) {
$menu = "<div class=\"menu\">". $menu . "</div>";
}
}
return $menu;
Hey guys, a little confused here
Wanted to know whats the best way i can do this, ex: is there a module, hack, felxinode setup etc...
I want to upload pictures with thumbnails. I want the thumbnails to appear in the teasers but not in the main post.
When you click on the thumbnails in the teasers, you should be directed to the main post, not the full size image of the thumbnail.