rsuchowi
03-06-04, 05:50 AM
Installation for Windows made easier. Download Apache2Triad from sourceforge. Follow the instructions for installing. After successful installation, create a new database using the phpmyadmin function that was installed, ie <http://localhost/phpmyadmin>
Create a new database called dotproject
exit phpmyadmin
unzip dotproject files into C:\apache2triad\htdocs
MAKE SURE YOU CHECK the "use folder names" checkbox
jump out to a command prompt in windows
assuming that you did not change anything from the default installation change to the following directory:
C:\apache2triad\mysql\bin
run the initial database population script. For the default install the string is:
mysql --user=root dotproject < C:\apache2triad\htdocs\dotproject\db\dotproject_10 2.sql
Copy the file dotproject/includes/config-dist.php to dotproject/includes/config.php and edit to suit your site. Make sure you set the correct database details. The following example shows the default username and password for apache2triad installation. Again make sure they are changed. Make sure the permissions on this file to read only after changes are made.
$dPconfig['dbtype'] = "mysql"; // ONLY MySQL is supported at present
$dPconfig['dbhost'] = "localhost";
$dPconfig['dbname'] = "dotproject"; // Change to match your DotProject Database Name
$dPconfig['dbuser'] = "root"; // Change to match your MySQL Username default is root from the apache2triad installation MAKE SURE YOU CHANGE
$dPconfig['dbpass'] = "triadpass"; // Change to match your MySQL Password default is triadpass from the apache2triad installation MAKE SURE YOU CHANGE
$dPconfig['dbport'] = "3306"; // Change to match your Db Port or use the standard value of 3306 if string is empty
Poof. Up and running. The FAQ states that there are compatibility issues with apache2 however I have not run into anything goofy yet.
Please be advised that the default passwords need to be changed and that this example shows the use of the default passwords.
The php.ini file gets installed into:
c:\%windir%\
Still struggling with the e-mail setup however. If anyone knows the string needed to supply pop inth the php.ini file to pass a username and password to the SMTP server your assistance would be greatly appreciated.
Thanks.
Create a new database called dotproject
exit phpmyadmin
unzip dotproject files into C:\apache2triad\htdocs
MAKE SURE YOU CHECK the "use folder names" checkbox
jump out to a command prompt in windows
assuming that you did not change anything from the default installation change to the following directory:
C:\apache2triad\mysql\bin
run the initial database population script. For the default install the string is:
mysql --user=root dotproject < C:\apache2triad\htdocs\dotproject\db\dotproject_10 2.sql
Copy the file dotproject/includes/config-dist.php to dotproject/includes/config.php and edit to suit your site. Make sure you set the correct database details. The following example shows the default username and password for apache2triad installation. Again make sure they are changed. Make sure the permissions on this file to read only after changes are made.
$dPconfig['dbtype'] = "mysql"; // ONLY MySQL is supported at present
$dPconfig['dbhost'] = "localhost";
$dPconfig['dbname'] = "dotproject"; // Change to match your DotProject Database Name
$dPconfig['dbuser'] = "root"; // Change to match your MySQL Username default is root from the apache2triad installation MAKE SURE YOU CHANGE
$dPconfig['dbpass'] = "triadpass"; // Change to match your MySQL Password default is triadpass from the apache2triad installation MAKE SURE YOU CHANGE
$dPconfig['dbport'] = "3306"; // Change to match your Db Port or use the standard value of 3306 if string is empty
Poof. Up and running. The FAQ states that there are compatibility issues with apache2 however I have not run into anything goofy yet.
Please be advised that the default passwords need to be changed and that this example shows the use of the default passwords.
The php.ini file gets installed into:
c:\%windir%\
Still struggling with the e-mail setup however. If anyone knows the string needed to supply pop inth the php.ini file to pass a username and password to the SMTP server your assistance would be greatly appreciated.
Thanks.