Set correct path for thumbnailer

Hello,

I am using Video ffmpeg Helper.

In Video Settings -> Video ffmpeg Helper -> I am setting FFmpeg executable path for Automatic video thumbnailing.

If I check box Auto thumbnail for videos and save configuration than it doesn't work.
I shows me error "Set correct path for thumbnailer"

If anyone knows the solution for this than please update.

Thank You
Sachadmin

Subversion repository organization for drupal development?

Myself and a friend are building a website using drupal 5.2.

We're using Subversion to manage our website code, and would like to get some best-practices advice on how to use subversion and structure the repository directories for website development using drupal.

We're using both non-core and custom developed modules.

We've customized a bit of core, and a fair bit of a number of non-core modules.

Our goals for code-management:

Search form disappears on logout

hello, I'm having a problem with my search form and I'm hoping someone can help. I've got the block included in the header region and have included in my page.tpl.php like this: print $header; . I've got the block settings to show on every page and have unchecked both anonymous users and authenticated users in the specific roles section. The login form is disabled as visitors won't be required to login or create accounts. My problem is that the search form is visible when logged into admin but when I logout it disappears.

How to create different .module files in a single module folder?

Hi,
I have a folder(content) in which i will be having a different functions which will display an information parsed from XML content.

Initially i have this :
For eg. module(Region) when click on regions will list all regions.

This is code i have used to display the regions

function test_menu($may_cache) {
  $items = array();
  if ($may_cache) {
    $items[] = array(
      'path' => 'Regions',
      'title' => t('Regions'),
      'callback' => 'region_page',
      'access' => TRUE
    );
  }
  return $items;
}


function region_page() {
  $output = t('This page contains our example form.');
  return theme('region_widget');
}



function theme_region_widget() {

$output='<form name="test" method="post" >';
$output .= '<table width="50%" border="0">';
$output .= '<tr>';
//$output .= '<td width="49%"><b>Region Name</b></td>';
//$output .= '<td width="51%"></td>';

for ($i = 0; $i < sizeof($region); $i++) {
			$output .= '</tr>';
$output .= '<tr>';
			$details = $region[$i];
			$id = $details["#"]["id"][0]["#"];
			$name = $details["#"]["names"][0]["#"]["name"][0]["#"];
			$lang = $details["#"]["names"][0]["#"]["name"][0]["@"]["lang"];			
			$output .= '<td><a href="?q=Country/'.$id.'">'.$name.'</a></td>'; 
		}
$output .= '</tr></table></form>';
return $output;
}

Weird looping back to home page

We're encountering a strange phenomenon on our blogs - http://blogs.onlineathens.com. Some people are not able to post comments. Here's what's happening: First, I realize we need to upgrade. But I hope that's not the problem (I don't want to upgrade at this time for reasons too lengthy to get into right now). Second, we have the blog rigged up so that people who want to post replies have to be registered with and logged into our newspaper's registration system (onlineathens.com).

How to add a radio button?

Hi all,
I have to create a user profile under "My account", i have used user management for this. I have do not have option to create a radio button for the same.How do i do this?

Am able to create textfields,checkboxes etc.

TIA!

Pages

Subscribe with RSS Subscribe to RSS - Drupal 4.5.x or older