what does this error mean?

CommentFileSizeAuthor
#16 main_frame_txt-1321534-16.patch933 bytesSERVANT14
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

jday’s picture

never mind my dumb brain finally figured it out.

redndahead’s picture

Status: Active » Closed (works as designed)
yusufhm’s picture

erm mine (dumb brain) has not yet figured it out; what was needed to make it work please :) ?

edit: OK, I figured it out too; the Views Slideshow module is just the API; you need one of the additions to make it work (e.g., Views Slideshow: Cycle). I just enabled it, downloaded the required library and it works fine now.

murpheus’s picture

It works only on D6. What happens to D7 installations?

jday’s picture

just make sure you enable both options in the Views Slideshow module: Views Slideshow & Views Slideshow Cycle, otherwise you get the framework error

pritamprasun’s picture

I also stucked here. Thanks for the post, It helped me.

mehrdad zadehebrahim’s picture

Thanks a lot. It has been solved

JagPHP’s picture

What can be done for D7, Views cycle is not available for D7.
Any Solution?

brett1’s picture

Do a module search for views slide show with a filter for drupal 7
I have not tried yet but
views_slideshow_galleria
looks great

brett1’s picture

Hi - came here because of the same issue, thanx for the post.
JagPHP - I recon
views_slideshow_slider
Views Slideshow Liquid Carousel
Views Slideshow: Galleria
Views Slideshow Xtra
Views Slideshow: Dynamic Display Block
Views Slideshow Configurable Controls
All look like they will work (I have not tried any of yet but like the look of Galleria)

drupalman1’s picture

thanks!

sabarigr’s picture

Thanks man.. Trying to help people doesn't come under the 'dumb brain' category.

jordilopezamat’s picture

Issue summary: View changes

I also stucked here. Thanks for the post, It helped me. Gracias.

drupalshrek’s picture

Priority: Normal » Minor
Status: Closed (works as designed) » Active

I too was completely baffled as to what this message means. My case was that I had not enabled the "Views Slideshow: Cycle" module on staging environment.

I would propose to improve the message, so that people would have a better idea when this happens what to do, rather than having to hunt in the forums. In _views_slideshow_preprocess_views_slideshow() instead of:

  if (empty($main_frame_module)) {
    drupal_set_message(t('No main frame module is enabled for views slideshow.'), 'error');
  }
  if (empty($main_frame_module)) {
    drupal_set_message(t('No main frame module is enabled for views slideshow. 
    	This is often because another module which Views Slideshow needs is not enabled.
    	For example, 3.x needs a module like "Views Slideshow: Cycle" enabled.'), 'error');
  }

I thought of adding module_exists(views_slideshow_cycle) test, then I thought of adding
"dependencies[] = views_slideshow_cycle" to views_slideshow.info but I understand that other modules could be used instead of views_slideshow_cycle.

Anyway, a clearer message should help over 90% of people.

clintu’s picture

For D7 just enable module Views Slideshow: Cycle

SERVANT14’s picture

Component: Documentation » User interface
FileSize
933 bytes

Here's a patch based on what drupalshrek proposed.

SERVANT14’s picture

Status: Active » Needs review
iampuma’s picture

Status: Needs review » Reviewed & tested by the community

patch applies

  • aaron committed bc193ea on 7.x-3.x
    Issue #1321534 by SERVANT14: fixed No main frame module is enabled for...
aaron’s picture

Status: Reviewed & tested by the community » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.