I'm customizing my cmis drupal-alfresco to be able to upload a video.
I've installed kaltura module to take care of uploading video and video player job
successfully and it works fine. My problem is , a certain video that I've uploaded from drupal
doesn't appear in Alfresco space( no record at all). How should I fix this problem?

Thanks

here is my settings.php config

$conf['cmis_repositories'] = array(
  'default' => array(
    'user' => 'admin',
    'password' => 'admin',
    'url' => 'http://localhost:8080/alfresco/s/cmis',
    'subfolders' => TRUE,
    'full_sync_next_cron' => TRUE
  )
);

$conf['cmis_sync_map'] = array(
  'page' => array(
    'enabled' => TRUE,
    'cmis_folderPath' => '/test',
  ),

  'story' => array(
      'enabled' => TRUE,
      'cmis_folderPath' => '/test',
  ),

  'kaltura_entry' => array(
        'enabled' => TRUE,
        'cmis_folderPath' => '/Video',
  )

);

Comments

tmhilton’s picture

Have you successfully uploaded other videos before? Is it only one video that doesn’t upload? I’ve had this happen with HTML content and PDF files. I found that certain characters in the title such as & or : to be the problem.

IanNorton’s picture

Characters should be escaped properly in the 7.x branch.

Closing 6.x issues as documented in this post

IanNorton’s picture

Status: Active » Closed (fixed)