Tuesday, September 10, 2013

owncloud folder cfg

Re: Shared folders not downloaded via Sync client?

by Ionican » Tue Nov 27, 2012 1:44 pm

ok - after scouring the developer boards I found this courtesy of ForestMountain (http://bugs.owncloud.org/thebuggenie/owncloud/issues/oc-755):

"I have found that you can change this

Linux (Fedora 16): /home/<username>/.local/share/data/ownCloud/folders/ownCloud

Windows7: c:\users\<username>\App Data\Local\ownCloud\folders\ownCloud

Edit the ownCloud file with a normal texteditor. Writing targetPath=/ will reflect the localpath"

delete large number of files quickly

use tyhe command line and:

Monday, April 22, 2013

windows 7 webdav

Connecting Windows 7 to a WebDAV location requires the user to change a simple setting in the Windows Registry. For example, when connecting an ownCloud WebDAV, it simply isn't as straight forward as using a Linux box

The first thing that you need to do is locate your ownCloud or other WebDAV location. The WebDAV location in ownCloud is found by clicking the gear icon on the lower-left of the page and then Personal. Keep that address handy. Next, open up the Windows Registry with the Run command  - Windows + R then type in regedit.

Navigate to:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters\BasicAuthLevel

Change the BasicAuthLevel from 1 to 2. Close the Registry and open up the Services window (Windows + R thenservices.msc). Navigate to the WebClient service and Restart.

Next, open up Windows Explorer (not the web browser) and Map Network Drive. Input the WebDAV address and Login with different credentials. When the dialog pops up, enter your username and password for the WebDAV location. You're done!

Thursday, April 4, 2013

SBS2003 and Internet Explorer 10

Ensure that the url of the web site is in app compat mode (click compatibility icon in address bar) and add site in the trusted sites zone.
 

Monday, January 28, 2013

run chkdsk on Server 2008 Backup drive

type in the following at an elevated Command Prompt:

mountvol

This will return the command syntax for the mountvol command, followed by the existing volumes and their mount points. We're interested in the Volume GUID immediately above this line:

*** NO MOUNT POINTS ***

It will look something like this:

\\?\Volume{12345678-1234-5678-9abc-123456789abc}\

We now take this Volume GUID minus the trailing slash and feed it to chkdsk, like this:

chkdsk /f \\?\Volume{12345678-1234-5678-9abc-123456789abc}

(remember...no trailing slash)

Monday, January 14, 2013

How do I restart the Remote Desktop Service on a Server 2003 system without rebooting the system?

The Terminal Services service is run as a SVCHost.exe process. The first step in stopping it requires identifying the correct process. On your Windows 2003 Server, open up a command prompt. At the prompt, type:
tasklist /svc

Scroll through the output until you find 
svchost.exe XXXX TermServices
where XXXX is the process id.

At the same prompt, type 
taskkill /PID XXXX /F
where XXXX is the process id you got from the previous command.

Type:
services.msc
and hit enter. Then type Exit and hit enter. The command prompt will close and the services window will open. Scroll through the list of services until you find Terminal Services. Right click on the service and select Start from the popup menu.

Sunday, January 13, 2013

Fabrik SyntaxError: Unexpected token <

I was using the form module and unchecked Ajaxify within the module config to get rid of the error.  Hope that helps!