search for: qex

Displaying 4 results from an estimated 4 matches for "qex".

Did you mean: qep
2002 Feb 23
1
"Out of memory" install error message
...y". I've also tried this: I installed Expensable on my kids' Windows 98 box, then copied the installed program files plus all relevant dll's and ini files and installed them bodily into the appropriate subdirectories in my fake_windows directory. When I run the main executable (qex.exe) under Wine, I get an error message saying it "cannot connect to qconnect.dll". Qconnect.dll is correctly installed in ~/.wine/fake_windows/Windows/System, and I'm left scratching my head. I also tried "wine -dll qconnect=n qex.exe" on the command line. No dice. So-...
2006 Jan 12
9
Scaffold shows all attributes altough I use attr_accessible!
Hi all I have a Model like this: class Member < ActiveRecord::Base attr_accessible :username, :email, :first_name, :last_name end I have created a scaffold using script/generate scaffold member members Using the URL localhost:3000/members/edit/1 I can edit all attributes, including created_at, lock_version etc.! But it should only show the attributes I listed in attr_accessible! What
2008 Oct 16
1
link-dest to remote server doesn't work in Linux client
Hello: I first use rsync on Cygwin in Windows, and make a fully old backup like this: rsync -a --force test 192.168.0.10::ttt/old/ Then in cygwin, I use "--link-dest" option to do a incremental backup: rsync -a --force --link-dest=../old/ 192.168.0.10::ttt/new/ * "new" directory contains updated files, and unchanged files are hard linked to "old" directory, rsync
2008 Sep 28
2
Does "--link-dest" option supports link to remote backup server?
Hello everyone: I keeps using rsync to backup my files on my laptop from one folder to another, and to reduce disk usage, so I use "--link-dest" option for incremental backup like this: *rsync -a --link-dest=/local/old /tmp/myfile /local/new* And "/local/old" is backuped some days ago, I use "--link-dest" option to keep unchanged files as links to new destination