pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

php-basercms: Remove MESSAGE



Module Name:	pkgsrc-wip
Committed By:	Atsushi Toyokura <asteria.at%gmail.com@localhost>
Pushed By:	steleto
Date:		Sat Jul 2 14:02:28 2022 +0900
Changeset:	a277c50eda3091e68ead52d1a405e1e681eedab7

Removed Files:
	php-basercms/MESSAGE

Log Message:
php-basercms: Remove MESSAGE

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=a277c50eda3091e68ead52d1a405e1e681eedab7

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 php-basercms/MESSAGE | 42 ------------------------------------------
 1 file changed, 42 deletions(-)

diffs:
diff --git a/php-basercms/MESSAGE b/php-basercms/MESSAGE
deleted file mode 100644
index 3ea31a7df1..0000000000
--- a/php-basercms/MESSAGE
+++ /dev/null
@@ -1,42 +0,0 @@
-===========================================================================
-$NetBSD: MESSAGE,v 1.3 2018/01/01 10:23:09 wiz Exp $
-
-To use baserCMS, you will need to perform the following steps.
-
-1. If you want to use with MySQL server, install databases/mysql55-*
-   and enable it, then create database.
-
-2. Create database for baserCMS.
-	# mysql -u root -p
-	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';
-
-2. Install apache httpd server, for example www/apache24 and www/ap-php.
-
-3. Be sure to have the following lines in ${PREFIX}/etc/httpd/httpd.conf
-
-	Alias / ${PREFIX}/share/basercms/
-	<Directory "${PREFIX}/share/basercms">
-		DirectoryIndex index.php
-		AllowOverride All
-		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=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=pdo_pgsql.so ;if you select PostgreSQL backend.
-
-5. Start apache httpd.
-
-6. Access http://localhost/ and setup with userID/password =
-   baser/baser-password for MySQL database.
-===========================================================================


Home | Main Index | Thread Index | Old Index