Changeset 3235960
- Timestamp:
- 02/06/2025 11:19:38 AM (13 months ago)
- Location:
- iteras/trunk
- Files:
-
- 1 added
- 1 edited
-
DEVELOPMENT.txt (modified) (3 diffs)
-
start-mysql-dev.sh (added)
Legend:
- Unmodified
- Added
- Removed
-
iteras/trunk/DEVELOPMENT.txt
r2879152 r3235960 2 2 3 3 == Setting up a fresh Wordpress == 4 5 For SQLite: 4 6 5 7 Download and setup latest Wordpress and SQLite plugin: … … 9 11 cd wordpress/wp-content/plugins/ && git clone https://github.com/aaemnnosttv/wp-sqlite-db.git && cp wp-sqlite-db/src/db.php ../ && cd ../../../ 10 12 13 For MysQL: 14 15 wget https://wordpress.org/latest.tar.gz && tar zxf latest.tar.gz && rm latest.tar.gz && sed -e 's/database_name_here/wordpress_db/g' -e "s@localhost@localhost:${PWD}/testdb/mysql.sock@g" -e "s/'WP_DEBUG', false/'WP_DEBUG', true/" < wordpress/wp-config-sample.php > wordpress/wp-config.php 16 17 ./start-mysql-dev.sh 18 11 19 Enable debugging in wp-config.php, the debug log is available in wp-content/debug.log: 12 20 … … 15 23 define( 'WP_DEBUG_DISPLAY', false ); // only log to file 16 24 17 Symlink the Iteras plugin :25 Symlink the Iteras plugin (remember to activate the plugin in Wordpress admin): 18 26 19 27 cd wordpress/wp-content/plugins && ln -s ../../../ iteras
Note: See TracChangeset
for help on using the changeset viewer.