Hi,

Using this great module I had the problem of loading.gif was missing. The problem was that I use pathauto module so the path to this image was break.

www.mysite.com/content/site/default/modules/ajax_register/images/loading.gif

I solved this changing:

$path = 'var tb_pathToImage ="' . drupal_get_path('module', 'ajax_register') .'/images/loading.gif";';

to

$path = 'var tb_pathToImage ="' . base_path() . drupal_get_path('module', 'ajax_register') .'/images/loading.gif";';

In line 18.

Thanks!!

CommentFileSizeAuthor
#2 782590-loading_gif_not_found.patch835 bytesMaxWesten
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Open Social’s picture

Status: Active » Reviewed & tested by the community

Same here, line change above worked. This should be fixed in the next release!

MaxWesten’s picture

The proposed fix works.
I've rolled it into a patch and attached it.