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

Alpha User List?

How do I get my user list (mysite.com/profile) to display in alphabetic order by the username (without regard to case), rather than the default order, which appears to be most-recently-active?

contact directory module problem

Hi All !
I have installed 4.6.2 (because of the translation) flexinode and contact directory modules
(from the documentation i understood that it uses the flexinode module )
The conact module suppose to enable a contact directory with search
the modules are installed ok , (no errors untill now...)

Idiot newbie needs help

Hello
Drupal seems to be great but i have added the mailhandler module and now do not know how to get it to work.
I have looked inthe 'readme' and do not how to 'recompile' php -

The IMAP dynamic extension must be enabled. On Windows PHP installations, this is as easy as uncommenting
the line containing "extension=php_imap.dll" in php.ini. For other OS, you may need to recompile PHP
if you don't have this extension already.

?
Please help

Fruit Bandit

Want to create a CCK node with a WYSIWYG text area

This is probably a simple matter but can someone relate how to create a text area in a CCK node so that it may be edited with TinyMCE? I've tried the Long Text field but that seems to be for just a single line of text.

Thanks for your help.

Alter Similar Entries module slightly for one content type

Im having some difficulty telling the Similar Entries module to display only one specific type of content. As I'm somewhat new to PHP, Im not sure where in the module code I should specify my content type. Below is the code for the Similar Entries module. If someone can be kind enough to point out where I place my content type, I would appreciate it.


<?php
/**
* @file
* Module that shows a block listing similar entries.
* NOTE: USES MySQL's FULLTEXT indexing.
* http://arnab.org/project/similar
*/

$similar_node_title = "";
$similar_node_body = "";
$similar_node_nid = "";

/**
* Implementation of hook_help().
*/
function similar_help($section = "admin/help#similar") {
switch ($section) {
case "admin/help#similar":
return t("

Lists 10 most similar nodes to the current node.

");
case "admin/modules#description":
return t("Lists 10 most similar nodes to the current node.");
case 'node/add#similar':
return t("Lists 10 most similar nodes to the current node.");
break;
}
}

/**
* Implementation of hook_menu().
*/
function similar_menu() {
global $similar_node_title;
global $similar_node_body;
global $similar_node_nid;

if (arg(0) == 'node' && is_numeric(arg(1))) {
$node = node_load(array('nid' => arg(1)));
if ($node->nid) {
$similar_node_title = $node-> title;

TinyMCE there, but not showing up

I've installed TinyMCE for Drupal 4.6x exactly as the instructions say. All tables were added, and I've enabled the module.

Right below my text areas, the link "disable rich-text" is visible, but there are no TinyMCE buttons.

I've made sure to add a profile and link the appropriate roles to that profile and default state is "On"

Here are my settings for TinyMCE :

Make tinymce visible on:
specific pages:
node/*
user/*
comment/*

Options: left at default (blank for editor width and height)

Pages

Subscribe with RSS Subscribe to RSS - Post installation