Extract Achive
Extract the compressed archive using any decompression tool to the root of your web directory or the directory you wish to run out of.
tar -xf latest.tar.gz
mv pp_clean/* /var/www/html/mywebroot
Setup File Permissions
PowerPortal needs to be able to write to the cache directory and all the folders inside. Chmod the following directories...
chmod 777 /modules/autogenerated
chmod 777 /js
chmod 777 /cache/fragment
chmod 777 /cache/template/
chmod 777 /cache/images
chmod 777 /images/gallery # necessary if you are going to use the gallery administration module to manage your image gallery instead of uploading the files directly through ftp.
Database Setup & Creation
Create a mysql database for powerportal and execute the queries in install.sql.
Setup Configuration File
Change the database credentials in /config/default/config.php. Below is an example configuration file.
Warning: Do not change the secret salt until after you have logged into the super administrator account.
$GLOBALS['config']['db_host'] = 'localhost';
$GLOBALS['config']['db_username'] = 'root';
$GLOBALS['config']['db_password'] = ''pass;
$GLOBALS['config']['db_database'] = 'pp_database';
// Do _not_ change below this line.
$GLOBALS['config']['salt'] = 'thisisasecretsalt';
$GLOBALS['config']['display_errors'] = true;
$GLOBALS['config']['authentication_method'] = 'DatabaseAuthenticator';
ini_set('display_errors', 'On');
?>
You're done!
Now all thats left is to manage and setup your website through the admincp. This can be done by going to the site main page and clicking the admincp link. The default super administrator account credentials are...
Username: admin
Password: pass
If you have any questions or need any help don't hesitate to contact us for immediate assistance at john2496@gmail.com.
Extract the compressed archive using any decompression tool to the root of your web directory or the directory you wish to run out of.
tar -xf latest.tar.gz
mv pp_clean/* /var/www/html/mywebroot
Setup File Permissions
PowerPortal needs to be able to write to the cache directory and all the folders inside. Chmod the following directories...
chmod 777 /modules/autogenerated
chmod 777 /js
chmod 777 /cache/fragment
chmod 777 /cache/template/
chmod 777 /cache/images
chmod 777 /images/gallery # necessary if you are going to use the gallery administration module to manage your image gallery instead of uploading the files directly through ftp.
Database Setup & Creation
Create a mysql database for powerportal and execute the queries in install.sql.
Setup Configuration File
Change the database credentials in /config/default/config.php. Below is an example configuration file.
Warning: Do not change the secret salt until after you have logged into the super administrator account.
$GLOBALS['config']['db_host'] = 'localhost';
$GLOBALS['config']['db_username'] = 'root';
$GLOBALS['config']['db_password'] = ''pass;
$GLOBALS['config']['db_database'] = 'pp_database';
// Do _not_ change below this line.
$GLOBALS['config']['salt'] = 'thisisasecretsalt';
$GLOBALS['config']['display_errors'] = true;
$GLOBALS['config']['authentication_method'] = 'DatabaseAuthenticator';
ini_set('display_errors', 'On');
?>
You're done!
Now all thats left is to manage and setup your website through the admincp. This can be done by going to the site main page and clicking the admincp link. The default super administrator account credentials are...
Username: admin
Password: pass
If you have any questions or need any help don't hesitate to contact us for immediate assistance at john2496@gmail.com.








