Hi!
Friend, i have a problem.
1.- I installed 4 modules in a clean drupal 6 instalation.
cck-6.x-2.0-rc4.tar.gz
filefield-6.x-3.x.tar.gz
jq-6.x-1.0.tar.gz
jquery_media-6.x-1.3.tar.gz
And
2.- I enabled in Administer>modules:
Content
FileField
Number
Text
Option Widget
jQuery Media
jQ Bridge
jQ
3.- I created a ContentType with this parameters:
Titulo
Menu settings (admin)
Cuerpo
Video field_filefield filefield Configure Remove
File attachments
4.- I created a content with "Video Content Type", and the link to file is showed in the content:
5.- I went to configure the settings in jq_media module, and set this paramenter.
Checked "Node Type" the content type that correspond with my content.
Checked Auto-invoke Media class and the default value was't modified: "media class: .filefield-medi a"
Default Player: sites/default/files/mediaplayer.swf (previously i downloaded from here an put the mediaplayer.swf file in this directory)
Default Settings: Width 320 height 240 back color: default value #ffffff, i dont touch anything else.
5.- The link dont work, permanently is like a link, and not shw the video. Can you Help ME Please
--Note--
I have php.ini memory limit 128M (the manual said that the minimal in 16)
I proof the link to the mediaplayer.swf file an it works.

Any Idea.

PD.: Excuse me for my bad english!

CommentFileSizeAuthor
#2 Untitled-1.gif5.87 KBkulfi

Comments

flickerfly’s picture

Check the head in the code of the page to make sure jquery_media is being called.

Check to make sure that '.filefield-media a' is a valid class in the document. I had to change it to 'filefield-item a'.

Do any of those help?

kulfi’s picture

StatusFileSize
new5.87 KB

Not working for me either (Drupal 5). Attached screenshot.

UPDATE: Finally got the module working (didn't realise clean URLs were a requirement, have already requested messaging and/or documentation).

My MP3 player configuration:

sites/default/modules/audio/players/1pixelout.swf

(The explanation 'Enter the path relative to your webroot ...' is wrong, its relative to your drupal install.)

And because I am determined to use un-clean URLs, I hacked the module:

jquery_media.jq.inc, line 53

    if (!($default_js_loaded || isset($defaults['mp3player'])) || $options['mp3player']) {
      //$defaults['mp3player'] = $options['mp3player'] ? url($options['mp3player']) : url(variable_get('jquery_media_mp3player', JQUERY_MEDIA_MP3PLAYER_DEFAULT));
      $defaults['mp3player'] = $options['mp3player'] ? url($options['mp3player']) : base_path() . variable_get('jquery_media_mp3player', JQUERY_MEDIA_MP3PLAYER_DEFAULT);
      //print '[[[['.$defaults['mp3player'].']]]]';
      $js .= "    $.fn.media.defaults.mp3Player = '{$defaults['mp3player']}';\n";
    }