11-24-2009 04:27 PM
404 - Could not connect to server : Not Found
Name: Alfresco_test
Server: http://localhost:8080/alfresco
Share: http://localhost:8080/share
Username: admin
Password: admin
Published: yes
Change any occurrences of <?= to <?php echo, in the following files mysite/components/com_alfresco/views/folder/tmpl/default_files.php and default_folders.php
12-09-2009 11:45 AM
12-29-2009 03:33 AM
public function getFolders()
{
if (empty($this->_uuid)) {
$uri = $this->getProfile()->server . '/service/api/path/workspace/SpacesStore/children';
$data = $this->getXml($uri);
$this->_uuid = $data->content;
}
to public function getFolders()
{
if (empty($this->_uuid)) {
$uri = $this->getProfile()->server . '/service/api/path/workspace/SpacesStore/';
$data = $this->getXml($uri);
$this->_uuid = $data->content;
}
and public function getFiles()
{
if (empty($this->_uuid)) {
$uri = $this->getProfile()->server . '/service/api/path/workspace/SpacesStore/children';
$data = $this->getXml($uri);
$this->_uuid = $data->content;
}
to public function getFiles()
{
if (empty($this->_uuid)) {
$uri = $this->getProfile()->server . '/service/api/path/workspace/SpacesStore/';
$data = $this->getXml($uri);
$this->_uuid = $data->content;
}
Then I changed components/com_alfresco/models/abstract.php public function getBreadCrumbs()
{
$uuid = $this->_uuid;
$path = array();
while (!empty($uuid))
{
$uri = $this->getProfile()->server . '/service/api/node/workspace/SpacesStore/' . $uuid . '/parent';
$data = $this->getXml($uri);
to public function getBreadCrumbs()
{
$uuid = $this->_uuid;
$path = array();
while (!empty($uuid))
{
$uri = $this->getProfile()->server . '/service/api/node/workspace/SpacesStore/' . $uuid . '/';
$data = $this->getXml($uri);
01-04-2010 05:31 AM
01-04-2010 11:49 AM
$document->addScript($this->profile->share.'/yui/selector/selector-min.jss');
$document->addScript($this->profile->share.'/yui/selector/selector-min.js');
$document->addScript($this->profile->share.'/js/bubbling.v1.5.0.js');
$document->addScript($this->profile->share.'/js/bubbling.v2.1.js');
01-05-2010 06:47 AM
01-29-2010 05:53 AM
01-29-2010 06:59 AM
01-29-2010 08:10 AM
Hi, but this component run only with admin?
I try to use with another users, but don't run!..
03-04-2010 09:43 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.