Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
7answers
259 views

Separate file server for a php website

I have two servers for a website. One server will have php code and database and another less speed server to store files only. I need to implement these in a way that file uploaded through the ...
4
votes
3answers
298 views

Considerations where to store documents - on file server or in DB?

I have a design decision to make regarding documents uploaded to my web site: I can either store them on my file server somewhere, or I can store them as a blob in my database (MSSQL 2005). If it ...
4
votes
3answers
15k views

C# Uploading files to file server

Currently I have an application that receives an uploaded file from my web application. I now need to transfer that file to a file server which happens to be located on the same network (however this ...
1
vote
0answers
21 views

file server to replace a clustered file system

For various maintenance, stability and backup reasons I need to replace a 10 node (10 Linux hosts) ocfs2 shared filesystem with something that does not rely on a shared disk. The client applications ...
1
vote
2answers
51 views

Detecting if the user downloaded a file or not

I want to detect if the user has clicked on the download or the view hyperlinks. It's a page where people can upload files and if needed they can look at files too(files uploaded by anyone). I am ...
1
vote
2answers
570 views

Image Uploads - CDN, MongoDB, or NFS?

I have an admin type system for a website with multiple web servers where users can configure pages and upload images to appear on the page (kind of similar to a CMS). If you already have a MongoDB ...
1
vote
3answers
340 views

Basic Java Fileserver

I am trying to create a very barebones fileserver that does nothing more than download a zip file and exit, but I am running into problems. I have two main problems. The first is that when I test on ...
1
vote
1answer
71 views

drupal input filter changes only one pattern

my custom drupal module provides a custom input filter, the function is below: function my_custom_filter($text) { return preg_replace('~<img(.*)src=\"/sites/default/files/(.*)\"~', ...
1
vote
1answer
171 views

How to serve files and html directly from a WCF-service similar to an ASHX-handler?

Im writing an install and update-server for an intranet-application and I want the user to be able to install the app directly from a url such as: http://domain.local/myapp/install.exe where this ...
1
vote
1answer
63 views

Need an image server to query FITS (astronomy) or general image files

I would like a system that is able to query FITS files. If it doesn't work specifically with FITS files that is ok. I can write extra code. Basically FITS files are image files that are used in ...
1
vote
4answers
728 views

Renaming a file on a remote file server in C# / Python

I need to rename a whole heap of files on a Windows file server - I don't mind what language I use really as long it's quick and easy! I know it's basic but just to clarify - in pseudo-code... ...
1
vote
2answers
208 views

Reliable data serving

How can i make sure my file serving is reliable and scalable? How many parallel request it can handle? I am thinking beyond the hardware capability and band width. i am following ...
1
vote
3answers
104 views

Efficiently creating tar files

Note: I'm using Windows file servers and .NET If I were to create a TAR file from files on a remote file server (meaning, the TAR file would be created on the remote file server, where the original ...
0
votes
1answer
28 views

Web Server being used as File Storage - How to improvise?

I am making a DR plan for a web application which is hosted on a production web server. Now that web server also acts as a file storage for storing the feed uploads files (used by the web application ...
0
votes
1answer
44 views

PHP to get files from another server

We have a server running PHP (windows). We've run out of HD space with our ISP and set up an account on another server (Linux) for file storage. What is the best method for running the script in one ...
0
votes
3answers
52 views

Sending system calls to file server

I was designing a file server using socket programming in C. I send the calls like open(), write() etc as plain strings using stream sockets and decipher it at the server end.i.e if it is a open call ...
0
votes
2answers
48 views

A file server and its associated clients

I am extremely new to socket programming and I am implementaing a file server that receives request like open(), read(), write(), close() from clients. The file server will process the requests and ...
0
votes
1answer
66 views

How to setup a http accessable file server with user managment?

CompanyX wants a file server setup. They have several clients they want to share files with, they'd like to give each client a unique username/password and access to their own folder. The client ...
0
votes
0answers
138 views

User files directory structure

We are working on a web application where every user will have 20-30 projects. A project can be an image project with about 200-300 images, or a video project with only one video, or a flash project ...
0
votes
1answer
46 views

Serving files from linux share on IIS 6.0

dHi, I'm trying to setup my IIS server (6.0) to serve files from a linux share. As I'm pretty unfamiliar with linux I ask the community for any input on this. I've had problems even having IIS server ...
0
votes
1answer
286 views

web application: store txt file on windows server share from linux web server

I have a java class that I use to create a text file from a web application. I'm using the following code: private void CreatePaymentFile(String QueryCriteria) { BigDecimal TotalPay; DecimalFormat ...
0
votes
1answer
80 views

Multiple file servers for one website's content

I'm planning to use multiple file servers to host my website uploaded files. what's the best way to do it ? should I install a web server on other machines as well? or is there any special software ...
0
votes
2answers
197 views

Starting a file server (possibly NFSD) in snow leopard without requiring root?

I want my OS X app to share files via the loopback device. I want to do this so that my app can make a directory of frequently changing, read only files available to the user without messing with the ...
0
votes
7answers
82 views

Database on file server (Windows)

I am working for a company and I need to create a program really fast. My program will run with 100 users and they will make approximately 100 transactions each per day. As I am under time pressure, ...
0
votes
1answer
42 views

Global disk resource becomes unavailable

If I've got a global disk resource (mount point on an isilon file server) that multiple servers use to access a lock file. What is a good way to handle the situation if that global disk becomes ...
0
votes
8answers
767 views

What would you use to implement a fast and lightweight file server?

I need to have as part of a desktop application a file server which should respond as fast as possible to file transfer requests (from remote clients, usually located on the same LAN). There will be ...
0
votes
2answers
1k views

Windows XP maxed out as a file server? [closed]

I am running Windows XP as a file server to 8 machines running real time applications. Three of the machines, also running XP, will open upwards of one thousand files each (and keep them open). Each ...
-1
votes
2answers
26 views

How to use Google Analytics to track views of static HTML pages on file server?

I have set up a simple intranet at file:///c:/Path/Index.html and I'd like to track its use with Google Analytics. Because its protocol is 'file:', not 'http:', it does not have a domain name. Is ...