Posted by tmhilton on March 23, 2010 at 3:54am
2 followers
Jump to:
| Project: | CMIS API |
| Version: | 6.x-3.01 |
| Component: | Documentation |
| Category: | support request |
| Priority: | normal |
| Assigned: | cfuller12 |
| Status: | active |
Issue Summary
I am trying to migrate my Drupal/Alfresco set-up to a new environment (from development to test). Everything seems to be fine. I can update content in Drupal and have it sync to Alfresco. I can see and browse the Alfresco repository from the Drupal CMIS browser. However, updates made to the content in Alfresco are not syncing with the pages/content in Drupal. I'm not sure where I should look to see where things are going wrong. Any advice would be greatly appreciated.
Thanks,
Tod
Comments
#1
Tod,
Have you checked to ensure that cron is running in your test environment?
Thanks,
Chris
#2
Hi Chris,
Yes. Cron seems to be running fine. I'm not seeing any errors.
Thanks,
Tod
#3
I thought I would give an update on what seems to have helped. I added 'full_sync_next_cron' => TRUE to the $conf configuration.
// cmis repository def
$conf['cmis_repositories'] = array(
'default' => array(
'user' => 'admin',
'password' => 'admin',
'url' => 'localhost:8080/alfresco/s/cmis',
'full_sync_next_cron' => TRUE
)
);
Another thing to be aware of is to follow the steps for backing-up and restoring an Alfresco site (available on the Alfresco wiki). One important step is to back-up and restore the entire contents of the alf_data folder.
Hope the helps others with the same issue.
Tod