


Submitting a form causes ‘secure connection failed’ error that persists
I’ve got a SSL certified server running drupal 7.37. Everything was working fine until I started adding form submission to a module I’m working on. As soon as I submit the form, I get ‘Secure Connection Failed’ in all browsers. I can get to... read more
How can I attach multiple pdfs to drupal_mail() function?
Was doing something like this global $base_url; $uri = $base_url . ‘/sites/default/files/test.pdf’; if(!empty($mail_content)) { /*send mail */ $to =$mail_content[‘to’]; //gets the current user’s mail address $from =... read more
How can I import special characters using Feeds?
I am using the Feeds module to import data into my site from a CSV file. When I try to import a row that has the € character, nothing gets imported and I get an error message. error:General error: 1366 Incorrect string value: ‘xE0 Cali…’ for column... read more
Conflict between ajax callback and jQuery UI dialog
I have a button that triggers an AJAX callback with the form api like so : $form[‘show_modal’] = array( ‘#type’ => ‘submit’, ‘#value’ => t(‘Some crazy text’), ‘#ajax’ => array(... read more
How do I make the nodes referenced by organic group content also be OG content?
I have an organic group called ‘newsletter’. I have two content types – ‘issue’ and ‘article’ – in ‘issue’ (which is set to be a group content type), there is a node reference field to articles, and many... read more
Display youtube video using Media Oembed in the node
I have embedded youtube video in an article using media+media_oembed+media_internet modules.Media(my field) is a field collection item with two fields – media and caption field.I have custom themed(necessary for my custom bootstrap template) media using theme... read more