Trabla: Install Textpattern 4.6.2 on Windows 7 localhost via XAMPP 7.0.23 - opensource php CMS
Textpattern CMS is completely free, open source software and it's built upon proven web technologies too. Furthermore, it doesn’t muddy your HTML with additional code dependencies or script libraries.
Textpattern has a powerful tag-based template language that’s easy to learn and provides a wealth of ways to structure a website and manipulate content.
Textpattern is open source under the GNU General Public License v2.0, and all development takes place on GitHub. User contributions are welcome (and indeed, are enthusiastically encouraged).
Textpattern CMS Official Site - https://textpattern.com/
Solving:
Watch on YouTube
SQL script to create database and database user for Textpattern CMS 4.6.2
CREATE DATABASE `textpattern`
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE USER 'textpattern-owner'@'localhost';
CREATE USER 'textpattern-owner'@'127.0.0.1';
CREATE USER 'textpattern-owner'@'::1';
SET PASSWORD FOR 'textpattern-owner'@'localhost' = PASSWORD('textpattern123$%');
SET PASSWORD FOR 'textpattern-owner'@'127.0.0.1' = PASSWORD('textpattern123$%');
SET PASSWORD FOR 'textpattern-owner'@'::1' = PASSWORD('textpattern123$%');
GRANT ALL PRIVILEGES ON `textpattern`.* TO 'textpattern-owner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON `textpattern`.* TO 'textpattern-owner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON `textpattern`.* TO 'textpattern-owner'@'::1' WITH GRANT OPTION;
No comments:
Post a Comment