Install drupal on sourceforge.net ... TTLO

I recently had to install Drupal on Sourceforge. The docs on Sourceforge are a bit limitted (or I didn't find the right information). Fortunately there is a valuable "3rd party" tutorial available. But there are some things he left out. So I want to fill the gaps ...

To bring the drupal software to the project's web space one should use his ssh shell login and the scp command.

# scp drupal-5.2.tar.gz \
  sf:/home/groups/m/my/myprj/htdocs/

(sf is an alias for shell.sourceforge.net)

To ease the things a little bit I prepared the drupal tar ball and populated the sites/ directory, prepared the settings.php and included the theme and some modules.

Now it's time to login to shell.sourceforge.net and untar the drupal dist. I put all the files into the root htdocs/ folder and removed the drupal/ folder.

The files/ and tmp/ folder for drupal need to be created by hand!

# mkdir /tmp/persistent/myprj/files
# mkdir /tmp/persistent/myprj/tmp
# chmod 0777 mkdir /tmp/persistent/myprj/files
# chmod 0777 mkdir /tmp/persistent/myprj/tmp

Reminding all the information from the original tutorial and the hints described here it's really simple to install drupal in this environment.

Now we can continue writing the software! ;-)

PS: TTLO was a firefox 0.x plugin called "Things they left out" ...

You just told us how to create two world writable dirs. What I want to know is how you actually tell Drupal to use those dirs? That’s the hard part and no site seems to have the answer.

That’s fairly easy: Go to "admin/settings/file-system" at your drupal installation and insert both paths into the text fields. Done. :)

D.
--
Always borrow money from a pessimist; he doesn't expect to be paid back.

Did you get clean URLs working?

I stopped this experiment soon after my blog post. Sourceforge is that slow and it’s an IMHO (technically!) unpleasant place to host a drupal site. We bought a domain (http://obfuscate4e.org) and managed a multisite install to deploy the project website on our company website host.

D.
--
Always borrow money from a pessimist; he doesn't expect to be paid back.