Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Mr. S

Pages: [1]
1
Development / Re: How to add WebDAV to FO
« on: May 14, 2011, 09:53:49 am »
I'm sorry, I don't have time to add features or fix my addon in the next three month.

2
Development / Re: How to add WebDAV to FO
« on: January 21, 2011, 03:37:39 pm »
PHP Fatal error:  Call to undefined function mb_detect_encoding() in /var/www/html/library/SabreDAV/lib/Sabre/DAV/URLUtil.php on line 100
You have to install the Multibyte String extension for php. Normally, you just need to change the php configuration.

3
Development / Re: How to add WebDAV to FO
« on: January 10, 2011, 09:41:50 am »
Hi,

it's working with FO 1.7.3.1 at my server.

Ther is an htaccess file in the /public/webdav subdirectory of feng. If you install feng to http://www.yourserver.com/fengoffice/ you have to modify the RewriteBase to:
Code: [Select]
RewriteBase /fengoffice/public/webdav/

4
Development / Re: How to add WebDAV to FO
« on: August 23, 2010, 03:00:46 pm »
You can debug the code by change the line
define('WEBDAV_DEBUG', false);
to
define('WEBDAV_DEBUG', true);
in index.php. This will create a debug file davdebug.txt with different information.

As you can read in my first posting, I'm using Apache and not IIS. So, I don't know how to fix your problem.

The URL to map the webdav folder then on Windows 7 should be http://my.site.com/collab/public/webdav.

5
Development / Re: How to add WebDAV to FO
« on: August 18, 2010, 03:14:17 pm »
I'm not able to add an attachment to my pervious topic. I put the new version on sharehoster:


MD5: 54B618DA375A6F919BB4FA7A72FB3BF2

6
Development / Re: How to add WebDAV to FO
« on: August 18, 2010, 03:01:19 pm »
Can somebody debug this stupid forum? I can't modify my first posting! There is a wrong XML-Declaration in http://forums.fengoffice.com/index.php?action=quotefast;quote=16770;sesc=#############47f6d72da1ed;modify;xml

<?xml version="1.0" encoding=""?>

But back to my webdav entension! I fixed a few errors and add new functions:
  • Add subdirectorys for subworkspaces
  • Add function to debug source code
  • Fix NULL-error
  • Fix httaccess file for fastcgi
  • Fix server bug in SabreDAV

This fixes repairs a couple of HTTP-500-Errors.

7
Development / Re: How to add WebDAV to FO
« on: August 10, 2010, 05:23:57 pm »
@serj999
Please read the second an third postings in this thread!

8
Development / Re: How to add WebDAV to FO
« on: July 28, 2010, 04:37:43 am »
@Murz
Have you modified the htaccess file? You have to install and use  mod_rewrite or an equal software. Your error looks like a not working rewrite rule.

At the moment it's not possible to display the workspaces in a hierarchy. I'll fix this as soon as possible. The first Version of this extension is only to show that it is easy to add WebDAV with the SabreDAV library.

9
Feature requests / Source-Code-Editor
« on: July 24, 2010, 11:18:27 am »
Hi!

It would be nice to have a source code editor like http://marijn.haverbeke.nl/codemirror/index.html for different files.

11
Development / How to add WebDAV to FO
« on: July 23, 2010, 09:33:11 am »
Hi everybody,

I need an easy access to my FO-documents. There is no WebDAV support, so I decided to write my own extension.

Installation:
 - Extract the attachment
 - Modify the htaccess file

I have built this extension on top of SabreDAV (http://code.google.com/p/sabredav/).

Pages: [1]