Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 62677 Details for
Bug 97649
www-apps/drupal is affected by XML_RPC PHP flaw (CAN-2005-1921)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
files/postinstall-en-4.6.txt
postinstall-en-4.6.txt (text/plain), 2.66 KB, created by
Jose Luis Rivero (yoswink) (RETIRED)
on 2005-07-05 08:26:37 UTC
(
hide
)
Description:
files/postinstall-en-4.6.txt
Filename:
MIME Type:
Creator:
Jose Luis Rivero (yoswink) (RETIRED)
Created:
2005-07-05 08:26:37 UTC
Size:
2.66 KB
patch
obsolete
>To complete installation you need to perform the following steps: > > 1) Create drupal database > 2) Load drupal database scheme > 3) Configure drupal base options > 4) Add drupal entry to cron > >1 - Creating drupal database > > These instructions are for MySQL. If you are using another database, > check the database documentation. In the following examples, > "dba_user" is an example MySQL user which has the CREATE and GRANT > privileges. You will need to use the appropriate user name for your > system. > > First, you must create a new database for your Drupal site: > > $ mysqladmin -u dba_user -p create drupal > > MySQL will prompt for the dba_user database password and then create > the initial database files. Next you must login and set the access > database rights: > > $ mysql -u dba_user -p > > Again, you will be asked for the dba_user database password. At the > MySQL prompt, enter following command: > > GRANT ALL PRIVILEGES ON drupal.* > TO nobody@localhost IDENTIFIED BY 'password'; > > where > > 'drupal' is the name of your database > 'nobody@localhost' is the userid of your webserver MySQL account > 'password' is the password required to log in as the MySQL user > > If successful, MySQL will reply with > > Query OK, 0 rows affected > > to activate the new permissions you must enter the command > > flush privileges; > > and then enter '\q' to exit MySQL. > > >2 - Load the drupal database scheme > > Once you have a database, you must load the required tables: > > $ mysql -u nobody -p drupal < database/database.mysql > > >3 - Configure drupal base options > > Drupal server options are specified in 'sites/default/settings.php'. > > Before you can run Drupal, you must set the database URL and the > base URL to the web site. Open the configuration file and edit the > $db_url line to match the database defined in the previous steps: > > $db_url = "mysql://username:password@localhost/drupal"; > > where 'username', 'password' and 'localhost' are the > username, password and host name for your set up. > > Set $base_url to match the address to your web site: > > $base_url = "http://www.example.com"; > > >4 - Add drupal entry to cron > > Many Drupal modules have periodic tasks that must be triggered by a > cron job. To activate these tasks, you must call the cron page; > this will pass control to the modules and the modules will decide > if and what they must do. > > The following example crontab line will activate the cron script > on the hour: > > 0 * * * * wget -O - -q http://${VHOST_HOSTNAME}/cron.php > > >The above information is a precis of the information in the drupal >INSTALL file more information can be found there!
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 97649
:
62676
| 62677