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

Node lists (like front page) completely out of order for some users. How do I even diagnose this problem?

Hello,

My main Drupal site is currently experiencing a problem that I'm hoping someone can help me diagnose. What's happening is that for certain users, pages like the default front page (mysite.org/node) are listing node contents in what appears to be random, or possibly ascending order. So rather than listing the most recent content first, it's starting in 2004.

FCKEditor 4.7 module and image uploading

OK thanks to the help of people here

http://drupal.org/node/41288

I have FCKEditor working happily on my test XAMP server on 4.7.

I'm using TinyMCE and Img_assits on my live server and they work perfectly but i think, after playing around with FCKEditor, my members may prefer the intergration of image uploading with this editor instead.

Anyway i'm stumped on paths to set to get the upload of images working and really could do with a little help.

I've updated my fckconfig.js as per instructions with the following

  FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=[context_path]/modules/fckeditor/ssip/connector.php"

FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=[context_path]/modules/fckeditor/ssip/connector.php"

and tried editing my properties.inc file to reflect where on the server my image directories are. But no matter what i do i get an XML request error 404 not found box come up when trying to browse the server.

I've set my $properties['path_separator'] = '\'; as its a windows machine and tried both

$properties['context_path'] = '\apache\xampp\htdocs';
$properties['context_path'] = '\';
$properties['context_path'] = '';

My images folder is set to
$properties['Image'] = ''\files\images;

No matter what i try i cannot get to see the images, create directories or upload images.

Stories under Primary Links and tagging with multiple categories?

Hey there,

I am on day 2 of my Drupal experience so please excuse me for not knowing all the Drupalese yet. I have two, hopefully minor, issues that I could use some help with:

1.) I have figured out how to create Primary Links at the top of my site and then link them to Static Pages that I made. But, for one of the primary links I'd like to have stories get posted there instead of a static page. I'm missing something b/c I just can't see where/how to do that.

how do I limit the number of recent blog posts displayed?

I remember in 4.6 there was an easy way to set a limit, but 4.7 is displaying 10 and I cannot figure out how to limit it to a smaller number?

any help would be appreciated.

CCK & theme_table problem

I'm trying to get a table output using the theme_table functions. My node types are defined as CCK types.

This is what I have currently:

<?php
    //Set up the table Headings
    $header = array(
        array('data' => t('ID'), 'field' => 'nid'),
        array('data' => t('title'), 'field' => 'title'),
        array('data' => t('author'), 'field' => 'field_author[0][\'view\']'));
   
	$node_type = "content-publication";
	$list_no = 5;

	$sql = "SELECT * FROM node WHERE node.type = '$node_type'";

    $sql .= tablesort_sql($header);
    $result = pager_query($sql, $list_no);
    // Loop through all the records
    while ( $records = db_fetch_object($result) ) {
        // Build a row for the table from the data
        $rows[] = array($records->nid, $records->title, $records->author);
    }
    $pager = theme('pager', NULL, 50, 0);
    // Add the pager to the table if needed
    if ( count($rows) && !empty($pager)) {
        $rows[] = array(array('data' => $pager, 'colspan' => '3'));
    }
   
    // If we have rows for a table, theme the table
    //    otherwise set output to a message
    if ( count($rows) ) {
        $output = theme('table', $header, $rows);
    }
    else {
        $output = "There are currently no clients";
    }
   
    // And finally, produce the page
    print theme('page', $output);
?>

My problems are the lines:

How to remove 'request new password' from Login block

I'd like to remove the 'request new password' link from the login block, as I have used LDAP_integration to do the authentication and the link is not required. Can I do this without altering the code?

Pages

Subscribe with RSS Subscribe to RSS - Post installation