See the Mailing lists or Drupal Issue queue. There are also various working groups on groups.drupal.org

External authentification

how can i call from extrenal module (ipb login module) drupal authentification method?

my project has only ipb login from which i want to login into forum (ipb) and portal drupal. but i cant call drupal login method directly to put the $account.

any docs, answer, code are welcome

thanks

Slide Show

how can i put a slide show in drupal site .any module or refence material.

Module Development and Potential Vulnerability

Hi,
Today I had a very nasty 'shock' whilst developing a module for 6.2 and it took some time to figure out what had happened. To a newbie module developer this could be a catastrophic incident because the cause is not that obvious and the solution even less so.

SYMPTOM:
All menu routing and page requests result in a page not found error after the fault takes place.

CAUSE:
In the menu_router_build() function the DELETE statement is executed *before* the new set of callbacks have been produced, this means that a 'malicious' module could wipe out the entire menu router table and completely disable the operation of a site.

SUGGESTED RECOVERY:
Re-import the menu_router table from an SQL backup or a default installation which should restore the administrative functionality allowing further restorative actions to be undertaken.

HOW TO RE-CREATE:
Put a die statement in your hook_menu() implementation. I did this very innocently to see what was going on as I had some issues with what I was doing at the time.

SUGGESTED FIX / IMPROVEMENT:
The current implementation of menu_router_build() is as follows:

/**
* Collect, alter and store the menu definitions.
*/
function menu_router_build($reset = FALSE) {
static $menu;

if (!isset($menu) || $reset) {
if (!$reset && ($cache = cache_get('router:', 'cache_menu')) && isset($cache->data)) {

Found an error!

Drupal 5.7 theme prosilver on line 37 of viewforum_body.html

Line with error: (style="margin-top: 2em;") has no start or closing tags...

<!-- IF S_DISPLAY_POST_INFO or PAGINATION or TOTAL_POSTS or TOTAL_TOPICS -->
	<div class="topic-actions" ><!-- IF S_HAS_SUBFORUM -->style="margin-top: 2em;"<!-- ENDIF -->>

Correct markup:

select a node by author and type with node_load ?

I would like to select a node by author and type.
How could i do that ?
It doesn't work with node_load().
Thank you for your help !

How to show image follow grid form?

I'm using Drupal for my E-Commerce Website. I want to show products to follow grid form as soon as I enter home page. Would you like to teach me how to do that? Do we have a module to do that?

Pages

Subscribe with RSS Subscribe to RSS - Deprecated - Drupal core