2
votes
2answers
17 views
Ignore symlinks in clean URL’s in .htaccess
Example URL:
example.com/user
/user is both a symlinked directory and a valid URL to content on my site. I user Horde Routes to request the content and all requests to the site g …
1
vote
4answers
80 views
Create broken symlink with Python
Using Python I want to create a symbolic link pointing to a path that does not exist. However os.symlink just complains about "OSError: [Errno 2] No such file or directory:".. This …
3
votes
5answers
68 views
Mulitple Sites with common files
I have developed over 50 sites that all use the exact same files other than CSS and IMAGES, i currently duplicate the files each time i create a new site and uplaod different css a …
0
votes
3answers
34 views
Is there a way to edit a symlink without deleting it first?
So I created a symlink:
ln -s /location/to/link linkname
Now I want to change the location that the symlink links to. How do I do that? is there a way to do it without deleting …
2
votes
4answers
69 views
Can ‘make’ check if mtime of a dependency is *different* between runs, not just if it’s newer than target?
If foo_user.cpp depends on foo.h, then foo_user.cpp is built, and then foo.h's modification time is set to further in the past, make will not rebuild foo_user.cpp (because foo.cpp …
11
votes
4answers
2k views
Windows XP vs Vista: NTFS Junction points
Problem: I relied heavily on NTFS Junction points in Windows XP, even though they apparently were not an "official" feature of the operating system. Now MSFT has generously made NT …
11
votes
10answers
1k views
What is the difference between a symbolic link and a hard link?
Recently I was asked this during a job interview. I was honest and said I knew how a symbolic link behaves and how to create one, but do not understand the use of a hard link and h …
1
vote
0answers
102 views
Ubuntu: Creating a symlink with network shared folder [closed]
Hi,
I'm trying to create a symlink with a network shared folder (located in a windows sys) from my ubuntu system using the command.
ln -s smb://sys-name/www www
It creates a lin …
2
votes
2answers
2k views
After adding a symbolic link in a svn repository I keep receiving an error inside of that directory
I created a symbolic link from /www/dir2/ to /home/dir2/
I then added it to the repository ( svn add /www/dir2/ )
Now if I go into that directory, and try to do anything with svn i …
0
votes
1answer
210 views
Capistrano symlinking problem?
I've this capistrano command.
task :symlink_shared do
run "rm -rf #{current_path}/config/database.yml"
run "ln -nfs #{shared_path}/config/database.yml #{releas …
2
votes
6answers
2k views
Remove a symlink to a directory
I have a symlink to an important directory. I want top get rid of that symlink, while keeping the directory behind it.
I tried 'rm' and get back "rm: cannot remove 'foo'".
I trie …
0
votes
1answer
37 views
Symlinks in Linux/PHP
Hello,
Using PHP on Linux, I can just use the is_link() function to detect whether a given file is a symbolic link. However, is there a way to detect if a given file is the targe …
2
votes
1answer
798 views
How to get/set logical directory path in python.
In python is it possible to get or set a logical directory (as opposed to an absolute one).
For example if I have:
/real/path/to/dir
and I have
/linked/path/to/dir
linked to …
5
votes
3answers
69 views
Is there a version of os.getcwd() that doesn’t dereference symlinks?
I have a Python script that I run from a symlinked directory, and I call os.getcwd() in it, expecting to get the symlinked path I ran it from. Instead it gives me the "real" path, …
1
vote
1answer
113 views
Commit symlink into subversion
I'm tring to commit a symlink into subversion, but I get this error when I try to add the actual symlink:
Can't replace 'path/to/symlink' with a
node of a differing type; the …
