<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Khalid Baheyeldin wrote:
<blockquote
 cite="mid:4a9fdc630712091631g587e0058k65292caffbebb168@mail.gmail.com"
 type="cite"><br>
  <br>
  <div class="gmail_quote">On Dec 9, 2007 12:15 PM, Khalid Baheyeldin
&lt;<a moz-do-not-send="true" href="mailto:kb@2bits.com">kb@2bits.com</a>&gt;
wrote:<br>
  <blockquote class="gmail_quote"
 style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
    <div class="Ih2E3d">On Dec 9, 2007 11:33 AM, Susan Stewart &lt;<a
 moz-do-not-send="true" href="mailto:HedgeMage@binaryredneck.net"
 target="_blank">HedgeMage@binaryredneck.net</a>&gt; wrote:<br>
    </div>
    <div class="gmail_quote">
    <div class="Ih2E3d">
    <blockquote class="gmail_quote"
 style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
      <div>Khalid Baheyeldin wrote:<br>
&gt;<br>
&gt;<br>
&gt; On 09 Dec 2007, at 6:30 AM, Larry Garfield wrote:<br>
&gt;<br>
&gt;&gt; Emphasis on the "properly". :-) &nbsp;I had been going with the<br>
&gt;&gt; conventional wisdom of sites/&lt;site&gt;/files, but when I
went to merge
      <br>
&gt;&gt; &nbsp;two sites into a multi-site to deploy them realized that
wouldn't<br>
&gt;&gt; work; the path that is stored into the files table is then
bound to<br>
&gt;&gt; &nbsp;the domain the site is on, which is no good because the
domain
      <br>
&gt;&gt; changes from staging to production. &nbsp;So if we document<br>
&gt;&gt; sites/default/files for single-site installs, we need to in the<br>
&gt;&gt; same breath document to *not* use the sites/ directory for<br>
&gt;&gt; multi-site installs unless you want to make moving to a new
server
      <br>
&gt;&gt; to be a PITA.<br>
&gt;<br>
&gt; Perhaps a decoupling of the paths from the domain is in order.<br>
&gt;<br>
&gt; There is a way to do it today with symlinks: under "sites/" we have<br>
&gt; s1, s2, s3, ...etc. One directory per site. Then files would be
      <br>
&gt; "sites/s1/files". A symbolic link then makes s1 be <a
 moz-do-not-send="true" href="http://site1.example.com" target="_blank">site1.example.com</a><br>
      </div>
&gt; &lt;<a moz-do-not-send="true" href="http://site1.example.com"
 target="_blank">http://site1.example.com
      </a>&gt;, and s2 <a moz-do-not-send="true"
 href="http://www.example.com" target="_blank">www.example.com</a><br>
&gt; &lt;<a moz-do-not-send="true" href="http://www.example.com"
 target="_blank">http://www.example.com</a>&gt; and s3 is <a
 moz-do-not-send="true" href="http://example3.com" target="_blank">
example3.com</a><br>
&gt; &lt;<a moz-do-not-send="true" href="http://example3.com"
 target="_blank">http://example3.com</a>&gt;, ...etc.<br>
      <br>
My sites/ folder on my multisite installs is cluttered enough, thanks.<br>
Also, if I want to make changes to a site, I would have to first figure
      <br>
out what directory the symlink points to -- an unnecessary step that<br>
would definitely slow down my workflow.<br>
    </blockquote>
    </div>
    <div><br>
Symlinks is just what works today, and acceptable for installations with<br>
not too many sites. Granted, you get the bramble bush that comes with
it
    <br>
and that can be unwieldy.<br>
    <br>
Perhaps the indirection should be formalized in a different way, with a
    <br>
map of some sort (domain -&gt; directory), either in a master file
under <br>
sites, or in the database (slow).
    <br>
    <br>
map.conf<br>
&lt;?php<br>
    <br>
$map = array(<br>
&nbsp; // Site domain/subdomain =&gt; site ID and<br>
&nbsp; '<a moz-do-not-send="true" href="http://example.com" target="_blank">example.com</a>'
=&gt; 'site1',<br>
&nbsp; '<a moz-do-not-send="true" href="http://example2.com" target="_blank">
example2.com</a>' =&gt; 'site3',<br>
&nbsp; '<a moz-do-not-send="true" href="http://example7.com" target="_blank">example7.com</a>'
=&gt; 'mydir5',<br>
&nbsp; '<a moz-do-not-send="true" href="http://site3.example.com"
 target="_blank">site3.example.com</a>' =&gt; 'otherdir2',<br>
);<br>
    <br>
Once a site gets an ID/Dir, this does not change at all for the
lifetime <br>
of the site. Domains/Subdomains can be changed at will, such as when<br>
moving a site from test to live, or from multisite to standalone,
...etc.
    </div>
    </div>
  </blockquote>
  <div>&nbsp;<br>
The above indirection scheme will solve another thing: 404s for
externally<br>
visible paths. Using a unique site id for a directory will prevent
external 404s<br>
from happening if you move the site to another domain.
  <br>
  </div>
  </div>
</blockquote>
Just what I was thinking:<br>
<br>
<a class="moz-txt-link-freetext" href="http://drupal.org/node/98824#comment-648260">http://drupal.org/node/98824#comment-648260</a><br>
<br>
No symlink clutter, no need for CLI access.<br>
<br>
Now, would it be possible to somehow manage this file through Drupal
(perhaps just as install.php does with settings.php)?<br>
<br>
Gaele<br>
<br>
</body>
</html>