Zenphoto notes

From Noah.org
Revision as of 06:34, 31 January 2009 by Root (talk | contribs)
Jump to navigationJump to search


vim /etc/php5/apache2/php.ini

[PHP]
short_open_tag = Off
max_execution_time = 120 
memory_limit = 128M
upload_max_filesize = 100M
post_max_size = 100M
magic_quotes_gpc = Off
[mbstring]
mbstring.internal_encoding = UTF-8

mysql -u root -p

mysql> create database zenphoto;
Query OK, 1 row affected (0.03 sec)

mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> GRANT ALL ON zenphoto.* to zpadmin@localhost IDENTIFIED BY 'PASSWORD';
Query OK, 0 rows affected (0.13 sec)

vim /var/www/zenphoto/zp-core/zp-config.php

$conf['mysql_user'] = 'zpadmin';
$conf['mysql_pass'] = 'mezuri02';
$conf['mysql_host'] = 'localhost'; // Won't need to change this 90% of the time.
$conf['mysql_database'] = 'zenphoto';

Set proper ownership (you may want to add yourself to the www-data group).

chown -R www-data:www-data /var/www/zenphoto