Video Embed code not working on Drupal Blog

Hello,

I've attempted to do everything in my power to embed a video in my drupal blog.

I've tried the new and old embed code from the Vimeo Video, enabled Full HTML - and still it just shows the code.

The video is on the site now, but it's using a Vimeo Module - and I'd rather just have the ability to copy/paste the embed code.

Thank you for your help.

Tables display

Dear Community,

I am new to Drupal, evaluating an Open Source CMS solution for my client. They are currently using pTools.

Drupal looks very promising, only I am having a problem with tables - they display too low on a page (Firebug is showing me about 8 or 9 line break tags before the table finally shows up). My table looks like:

This is a table:

What modules to use to add subscription box to email field

I have a content type with an email field using the module: http://drupal.org/project/email
This content type can be added by anonymous users, to add content to the website.
I added the email filed to inform (by email) the user once his post is approved.
There are two things I need to know how to do:

File Transfer failed when updating ctools 7.x alpha 4, Cannot remove directory .../sites/all/modules/ctools/page_manager/css

Hi, I am very new to Drupal. I downloaded Drupal 7.x just few days ago. I am still trying to figure out the concepts behind the scene. This morning I noticed there were newer version for ctools and views which I have just installed two days ago. I made a update request.

Here is the screen output:
---------------------
ctools

* Error installing / updating
* File Transfer failed, reason: Cannot remove directory ...../sites/all/modules/ctools/page_manager/css.

views

* Installed views successfully

Next steps

How to depend properly on multiple fields using D7 FAPI #states attribute?

Having three fields on a form: year-from, year-to and a title, all textfields. The title field should be enabled if and only if either of the year fields is filled, and having considered that Form API's #disabled attribute cannot be used for this. So I've came up with this:

function mymodule_myform() {
  $form = array();
  $form['yearfrom'] = array(
    '#type' => 'textfield',
    '#title' => t('Year from'),
  );
  $form['yearto'] = array(
    '#type' => 'textfield',
    '#title' => t('Year to'),
  );
  $form['title'] = array(
    '#type' => 'textfield',
    '#title' => t('Title'),
    '#states' => array(
      'enabled' => array(
        '#edit-yearfrom' => array('filled' => TRUE),
        '#edit-yearto' => array('filled' => TRUE),
      ),
      'disabled' => array(
        '#edit-yearfrom' => array('empty' => TRUE),
        '#edit-yearto' => array('empty' => TRUE),
      ),
    ),
  );
}

This ensures that the form comes up with all the three fields being empty, and the title field being disabled (by jQuery, only on client-side). This ensures that when either of the year fields has anything in it, the title field becomes enabled. Speaking CS: both the enabler and disabler conditions are OR'ed together, but the disabler ones should be AND'ed.

Install Drupal 7 - error message

I have problem during install Drupal 7:

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x