Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

files

Running ownCloud3 On Nginx (LEMP) On Debian Squeeze/Ubuntu 11.10
Thursday, 02 February 2012 12:25

Running ownCloud3 On Nginx (LEMP) On Debian Squeeze/Ubuntu 11.10

This tutorial shows how you can install and run ownCloud3 on a Debian Squeeze or Ubuntu 11.10 system that has nginx installed instead of Apache (LEMP = Linux + nginx (pronounced "engine x") + MySQL + PHP). ownCloud enables universal access to files through the widely implemented WebDAV standard, providing a platform to easily view and sync contacts, calendars and bookmarks across devices while supporting sharing, viewing and editing via the web interface. It offers the ease-of-use of Dropbox and box.net without vendor lock in. ownCloud users can run its file sync and share services on their own hardware. nginx is a HTTP server that uses much less resources than Apache and delivers pages a lot of faster, especially static files.

Read more: http://www.howtoforge.com/running-owncloud3-on-nginx-lemp-on-debian-squeeze-ubuntu-11.10

 
Delete all the files in directory in asp.net
Friday, 27 January 2012 10:43
// Delete all the files in directory in asp.net



private void DeleteDirectoryFiles(string path)
{
if (Directory.Exists(HttpContext.Current.Server.MapPath(path)))
{
string[] files= System.IO.Directory.GetFiles(HttpContext.Current.Server.MapPath(path));
foreach (string file in files)
{
File.Delete(file);
}
}
}

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/2XpiqY5IMtY/14479

 
Android
Thursday, 15 December 2011 09:31
Android developer:


root folder of the project/
jni/
libs/
res/
src/
AndroidManifest.xml
default.properties
... other files ...

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/l1FSTr6cnCs/14199

 
New file attribute for managing data backups
Thursday, 03 November 2011 18:30

iOS 5.0.1 beta is now available on the iOS Dev Center. It introduces a new way for developers to specify files that should remain on device, even in low storage situations. Learn more.


Read more: http://developer.apple.com/news/index.php?id=11032011a

 
Moving Files Between Linux Systems With SCP
Friday, 21 October 2011 03:36

Moving Files Between Linux Systems With SCP

This article is about how to move files between servers using the scp (secure copy) command. To show how it works, I will move files from my HDD to a virtual machine running on VirtualBox. There is Linux Mint 11 installed on both drives.

Read more: http://www.howtoforge.com/moving-files-between-linux-systems-with-scp

 
Start
Prev
1


Page 1 of 13
Taxonomy by Zaragoza Online