This forum is for module development and code related questions, not general module support. For general support, use the Post installation forum.

Problem with sifr module

I've installed the sifr module and I copy all files from http://www.mikeindustries.com/sifr/ and place it in Drupal's modules/sifr/ directory.
But I get this error: "The sIFR library is in not installed correctly."

I'm able to upload fonts (.swf files) and add rules with the module.

But I still get this error and I can't see any flash replacement for a given element.

What's going wrong?

meinolf

No image in TinyMCE unless text added first

Hi All,

We're Using TinyMCE along with image.module and img_assist.module to add images to posts. It works fine unless the image is the first item in the post. In TinyMCE, it appears that the image has been added, but clicking on the HTML button to view the code shows a blank screen. When the post is submitted the image does not appear. If text is added to the post first the image is added no problem. We are using Full HTML as the filter.

Any ideas? We're not in a position to upgrade to 4.7!

Thanks in advance

Rich

Q: Order flexinode multiselect by name

Is it possible to order the multilist selection field by alphabetical order when you are creating a new flexinode?

For instace, could i have my HTML form that is structured like this:

value, name
1, dog
2, cat
3, pig
4, horse
5, turtle
6, hamster

be ordered like:

value, name
2, cat
1, dog
6, hamster
4, horse
3, pig
5, turtle

Any help would be awesome. Thank you.

What happened to video.module?

The video module isn't showing up on the CVS list of modules anymore. I thought it was there yesterday. I was going to report a possible bug, but it doesn't show up as a selection on the list of components for a bug submission either.

Roger

Still having problems with Forms

Through the help of the forums I have a form working. I am still having trouble with getting the submitted data. Or more to the point I am having trouble figuring out how to determine the submit button has been pressed and executing resultant code. See the code below. I am trying to get the line "success" to print after submitting the form. All I do get is the form (still filled in) returned back.

I would appreciate any insights to what is missing.

<?php
function client_add() {
$edit = $_POST['edit'];
$op = $_POST['op'];

if ( $edit && $op == t('Submit') ) {
print "Success";
//drupal_goto()
}
$form = form_textfield('First Name', 'c_fname', $_POST['edit']['c_fname'], 25, 25, 'Enter Clients First name', NULL, true);
$form .= form_textfield('Last Name', 'c_lname', $_POST['edit']['c_lname'], 25, 25, 'Enter Clients Last name', NULL, true);
$form .= form_textfield('Home Phone', 'c_hphone', $_POST['edit']['c_hphone'], 25, 25, 'Enter Clients Home Phone Number', NULL, true);
$form .= form_textfield('Work Phone', 'c_wphone', $_POST['edit']['c_wphone'], 25, 25, 'Enter Clients Work Phone Number', NULL, false);
$form .= form_textfield('Email', 'c_email', $_POST['edit']['c_email'], 25, 25, 'Enter Clients Email Address', NULL, true);
$form .= form_textfield('First Name', 'cc_fname', $_POST['edit']['cc_fname'], 25, 25, 'Enter Co-Clients First name', NULL, false);

Pages

Subscribe with RSS Subscribe to RSS - Module development and code questions