Drupal is up and running but how do I ...?

tinyMCE doesn't show up (only "disable rich text")

On my Drupal driven site I have installed the tinyMCE module (and its companion imce). Once it worked beautifully but all of a sudden it seems to have disappeared!
When I try to enter new content (let's say a 'page') the only thing I see below the 'body' textarea is "disable rich text" which when clicked throws a Javascript error: "mceToggle is not defined". What is happening here???
FYI:
- everything (Drupal. tinyMCE, tinyMCE module etc) is latest version
- I've tried:
- disableing and re-enabling the module

Insert image into a regular story from the node

Hello, i'm using drupal the lst 3 weeks. i want to ask you how can i insert an image into a storie from the node? I tried image module but it creates a new content type. i want to add images to news. isn't that possible ?

How to alter thumbnail settings to deal with non-square photos?

I am using image, img_assist and flash_gallery modules and am looking for a way to modify thumbnail sizes on individual basis so they don't smush (highly technical term, I realize) non-square photos. For instance, I want to upload a horizontal logo but it comes out looking horrible.

I imagine the answer is simple enough; I just haven't been able to find it. Can anyone out there help?

ALSO, am still seeking some help on podcasting set up; problem outlined in this post: http://drupal.org/node/76668

Help me with a php snippet to include taxonomy terms in custom listings

I'm using the following code to generate a listing pages of recent blog entries.

$listlength="10";
$content_type = 'blog';
unset ($output);

$prev_day = '';
$result1 = pager_query("SELECT n.title, n.nid, n.uid, n.created, u.name, c.comment_count 
                                        FROM {node} n INNER JOIN {users} u ON n.uid =u.uid 
                                        INNER JOIN {node_comment_statistics} c ON n.nid = c.nid 
                                        WHERE n.type = '$content_type' AND n.status = 1 
                                         ORDER BY n.created DESC");

while ($node = db_fetch_object($result1)) {

$day = format_date($node->created, 'custom', 'l, jS F');

if ($day != $prev_day) {
    $output .= "<h2>$day</h2>";
    $prev_day = $day;
  }

$output .= "<p>" . l($node->title, "node/$node->nid") . "<br>" . "<small>» Posted by " . l($node->name, "user/$node->uid") .  ". There " . format_plural($node->comment_count, 'is 1 answer', 'are %count answers') . " so far." . "</small></p>";

}
$output .= theme('pager', NULL, $listlength);
print $output;

The output is:

Day, xth of the Month
Title of node (url with title)
» Posted by USER (link to user). There are (comment count) answers so far.

I would like to also include the taxonomy terms in which the blog post has been made:

Day, xth of the Month
Title of node (url with title)

Google map for each event?

Good morning,

I'm trying to figure out how to show an google map on each event node I have defined with the events module.

I have the following modules loaded:

event
location
gmap
gmap_location

Right now, I have it working so that the location module provides links to maps.google.com, but I can't figure out how to get a google map to display on each event page. Is this possible?

I've set gmap_location access control to anonymous and authenticated users.
The "node locations" page (?q=map/node) is working fine.

Bad thumbnail link

I've successfuly installed the Image module and I can now attach images to stories. But the thumbnail in the story links to the story itself. How do I change it to link to the preview version of this image?

Pages

Subscribe with RSS Subscribe to RSS - Post installation