MAGAZÍN D'INVESTIGACIÓ PERIODÍSTICA (iniciat el 1960 com AUCA satírica.. per M.Capdevila a classe de F.E.N.)
-VINCIT OMNIA VERITAS -
VOLTAIRE: "El temps fa justícia i posa a cadascú al seu lloc.."- "No aniràs mai a dormir..sense ampliar el teu magí"
"La història l'escriu qui guanya".. així.. "El poble que no coneix la seva història... es veurà obligat a repetir-la.."
| 25-08-2026 (9 lectures) | Categoria: Articles |
https://share.gemini.google/DSWYY6XroBe1
Creado con Flash-Lite 24 de agosto de 2026 a las 13:11Publicada el 24 de agosto de 2026 a las 13:12
To activate the standard built-in wikitext editing toolbar (WikiEditor) in MediaWiki, append this line to the bottom of your LocalSettings.php file:
PHP
wfLoadExtension( 'WikiEditor' );
To enable the toolbar for all users by default, add these lines right below it:
PHP
$wgDefaultUserOptions['usebetatoolbar'] = 1;
$wgDefaultUserOptions['usebetatoolbar-cws'] = 1;
Save the file and refresh your wiki page to see the updated toolbar.
https://share.gemini.google/tVIfEC32O1yT
Creado con Flash-Lite 24 de agosto de 2026 a las 13:04Publicada el 24 de agosto de 2026 a las 13:05
Specify the platform name, as activation steps vary. Generally, look for account verification, creator program settings, or role permissions in your site dashboard.
Edit the LocalSettings.php file in your installation directory.
LocalSettings.php.$wgEnableUploads = true;images folder on your server has write permissions (e.g., chmod 755 or 777 depending on your host).https://share.gemini.google/hGQl3YDsxXkj
Creado con Flash-Lite 24 de agosto de 2026 a las 13:49Publicada el 24 de agosto de 2026 a las 13:51
To access image files directly from Wikimedia Commons without downloading them, use the Special:FilePath tool.
Structure your URL like this: [https://commons.wikimedia.org/wiki/Special:FilePath/IMAGE_NAME.jpg](https://commons.wikimedia.org/wiki/Special:FilePath/IMAGE_NAME.jpg)
Replace IMAGE_NAME.jpg with the exact file name on Wikimedia. To get a scaled version, add a width parameter to the end: [https://commons.wikimedia.org/wiki/Special:FilePath/IMAGE_NAME.jpg?width=800](https://commons.wikimedia.org/wiki/Special:FilePath/IMAGE_NAME.jpg?width=800)
To display images hosted on external servers (like Blogspot or custom web servers) directly inside your private or custom MediaWiki instance, use the $wgAllowExternalImages setting.
Add this line to your LocalSettings.php file:
PHP
$wgAllowExternalImages = true;
Once enabled, insert the direct image URL directly into your wiki pages using wikitext:
[http://example.blogspot.com/path/to/image.jpg](http://example.blogspot.com/path/to/image.jpg)
Security Note: Enabling this allows any external image to load, which can expose user IP addresses to third-party servers. To restrict loads to specific trusted domains (like Blogspot), use
$wgAllowExternalImagesFrominstead:
PHP
$wgAllowExternalImagesFrom = [ 'https://*.blogspot.com/' ];
https://share.gemini.google/KXHX3ycYYbL4 Creado con Flash-Lite 24 de agosto de 2026 a las 23:00 Publicada el 24 de agosto de 2026 a las 23:01 Can you tell me the procedure that I have to follow to install the visual editor in a Wikimedia server?
To install VisualEditor on a MediaWiki server, follow these steps:
Download the Extension: Download the VisualEditor extension package matching your MediaWiki version and extract it into your MediaWiki extensions/ directory.
Enable in Configuration: Open LocalSettings.php in your root MediaWiki directory and add the following line at the end:
PHP wfLoadExtension( 'VisualEditor' ); Verify Parsoid: Modern MediaWiki versions (1.35+) come with the PHP-based Parsoid service bundled inside core, so no separate Node.js Parsoid server is needed.
Update Database (If prompted): Run the maintenance script from your terminal if required by your setup:
Bash php maintenance/run.php update
https://share.gemini.google/sVGVfHqeu0Na
Creado con Flash-Lite 24 de agosto de 2026 a las 13:32Publicada el 24 de agosto de 2026 a las 13:33
To modify global configurations or site-wide parameters as a Wikimedia administrator, access the internal interface pages directly through the wiki's standard search bar or URL structure.
Locating Interface Pages
MediaWiki:Common.css or MediaWiki:Common.js to modify the visual styling and universal scripts for all users.Special:AllMessages to view and edit UI text, system prompts, and configuration variables mapped to your wiki.[https://yourdomain.org/wiki/MediaWiki:PageName](https://yourdomain.org/wiki/MediaWiki:PageName) into your browser address bar (replacing PageName with the specific message or system page).Locating Server and Extension Parameters
Special:Version on your wiki to view active server configurations, installed extensions, and MediaWiki version details.La mayor铆a de los sitios web basados en el software de Wikipedia (MediaWiki) vienen por defecto configurados para verse como la versi贸n de escritorio, pero activar la versi贸n m贸vil adaptativa (responsive) es bastante sencillo.
Para lograr que tu wiki detecte autom谩ticamente los dispositivos m贸viles, adapte el dise帽o vertical y aumente el tama帽o de la letra, necesitas configurar la extensi贸n oficial MobileFrontend y utilizar la apariencia (skin) dise帽ada para m贸viles, que habitualmente es MinervaNeue.
Aqu铆 tienes los pasos clave sobre d贸nde y c贸mo tocarlo:
MediaWiki utiliza la extensi贸n MobileFrontend para gestionar la detecci贸n de dispositivos m贸viles.
/extensions/MobileFrontend./skins/MinervaNeue.(Si descargaste MediaWiki completo o un paquete LTS, es muy probable que ya las tengas en esas carpetas).
LocalSettings.phpAbre el archivo de configuraci贸n principal de tu servidor web, LocalSettings.php (ubicado en la ra铆z de tu instalaci贸n de MediaWiki), y a帽ade las siguientes l铆neas al final del archivo:
# Cargar el tema/skin para m贸viles wfLoadSkin( 'MinervaNeue' ); # Cargar la extensi贸n m贸vil wfLoadExtension( 'MobileFrontend' ); # Configurar MinervaNeue como la apariencia por defecto para m贸viles $wgMFDefaultSkin = 'minerva'; # Forzar o ajustar la detecci贸n m贸vil autom谩tica $wgMFAutodetectMobile = true;
Si una vez activada la versi贸n m贸vil quieres que la letra sea a煤n m谩s grande o ajustar detalles del dise帽o vertical:
MediaWiki:Mobile.css/* Aumentar el tama帽o de fuente general en m贸viles */
body {
font-size: 18px !important;
line-height: 1.6;
}
/* Ajustar el tama帽o de los t铆tulos de los art铆culos */
.firstHeading {
font-size: 1.8em !important;
}
Nota: En las versiones modernas de MediaWiki, el tema predeterminado de escritorio (Vector 2022) ya incluye ciertas caracter铆sticas responsive, pero activar MobileFrontend + MinervaNeue te garantizar谩 la experiencia id茅ntica a la aplicaci贸n/web m贸vil oficial de Wikipedia.