Jump to content

⚠ Info: We are working on adding content to this platform.

✔ If you want to share your experience and be an active contributor to this Wiki platform, ✉ contact us

×

Cog: Difference between revisions

From Idiosymbolia
No edit summary
No edit summary
Line 21: Line 21:


==Actions==
==Actions==
* <code>?action=purge</code> - use at the end of the URL page to clear cache. Persistent and Object cache might take longer time
{| class="wikitable" style="width:100%;margin:10px auto 12px auto;"
|-
! Action
! Function
|-
| <code>?action=purge</code>
| Purges the server-side cache for a page. This forces the server to regenerate the page content from the database.
|-
| <code>?action=edit</code>
| Opens the page in edit mode, which is the same as clicking the "Edit" button.
|-
| <code>?action=history</code>
| Displays the page's revision history, showing a log of all changes made to the page over time.
|-
| <code>?action=info</code>
| Provides technical information about the page, such as its page ID and protection level.
|-
| <code>?action=watch</code>
| Adds the page to your watchlist. If you're logged in, you'll be notified of any changes.
|-
| <code>?action=unwatch</code>
| Removes the page from your watchlist.
|-
| <code>?action=delete</code>
| Used by administrators to delete a page.
|-
| <code>?action=protect</code>
| Used by administrators to protect a page from being edited by certain user groups.
|-
| <code>?action=render</code>
| Renders the page without any of the typical user interface elements (like sidebars and menus).
|-
| <code>?action=raw</code>
| Displays the page's source wikitext directly, useful for copying the code.
|-
| <code>?action=submit</code>
| Used to submit form data, often for creating new pages or editing existing ones programmatically.
|}

Revision as of 09:06, 10 August 2025

Entry points

Templates

Actions

Action Function
?action=purge Purges the server-side cache for a page. This forces the server to regenerate the page content from the database.
?action=edit Opens the page in edit mode, which is the same as clicking the "Edit" button.
?action=history Displays the page's revision history, showing a log of all changes made to the page over time.
?action=info Provides technical information about the page, such as its page ID and protection level.
?action=watch Adds the page to your watchlist. If you're logged in, you'll be notified of any changes.
?action=unwatch Removes the page from your watchlist.
?action=delete Used by administrators to delete a page.
?action=protect Used by administrators to protect a page from being edited by certain user groups.
?action=render Renders the page without any of the typical user interface elements (like sidebars and menus).
?action=raw Displays the page's source wikitext directly, useful for copying the code.
?action=submit Used to submit form data, often for creating new pages or editing existing ones programmatically.