New pages

Jump to navigation Jump to search
New pages
Hide registered users | Hide bots | Hide redirects

21 February 2026

  • 14:0314:03, 21 February 2026 Upgrading pagedjs (hist | edit) [2,873 bytes] Simoon (talk | contribs) (Created page with "Up until today (February 21st, 2026), the version of pagedjs that Octomode depends on is 0.1.43. From today, we will upgrade the version to the latest stable version, 0.4.3. Octomode depends on two files that should be changed with the upgrade. * /opt/octomode/static/pagedjs.polyfill.js (v0.1.43) * /opt/octomode/static/pagedjs.css (v0.2.0) These should be upgraded to * /opt/octomode/static/pagedjs.polyfill.js (v0.4.3) * /opt/octomode/static/interface.css (v0.4) Th...")

26 January 2026

14 January 2026

  • 15:1915:19, 14 January 2026 Wiki-to-print/Installation log/Servpub (hist | edit) [55,717 bytes] Manetta (talk | contribs) (Created page with "<pre> Install day 13 Dec 2023 https://git.vvvvvvaria.org/varia/wiki-to-print https://cc.vvvvvvaria.org/wiki/Running_wiki-to-print_on_the_server https://github.com/hackersanddesigners/wiki2print requirements - mediawiki - localsettings: https://git.vvvvvvaria.org/varia/wiki-to-print/src/branch/master/wiki-to-print.LocalSettings.php.example - common.css: https://git.vvvvvvaria.org/varia/wiki-to-print/src/branch/master/wiki-to-print.Common.css.example - com...")
  • 14:1014:10, 14 January 2026 How to install wiki-to-print? (hist | edit) [4,736 bytes] Manetta (talk | contribs) (Created page with " ==To install wiki-to-print== # <code>make setup</code>: make a virtual environment and install all the requirements # edit <code>config.json</code>: to configure the Flask application # run the Flask application ## on your computer: <code>make local</code> ## on a server: <code>make server</code> (it uses Gunicorn, as we work with a subdirectory in the wiki-to-print URL on CC, with https://cc.vvvvvvaria.org/wiki-to-print/ as the root of the Flask application) # add a p...")
  • 14:0414:04, 14 January 2026 Server move (hist | edit) [5,547 bytes] Manetta (talk | contribs) (Created page with " ==Server migration== Notes here: Services on CC * migrate etherpad ** ✅ install etherpad (<code>/opt/etherpad/</code>) ** ✅ configure nginx ** ✅ set etherpad up as a systemd background process ** ✅ test migration of database ** migrate the database * ✅ install mediawiki (<code>/var/www/wiki/</code>, version 1.45) ** ✅ configure nginx ** ✅ install php + php-fpm + mariadb ** ✅ migrate the extensions ** ✅ <del>re-download all extensions</del> not n...") originally created as "Server migration"

17 December 2025

  • 15:3215:32, 17 December 2025 MySQL (hist | edit) [754 bytes] Manetta (talk | contribs) (Created page with " Login $ mariadb -u USERNAME -p Create user CREATE USER 'wiki'@'localhost' IDENTIFIED BY 'wikipassword'; Permissions GRANT ALL ON *.* TO 'user'@'localhost' WITH GRANT OPTION; Check permissions SHOW GRANTS FOR 'user'@'localhost'; Create database CREATE DATABASE database_name; Delete database DROP DATABASE database_name; Inspect database use DATABASE show tables; desc TABLE; (displays the properties of the table) show keys from TABLE; dump sql f...")

11 December 2025

  • 21:2621:26, 11 December 2025 Migrate Mediawiki (hist | edit) [3,725 bytes] Manetta (talk | contribs) (Created page with " sudo su apt install mariadb-server mysql CREATE USER 'wiki'@'localhost' IDENTIFIED BY 'INSERTPASSWORDHERE'; CREATE DATABASE wikidb; GRANT ALL PRIVILEGES ON wikidb.* TO 'wiki'@'localhost'; FLUSH PRIVILEGES; EXIT; apt install php php-fpm php-mysql php-xml php-intl php-mbstring php-gd php-curl chown -R www-data:www-data /opt/wiki/ chmod -R 755 /opt/wiki/ Left the installation at: * /opt/wiki/ is configured, and the nginx alias works * php is not worki...") originally created as "Install Mediawiki"

3 December 2025

  • 14:1514:15, 3 December 2025 Making HTML snapshots of Cobbled Pads for OSP (hist | edit) [812 bytes] Manetta (talk | contribs) (Created page with "<syntaxhighlight lang="bash"> # how to use this script? # bash ./getcobbledpad.sh padname PADID="cobbled-pad-$1" APIKEY="aabac91dd54ef9e36aa7fc6e015556017ceb6b8398024cadff840ed69110a8c9" echo "Getting the latest revision of: $PADID" LATEST=$(curl -s "https://cc.practices.tools/pad/api/1.2.15/getRevisionsCount?apikey=$APIKEY&padID=$PADID" | jq -r ".data.revisions") echo "This pad has this amount of revisions: $LATEST" echo "Downloading the content of: $PADID" curl -s "...")