How do I checkout drupal in main public_html ?
sire - November 5, 2005 - 17:52
How do I checkout drupal in main virtual document directory public_html instead of in 'drupal' subdirectory ?
How do I checkout drupal in main virtual document directory public_html instead of in 'drupal' subdirectory ?
Just move the directories and files
I am guessing currently you have it installed under public_html/drupal. You can just move all the directories and folders from drupal to public_html. Remember to reset the base_url in settings.php to reflect the new location.
Sorry.. I wasn't clear with
Sorry.. I wasn't clear with my original post. :(
What I meant was CVS checkout of Drupal. I want to use CVS checkout to update my drupal installs whenever a new stable release is ready. I've been reading up on it, but haven't found a way to checkout to a destination directory. It creates a 'drupal' subdirectory each time.
cvs -d ":pserver:anonymous@cvs.drupal.org:/cvs/drupal" checkout
Please see
`cvs --help`
and `cvs --help export`
cvs -d ":pserver:anonymous@cvs.drupal.org:/cvs/drupal" checkout -d drupal_cvs drupal
'checkout -d drupal_cvs' provides the alternate destination directory (drupal_cvs).
Thank you.This will help me
Thank you. This will help me tremendously.
Is there a CVS Tag or Branch that Drupal uses, that always contains the latest stable release ? I see CVS MAIN and CVS HEAD. I am not sure whether CVS MAIN is what I want or not.
cvs checkout -r <tag>
Using the example above, for Drupal 4.6.x:
cvs -d ":pserver:anonymous@cvs.drupal.org:/cvs/drupal" checkout -r DRUPAL-4-6 -d drupal-4.6 drupal
Drupal 4.7's tag will probably be DRUPAL-4-7
username and password
what is the username and password to access it.
I'm using a CVS checkout gui and its asking for username and password.
what is :pserver anyway
authentication
:pserver is the authentication method.
With the above, I kept getting
cvs checkout: authorization failed: server cvs.drupal.org rejected access to /cvs/drupal for user anonymouscvs checkout: used empty password; try "cvs login" with a real password
So I tried this (note the extra anonymous)
cvs -d ":pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal" checkout -r DRUPAL-4-7 drupaland it worked.