I have been working on a Drupal/Alfresco site and things seem to be going fine. When I create content in Drupal, a new node is created in Alfresco. Updating content works in both directions. The only issue now is that content created in Alfresco is not showing up in Drupal. I am guessing (and hoping) that this is supposed to work. Is there additional configuration that needs to be done?

Thanks,
Tod

Comments

zydoon’s picture

Hi,
am on 6.x-3.01, and having the same issue: content created on Alfrescco doesn't sync to drupal
PLUS
updates are not working "FROM Alfresco to Drupal"
here's my config:

/**
 * CMIS configurations
 * 
 * Repository Configuration
 */
$conf['cmis_repositories'] = array(
  'default' => array(
    'user' => 'admin',
    'password' => 'admin',
    'url' => 'http://localhost:8080/alfresco/s/cmis'
  )
);

$conf['cmis_sync_map'] = array(
  'page' => array(
    'enabled' => TRUE,
    'cmis_folderPath' => '/Guest%20Home'
  ),
);

any idea ?

zydoon’s picture

I changed cmis_sync_map to the following:

$conf['cmis_sync_map'] = array(
  'page' => array(
    'enabled' => TRUE,
    'cmis_folderPath' => '/Guest%20Home',
    'full_sync_next_cron' => 'TRUE'
  ),
);

Now I have synchronization both ways every cron run and new content at alfresco is showing up on Drupal.

The new content from drupal has the author "Anonymous" and status "published"

niclaw85’s picture

Hi there

Ive been reading most of your posts about drupal alfresco integration and have managed to get a good working repository. How would i go about using the drupal upload form to store the files in the repository. lets assume were talking about your settings.php and im using the Page content type too.

whats the process? as at the moment when im making drupal nodes they are being store in alfresco as just the title of the node with 0kb file size.

I hope im being clear about the problem and someone can help.

Thanks in advance

Nic

IanNorton’s picture

Status: Active » Closed (won't fix)

Closing issue as part of Drupal 6 support announcement https://drupal.org/node/1910638