search for: file_st

Displaying 7 results from an estimated 7 matches for "file_st".

Did you mean: file_str
2006 Mar 26
10
How to delete a uploaded file with file_column plugin?
Hi, sounds somehow stupid, but I can''t get rid of my files that I uploaded into my application via the file_column plugin. Any suggestions? Cheers Thomas -- Posted via http://www.ruby-forum.com/.
2006 May 12
3
file_column error
Hmm, I''m using file_column and going by this tutorial, the files upload ok and I can see the fields updated in the database, but I am getting this error: "Trying to access file_column, but primary key got lost." Thanks in advance -- Posted via http://www.ruby-forum.com/.
2004 May 10
2
read error produces null-byte-filled destination file
I've run into a bug in the IO handling when reading a file. Suppose I have a file that lives on an NFS filesystem. That filesystem is NOT being exported with auth=0 permissions. So, if I try to access a file as root, it successfully opens the file, but subsequent reads fail with EACCES. This produces a destination file full of null bytes. I noticed this with 2.5.7, but checked 2.6.2 as
2004 Mar 05
2
Problem with --link-dest when syncing AIX to Linux
Hello, i'm using rsync 2.6.0 for daily-syncing some remote AIX 5.2 machine to a local linux (RH 7.3) with using the --link-dest option for saving space on incremental backups. Even if there are no changes on the AIX machine, all files are newly transferred on every new sync. My test scenario (actisi=remote aix machine, actisa=local linux machine): =====> Initial rsync [mma@actisa
2004 May 06
2
rsync-2.6.2: NFS clients confused after an rsync
We use rsync to update an nfs server. After an update, we noticed that a large number of clients didn't see the updated data. It took me a while to be able to reliably reproduce this problem, but it happens on old and new versions of rysnc. It also happens across all the platforms we use here (sun/linux/netapp). This shows the problem: [Note my home directory is NFS mounted]
2004 Jan 17
1
--delete-sent-files (AKA --move-files)
...s avoid tweaking the flags). So, feel free to take a look and see if you like what I've done. ..wayne.. -------------- next part -------------- Index: flist.c --- flist.c 17 Jan 2004 01:16:49 -0000 1.165 +++ flist.c 17 Jan 2004 05:04:54 -0000 @@ -602,7 +602,7 @@ void receive_file_entry(struct file_stru if (!file->basename) out_of_memory("receive_file_entry 1"); - file->flags = flags; + file->flags = flags & LIVE_FLAGS; file->length = read_longint(f); if (!(flags & SAME_TIME)) modtime = (time_t)read_int(f); Index: io.c --- io.c 16 Jan 2004 16:31:47 -00...
2003 Jun 25
3
patch draft for extended attributes on linux
...} +#endif + #if SUPPORT_HARD_LINKS if (preserve_hard_links && S_ISREG(file->mode)) { if (remote_version < 26) { @@ -457,7 +463,9 @@ static void send_file_entry(struct file_ } - +/** + * This matches up with send_file_entry() + **/ static void receive_file_entry(struct file_struct **fptr, unsigned flags, int f) { @@ -555,6 +563,13 @@ static void receive_file_entry(struct fi sanitize_path(file->link, file->dirname); } } + +#if SUPPORT_XATTRS + if (opt_xattr) { + xalist_receive(f, file); + } +#endif + #if SUP...