Gossamer Forum
Home : Products : Gossamer Links : Discussions :

2 LSQL installed on the same templates

Quote Reply
2 LSQL installed on the same templates
Hi

Can we have 2 LSQL installed (a gallery image one and a link directory one) working on the same templates...



thanks
Quote Reply
Re: [fmp] 2 LSQL installed on the same templates In reply to
Hi,

You could always use sym links to make this happen:

ln -s /path/to/links1/admin/templates/default /path/to/links2/admin/templates/default

would make links2/admin/templates/default linked to links1.

Cheers,

Alex
--
Gossamer Threads Inc.
Quote Reply
Re: [Alex] 2 LSQL installed on the same templates In reply to
hi

by "sym links" do you mean "virtual directory" (sorry for my english I am french) because I can't do it on my server

I can change manually but : Where do i specify the path to the templates directory




Thanks

Olivier
Quote Reply
Re: [fmp] 2 LSQL installed on the same templates In reply to
Hi

This will work if you are running Apache

Basically, it's a filename that has associated with it a string rather than the contents of a file. This string is the name of another file to which the symlink points. If you try to read the symlink, you see the file-to-which-is-pointed-by-the-string. You can make symlinks to anything that is in a UNIX filesystem, including regular files and directories.

You create symbolic links with the command ln -s linktext linkname

-- replacing "linktext" with the file you'd like the link to point to, and "linkname" with the name of the link you're creating.

Dregs2