Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
en:extensions:webdav [2014/02/01 16:24]
swarnat
en:extensions:webdav [2014/02/01 16:39]
swarnat Page moved from en:vtiger_6.0:extensions:webdav to en:extensions:webdav
Line 8: Line 8:
  
 **Please contact your system administrator to check this requirements before you buy!** **Please contact your system administrator to check this requirements before you buy!**
 +
 +===== Setup =====
  
 - Extract all files of the module archiv and upload them to a directory /webdav in your vtigerCRM Root directory (The directory which contains the vtigerversion.php). - Extract all files of the module archiv and upload them to a directory /webdav in your vtigerCRM Root directory (The directory which contains the vtigerversion.php).
Line 13: Line 15:
 - Open this directory in your browser (URL in this way: http:/ /<​yourvtigercrmdomain>/​webdav and you will see a license error. Copy the siteURL, which is shown on this page. - Open this directory in your browser (URL in this way: http:/ /<​yourvtigercrmdomain>/​webdav and you will see a license error. Copy the siteURL, which is shown on this page.
 - Login into my CustomerPortal and generate the License Code with exactly this siteURL. - Login into my CustomerPortal and generate the License Code with exactly this siteURL.
 +- Insert this LicenseKey into your config.inc.php File in the variable $licenseKey
 +- Refresh the Browsertab with the webdav directory. You now should see a file structure
 +
 +<WRAP center round important 100%>
 +=== Please note: ===
 +If you create the webdav directory not inside the root directory of your domain, for example if your URL will be domain.com/​crm/​webdav/,​ **you have to set these path inside the .htaccess file!**
 +
 +To do this, please change this line inside the .htaccess file:
 +  RewriteBase /webdav/
 +and enter your own path to the webdav directory.
 +For example if your URL is: //​www.domain.com/​crm/​vtiger/​webdav //
 +you need to set:
 +
 +  RewriteBase /​crm/​vtiger/​webdav/​
 +
 +</​WRAP>​
 +
 +===== Connect your Clients =====
 +
 +To connect your WebDAV Client to this Connector, you have to use the following details:
 +
 +Server: //<​PathToVtiger>/​webdav//​
 +Username: //<​yourUsername>////​
 +Passwort:// <​yourAccessKey>​
 +
 +You get your AccessKey from every Users "My Preferences"​ Page.
  
  
Line 99: Line 127:
 ==== $deactivateCompleteIDListing ​ ==== ==== $deactivateCompleteIDListing ​ ====
  
-If you use the [[en:​vtiger_6.0:​extensions:​webdav#​ID|ID Handler]]+If you use the [[en:​vtiger_6.0:​extensions:​webdav#​ID|ID Handler]] ​you could configure if you want to see a list of all ID's available in a module, which could be take a long time to generate and transfer. 
 +Because this handler is implemented to be used automatically from software, you probably could set this to **false**. 
 +This don't prevent you from access the Records! You only need the full URL to the record. (/​Modules/​Accounts/​123/​)
  
  
-/** 
- * Performance 
- * 
- * If you use ID Handler, you could deactivate the complete Record listing inside the Module directory. 
- * You need to access the records by URL directly via URL 
- * Open "/​webdav/​ID/​Accounts"​ for an example! 
- */ 
-    $deactivateCompleteIDListing = true; 
- 
-Extract Zip File and Upload extracted files into a /webdav Directory, within root dir of vtigerCRM 
-Rename config.inc.sample.php to config.inc.php in the webdav directory 
-Configure Extension inside this config.inc.php 
-Insert licenseKey into $licenseKey variable 
-Please note: 
-If you create the webdav directory not inside the root directory of your domain, like domain.com/​crm/​webdav/,​ 
-you have to set these path inside the file .htaccess!To do this, please change this line inside the .htaccess file: 
-RewriteBase /webdav/ 
-and enter your own path to the webdav directory. 
-For example: 
-www.domain.com/​crm/​vtiger/​webdav/​ will be RewriteBase /​crm/​vtiger/​webdav/​ 
- ​Connect with Clients 
-To connect your WebDAV Client to this Connector, you have to use the following details: 
  
-Server: <​PathToVtiger>/​webdav 
-Username: <​yourUsername>​ 
-Passwort: <​yourAccessKey>​ 
-You get your AccessKey from the “My Preferences” Page.