Update to 3.0.6.1
* Improve MESSAGE. * Add php-json dependency. Changelog: Many bugfixes and improvements. See lib/Baser/VERSION.txt (written in Japanese).
This commit is contained in:
parent
d7d1a4f341
commit
85a135f6f3
4 changed files with 1827 additions and 1415 deletions
|
@ -1,5 +1,5 @@
|
|||
===========================================================================
|
||||
$NetBSD: MESSAGE,v 1.1 2013/11/22 14:35:56 ryoon Exp $
|
||||
$NetBSD: MESSAGE,v 1.2 2014/11/29 12:26:16 ryoon Exp $
|
||||
|
||||
To use baserCMS, you will need to perform the following steps.
|
||||
|
||||
|
@ -8,35 +8,35 @@ To use baserCMS, you will need to perform the following steps.
|
|||
|
||||
2. Create database for baserCMS.
|
||||
# mysql -u root -p
|
||||
mysql> grant all on *.* to baser@localhost IDENTIFIED BY 'baser-password';
|
||||
mysql> grant all on *.* to baser@localhost identified by 'baser-password';
|
||||
mysql> create database basercms character set utf8 ;
|
||||
mysql> GRANT ALL PRIVILEGES ON basercms.* TO baser@localhost IDENTIFIED BY 'baser-password';
|
||||
mysql> grant all privileges on basercms.* to baser@localhost identified by 'baser-password';
|
||||
|
||||
2. Install apache httpd server, for example www/apache24 and www/ap-php.
|
||||
2. Install apache httpd server, for example www/apache22 and www/ap-php.
|
||||
|
||||
3. Be sure to have the following lines in ${PREFIX}/etc/httpd/httpd.conf
|
||||
|
||||
Alias / ${PREFIX}/share/basercms
|
||||
Alias / ${PREFIX}/share/basercms/
|
||||
<Directory "${PREFIX}/share/basercms">
|
||||
DirectoryIndex index.php
|
||||
Options All
|
||||
Allow from All
|
||||
AllowOverride All
|
||||
Require all granted
|
||||
Order allow,deny
|
||||
Allow from All
|
||||
</Directory>
|
||||
|
||||
4. Be sure to have the following lines in ${PREFIX}/etc/php.ini.
|
||||
|
||||
extension=gd.so
|
||||
extension=json.so
|
||||
extension=mbstring.so
|
||||
|
||||
extension=mysql.so ;if you select MySQL backend.
|
||||
extension=pdo.so ;if you select sqlite backend.
|
||||
extension=pdo.so ;if you select sqlite or mysql backend.
|
||||
extension=pdo_mysql.so ;if you select MySQL backend.
|
||||
extension=pdo_sqlite.so ;if you select sqlite backend.
|
||||
extension=pgsql.so ;if you select PostgreSQL backend.
|
||||
extension=pdo_pgsql.so ;if you select PostgreSQL backend.
|
||||
|
||||
5. Start apache httpd.
|
||||
|
||||
6. Access http://localhost/ and setup with userID/password =
|
||||
baser/paser-password for MySQL database.
|
||||
baser/baser-password for MySQL database.
|
||||
===========================================================================
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
# $NetBSD: Makefile,v 1.1 2013/11/22 14:35:56 ryoon Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2014/11/29 12:26:16 ryoon Exp $
|
||||
|
||||
DISTNAME= basercms-2.1.2
|
||||
BASERVER= 3.0.6.1
|
||||
DISTNAME= basercms-${BASERVER}
|
||||
PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME}
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= -http://basercms.net/packages/download/basercms/2.1.2
|
||||
MASTER_SITES= -http://basercms.net/packages/download/basercms/${BASERVER}
|
||||
EXTRACT_SUFX= .zip
|
||||
|
||||
MAINTAINER= ryoon@NetBSD.org
|
||||
|
@ -21,8 +22,8 @@ USE_TOOLS+= pax
|
|||
|
||||
NO_BUILD= yes
|
||||
|
||||
CHECK_INTERPRETER_SKIP+= share/basercms/cake/console/cake.php
|
||||
CHECK_INTERPRETER_SKIP+= share/basercms/cake/console/cake
|
||||
CHECK_INTERPRETER_SKIP+= share/basercms/app/Console/*
|
||||
CHECK_INTERPRETER_SKIP+= share/basercms/lib/Cake/Console/*
|
||||
|
||||
BC_DIR= share/basercms
|
||||
INSTALLATION_DIRS+= ${BC_DIR}
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1 2013/11/22 14:35:56 ryoon Exp $
|
||||
$NetBSD: distinfo,v 1.2 2014/11/29 12:26:16 ryoon Exp $
|
||||
|
||||
SHA1 (basercms-2.1.2.zip) = 5a4e9345eec787486e0978705b4be45a45a6794f
|
||||
RMD160 (basercms-2.1.2.zip) = 277225b4eba97cc3fb337d278c5650192964d684
|
||||
Size (basercms-2.1.2.zip) = 5901937 bytes
|
||||
SHA1 (basercms-3.0.6.1.zip) = 89ad55f1abcbd0e7a3f69a1e5d9a0d80366e771d
|
||||
RMD160 (basercms-3.0.6.1.zip) = edaa35ff77e21ca7df68b0640d3c5a242f978319
|
||||
Size (basercms-3.0.6.1.zip) = 12822051 bytes
|
||||
|
|
Loading…
Reference in a new issue