Closed (fixed)
Project:
CMIS API
Version:
6.x-3.x-dev
Component:
User interface
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
22 Jun 2010 at 05:01 UTC
Updated:
3 Jun 2013 at 14:13 UTC
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
Comment #1
tmhilton commentedHave 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.
Comment #2
IanNorton commentedCharacters should be escaped properly in the 7.x branch.
Closing 6.x issues as documented in this post
Comment #3
IanNorton commented