Help me find out how can i look for a module that we can download messages including audio and video and also a written message, what i think is even users can upload messages in audio format and even video also written message form Microsoft Office word for them not know how to use html code and also this messages can download by users easily?
Drupal Modules
what the hell is it!! help me!
Drupal ModulesI was looking for a solution to make a website like http://delicious.com/ that I finally I found Storylink module. I started the project with a lot of hopes , but now I see this **** message on top daily links and other part of most popular links pages:
user warning: Table '****.votingapi_cache' doesn't exist query: SELECT COUNT(*) FROM node n INNER JOIN votingapi_cache v ON n.nid = v.content_id WHERE n.type = 'storylink' AND n.status = 1 AND n.created >= 1268174838 AND v.tag = 'vote' AND v.function = 'sum' AND v.content_type = 'node' in /home/****/domains/*****.com/public_html/portal/sites/all/modules/storylink/vote_storylink.module on line 440.
user warning: Table '*****.votingapi_cache' doesn't exist query: SELECT n.nid, n.created, v.content_id, v.value, v.tag, v.function FROM node n INNER JOIN votingapi_cache v ON n.nid = v.content_id WHERE n.type = 'storylink' AND n.status = 1 AND n.created >= 1268174838 AND v.tag = 'vote' AND v.function = 'sum' AND v.content_type = 'node' ORDER BY v.value DESC, n.created DESC LIMIT 0, 10 in /home/deftem/domains/******.com/public_html/portal/sites/all/modules/storylink/vote_storylink.module on line 440.
What I have to do now?! I'm really confused and disappointed.
Autocomplete field updates multiple values in a form
Drupal ModulesHi All,
I'm wondering whether someone might be able to help me with an autocomplete form I'm creating.
The CCK node has the following structure
name (text)
age (int)
title (text)
biography (body text)
I am accessing a third party database (via REST API) with the names, titles and ages of a number of people. I want my user to find a person by typing into an autocomplete textbox. However when they select the user I want the age to also be populated with results of the query. So for example if my third party has the following data:
sally, 36
john, 24
david, 33
Block cache is still caching for anons even when disabled
Drupal ModulesI've created a module that delivers a block link depending on a person's IP address but block_no_cache/Block Cache Disabled is not working for anons. The first person hitting the page is caching the block for everyone coming after them for the length of the Page Cache. If anyone could offer some advice it would be greatly appreciated.
I'm on Pressflow 6.15., I have Page Cache set to Normal, Block Cache set to Disabled, and the block is setup like this:
<?php$blocks['pledge_banner'] = array( 'info' => t('Block for donate banner'), 'cache' => BLOCK_NO_CACHE, 'weight' => 0, 'region' => 'below_menu', 'pages' => 'node/33', 'status' => 1, 'visibility' => 0 );?>
In the DB the block cache is -1.
Cloning a user
Drupal ModulesHello,
I've been searching through the internet and the Drupal forum with no luck so far :/
I have specific roles that can create users. Sometimes the location information for my users match. So I was wondering if there is a solution for cloning or copying an existing user?
(I'm also using the location module for my users!)
thanks,
--iM
AHAH Clashes with Submit
Drupal ModulesI have created a form where, amongst other things, the user assigns one of four colors. The colors are selected from a SELECt box and assigned a value by typing in #RRGGBB in a text box. When the text box looses focus I use an AHAH to update a visual representation of the color.
All works well. The problem occurs when the user hits the Submit button and the #RRGGBB text box has focus. The AHAH request goes off and form submission occurs pretty much at the same time. The form submit actually works but I get an HTTP 0 error from the AHAH. Is there some way I can stop this from happening?
Where can I see Hook definitions on my localhost?
Drupal ModulesI'm one of those guys who needs to see it to understand it, and I need to understand it fully to use it to the fullest.
So can someone point to me in my installation where the HOOK definitions are located?
For example, I know that when developing a module I can use _install hook in my install file, but besides having to logon to the website to see the API docs, where can I look on my local machine to see the parameters and functionality of the hooks (not always connected to the Internet).
Thanks
Bill
Ask a Question module
Drupal ModulesHi, I want to know if there is a way to create a simple QA page using existing modules? I want a functionality to send question as an e-mail i.e. similar to how anyone can create a new post on the forum. Is it possible to get the question e-mailed to concerned person and that person comes back to the site answers the question.
Any help would be highly appreciated.
Thanks.
Menu links above content
Drupal ModulesHi
How can I realize the functionality, to show addition menu link on each page like it is realizes even on this drupal.org page. You can see links under the main Drupa logo:
Home » Forums » Support » Module development
Thanks
problem with MENU_LOCAL_TASK
Drupal Modules<?phpfunction la_article_menu() { $items = array(); $items['number'] = array( 'title' => t("Номера журналов"), 'description' => t("Список номеров журнала."), 'page callback' => 'num_list', 'access callback' => 'access_la', 'file' => 'callbacks.inc', ); $items['number'] = array( 'title' => t("Просмотр"), 'description' => t("Список номеров журнала."), 'page callback' => 'num_list', 'access callback' => 'access_la', 'file' => 'callbacks.inc', 'type' => MENU_DEFAULT_LOCAL_TASK ); $items['number/add'] = array( 'title' => t("Добавить"), 'description' => t("Добавить номер журнала"), 'page callback' => 'add_number', 'access callback' => 'access_la', 'file' => 'callbacks.inc', 'type' => MENU_LOCAL_TASK ); return $items;}?>