Main public logs

From 20R1

Combined display of all available logs of 20R1. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 22:41, 1 April 2026 Alex talk contribs created page PHP code to pull the body of a webpage for including in an email (Created page with "= Example from Google, not yet tested. = <pre> <?php * * Fetches the body of a webpage and sends it as an HTML email. * Replace placeholders with your actual server details.: // 1. The Newsletter URL (using ?action=render for a clean Wiki output) $url = "https://yourwiki.com"; // 2. Fetch the content using cURL $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); $...")