[02:32:18] [1/2] every time i click an image, it opens up the file page instead of the media viewer thingie [02:32:18] [2/2] did i enable/disable something by accident? the multimedia viewer extension is enabled, and its enabled in my preferences. [02:52:31] Write `[[File:Your image.png|link=]]` so MediaWiki doesn't make your image into a clickable link [03:28:24] [1/3] hello! i'd like to use this script https://dev.fandom.com/wiki/OggPlayer on my wiki, but i'm not sure how to go about importing it /changing the dependencies on fandom's dev wiki (?) i already imported the I18n-js gadget, and i /think/ its the mw.hooks at the bottom of the .js file that are confusing me most/i'm not sure what to change them to since i dont completely understand what [03:28:24] [2/3] they do. i don't really have coding experience so id appreciate any help 😭 🙏 [03:28:24] [3/3] it seems like people have asked before although it doesn't seem like it's been resolved or ported to miraheze yet? (i strongly prefer the look of this audio player over timedmediahandler, which is why id like to try and figure it out 😔 ) [03:31:49] [1/2] to clarify, by "importing the I18n-js gadget" do you mean the gadget on Miraheze Dev wiki? [03:31:50] [2/2] https://dev.miraheze.org/wiki/I18n-js [03:32:09] yeah!sorry for the confuision [03:36:25] I’d say you may just have better luck removing l18n than porting it [03:37:41] [1/20] As a general rule importing JS scripts from Fandom Dev wiki mean the following: [03:37:41] [2/20] 1) Removing `importArticles`. That's FANDOM platform only. [03:37:42] [3/20] 2) Importing I18n-js from MH Dev Wiki as a gadget. This is needed to load the messages from the internalization.json file. [03:37:42] [4/20] 3) Replacing this block of code: [03:37:42] [5/20] ```js [03:37:42] [6/20] mw.hook('dev.i18n').add(function(i18n) { [03:37:43] [7/20] i18n.loadMessages('OggPlayer').then(init); [03:37:43] [8/20] }); [03:37:43] [9/20] ``` [03:37:44] [10/20] With [03:37:44] [11/20] ```js [03:37:45] [12/20] mw.loader.using('ext.gadget.i18n-js', [03:37:45] [13/20] function () { [03:37:46] [14/20] window.dev.i18n.loadMessages('MediaWiki:Custom-OggPlayer/i18n.json', { apiEntrypoint: 'self' } ).done(init); [03:37:46] [15/20] }, [03:37:47] [16/20] function () { [03:37:47] [17/20] console.error('i18n-js not set'); [03:37:48] [18/20] } [03:37:48] [19/20] ); [03:37:49] [20/20] ``` [03:39:51] Love-hate relationship with the i18n-js Fandom script honestly. Like many of the Fandom Dev wiki scripts would work just fine if you remove `i18n.loadMessages()` and replace them with your own messages, but I feel like it's such a waste if the ported scripts wouldn't be able to make use of i18n. [03:40:38] And obviously `mw.message` is a thing [03:41:23] You should also make sure to import [MediaWiki:Custom-OggPlayer/i18n.json]() from Fandom Dev wiki into your wiki [03:42:23] The script i forker over on fandom still has remnants of i18n, but i never bothered to add the new messages to it lol [03:43:28] wait thank you so much for the help, I think I already did the 2nd thing (creating MediaWiki:Gadget-i18n-js.js right?) i didnt know about the importarticles so i just deleted it+replaced the code in question, and now the correct style shows up (rather than using the default ogg player) but the actual audio itself doesn't seem to play? 🤔 [03:43:50] it's why I ported i18n-js in the first place. so many scripts that depend on it. [03:44:16] mind sharing the wiki? [03:45:20] oh yeahsorry that woudl help huh https://aiyuverse.miraheze.org/wiki/MediaWiki:Common.js [03:45:47] ive been testing it on my user page https://aiyuverse.miraheze.org/wiki/User:Zunjue [03:47:50] you haven't enabled Extension:Gadgets on ManageWiki yet, so your wiki haven't loaded i18n-js as a gadget [03:48:00] ohh :ICANT: [03:50:53] also please change `window.dev.i18n.loadMessages('MediaWiki:Custom-OggPlayer/i18n.json', { apiEntrypoint: 'self' } )` to `window.dev.i18n.loadMessages('MediaWiki:Custom-OggPlayer', { apiEntrypoint: 'self' } )` [03:53:08] i just changed both things although the audio still doesnt seem to be playing? [04:01:48] [1/2] it shows this, even though if I put just [[File:]] for it the actual file exists/is fine 🤔 [04:01:48] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402139501853147176/image.png?ex=6892d3ab&is=6891822b&hm=24a5ad3a46fea03ba9cbaba3cf62516f93ecf955b59e62f529d1719e6ab0fb15& [04:27:25] [1/2] is this part disallowing usage of files that aren't from the specified domains? although trying to change it didnt seem to do anything [04:27:25] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402145947106148392/image.png?ex=6892d9ac&is=6891882c&hm=80effb314810ed9a503d756f5a954ec1821b3907a1dc482140b7667654546b5a& [04:43:03] it shouldn't [04:43:39] as far as I can see, what's needed by the script are all working correctly (i18n included), but the script isn't working as it should, [04:44:05] so I'm trying to see what's so different between the FANDOM & MH platforms that may be causing this issue [04:44:35] ahh i see, strange [04:44:45] ok wait, hold on, you might be right [04:44:59] thank you so much for your help btw 😭 i poked at it for a little but im realizing i would have had no hope at understanding it on my own lol [05:08:14] [1/2] @ccxtwf i think it does work now? i guess it was an issue with the regex and also the validation for wikia, but the thing is now the [[File:file.ogg]] format doesnt work and it needs lije a data src=" " + direct link to the file on wikitide to work.(you can see it on my user page still)but it does like. work lol (???) might be related to the difference between fandom and miraheze, i [05:08:15] [2/2] guess ..? [05:08:15] [05:11:05] what do i put in an infobox/styles.css to change the color of the text you type in? [05:15:29] 🤔 I'm digging into the example (LoL wiki) cited on the Fandom Dev wiki, and they're using a custom extension to render ``, so yes, I do suspect that the Fandom Dev wiki documentation is out-of-date. [05:19:21] Ah, I was looking at the LoL English wiki instead of the Polish wiki [05:19:55] ohh interesting?? if it helps i used to edit this wiki that also used it https://alchemystars.fandom.com/wiki/Vice/Dialogue although i dont remember installing any separate extensions [05:20:05] Polish LoL wiki was simply using `[[Media:{{{1}}}|►]]/span` [05:27:18] We should move this to a #support thread bcos this will take a while [05:28:14] oh shit yeah i cna make one, sorry for clogging general whoever reads this haha [05:41:42] [1/2] I made a 1-button audio player a while back (it can also take arbitrary form, though). Just haven't ported it to the dev wiki though I promised Rodejong I would do so... [05:41:42] [2/2] Example page: https://strinova.org/wiki/Michele/audio [05:49:09] Steward requests/Restricted changes is backlogged [05:49:24] @Stewards letting you know [05:53:14] [1/2] We work them when we can, all stewards have other obligations on and off platform. [05:53:14] [2/2] Usual time to complete is a week or less depending on urgency [05:55:59] ok [05:56:15] there's just a lot of requests there rn [07:23:59] I'll try to handle some later this week hopefully. Unfortunately I'm away for quite a few days [12:25:03] [1/2] how can you make media files appear on page like this? [12:25:03] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402266149827252284/bgEn5pr.png?ex=6893499e&is=6891f81e&hm=115e6b5e14f7e4505bc8828c6572ca98a026117053675f3d6c5bfa22607c7bd7& [12:25:28] my files are .ogg but only apepar as links to the file pages [12:30:24] enable the TimedMediaHandler extension [12:30:30] already done that [12:32:35] purge cache [12:32:46] yep still not working [12:32:50] unless I've made it wrong [12:59:50] I should be able to wipe out a good portion of the SR today [13:04:40] Link to wiki? [13:06:40] turns out it just needed time to work [13:26:59] Hello :) [13:27:12] Where can I find people that might be willing to help me out with learning Miraheze? [13:29:51] Uuuuh [13:29:53] Here [13:30:05] Just ask [13:30:23] I might recommend summarizing some of the chief questions as a thread in #support which would let multiple people reply to whichever are priority questions and flow from there [13:30:28] Yeah but I am a big newbie, I never really made a wiki. [13:30:42] I tried to use fandom but it feels extremely bloated and a friend recommened Miraheze [13:30:58] I got no experience though and things are a little complicated right now. [13:32:12] Do I have to put my questions in all at once? I would like to learn things one at a time honestly. I don't mind just using plain text on pages for now, just need to know how to link it all together. [13:32:21] Nah [13:32:38] You wanna know how to link pages? [13:32:47] it could start with a couple priority ones, no need for everything all in one go [13:33:02] but the logic is allowing people to filter in and tackle stuff, as opposed to waiting for someone to be fully available [13:33:03] We ain’t going anywhere [13:33:23] personally I'm knee deep in SR so not much more than snippets from me [13:34:12] Yessir [13:34:34] I got it don’t worry, and thanks for tackling that [13:34:41] Also, I've seen a bit of this css stuff... do I absolutely need that for a wiki? [13:34:47] Nah [13:34:54] That is good news. [13:34:55] CSS is for visual customization [13:35:04] Back when I managed a wiki, I avoided it as well [13:35:16] I kinda wanted to customize the UI [13:35:22] How far can I go with visuals, without messing with CSS? [13:35:24] But even now CSS scares me [13:35:32] Depends on the skin you use [13:35:40] Because right now, Miraheze is not that pretty and I would like to customize things if possible. [13:35:51] There’s a good amount of visual variation in skins [13:36:04] Citizen is a nice one [13:36:22] Cosmos I think has variables to customize colors without writing CSS [13:36:36] Are you using the pure text pages, or Visual Editor? [13:36:38] citizen is glitzed out by default [13:36:43] Can you give me some examples? The wiki that I am making is supposed to look similar to one on fandom. It has a background image with the UI being a dark red, semi-transparent overlay... well besides the text, images etc of course [13:36:48] cosmos does indeed allow customizing via managewiki [13:36:58] the one on fandom likely has custom css involved [13:37:11] If you want a similar format to FANDOM, Cosmos I think. Matching the customizations is harder [13:37:13] if you have a link pix can likely look into it [13:37:26] [[Special:Preferences]] has a list of skins you can preview [13:37:27] [13:37:28] [1/2] I only saw a few minutes ago that my request was accepted, however, I made a test page to mess around with everything first. [13:37:28] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402284371750424576/image.png?ex=68935a97&is=68920917&hm=32c713f7211dbec1bfda6bb7d5702efbf30235a1537934f503245bf485e44d89& [13:37:49] To an extent, someone forgot their laptop in a different place so I don’t have it this morning [13:37:58] ah [13:39:01] [1/2] Well, on visual editor you can use the 🔗 button. In source code format [13:39:02] [2/2] `[[Hellen Felor]]` would link to the article of that name [13:39:08] I tried some out [13:39:14] but they don't seem to affect the wiki rn [13:39:22] you have to switch to them in your user settings [13:39:23] How so [13:39:36] when you find one you prefer, you can set it in Special:ManageWiki/settings under the styling tab [13:39:37] The useskin should work with the preview button [13:39:49] that would work too [13:40:08] `[[Hellen Felor|James Smith]]` would link to the Hellen article, but the text the link would display is James Smith [13:40:20] [1/2] I typed this into the browser link, guess this is the one? [13:40:20] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402285093380427876/image.png?ex=68935b43&is=689209c3&hm=2a77b5f355fa1059a26a726b79cf6f2c41896c9826e0ed59f9cd44487cad1370& [13:40:31] found styling [13:41:09] [1/2] hm only these are available at the moment [13:41:09] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402285300503281816/image.png?ex=68935b74&is=689209f4&hm=32eed636c49bf51f21e25423b82a756432461b43a4fea8809c90a92f592e3bca& [13:41:48] You can enable more in Special:ManageWiki/extensions [13:42:08] This controls what’s available on the wiki, settings controls which is set as the default [13:42:11] something to remember is managewiki changes (and mediawiki namespace changes, like css) can be slow to apply [13:42:25] Sleepy wiki [13:42:27] though new skins enabled tend to be instant [13:42:33] Oh I should find that visual theme designer extension I was working on [13:42:42] :heart_bee: [13:42:42] which you can do at Special:ManageWiki/extensions under the skins tab [13:42:45] That would be dope [13:42:49] I [13:42:53] oh man remembering all of these... [13:42:58] Entirely forgot I also was working on one a long time ago [13:43:06] And will chose to continue to forget for me own sake [13:43:14] Eh [13:43:22] It gets worse [13:43:24] I think I had it pretty much production ready (in principle) but there were some problems with Cosmos because it uses less variables [13:43:39] There is also [[mw:Help:Contents]] [13:43:42] oh [13:43:51] Sleepy bot? [13:43:52] [13:43:52] Is the bot DEAD or is mw not the thing [13:44:11] Groggy morning [13:44:17] (mood) [13:44:44] is there a resource with all of these then? [13:44:52] im never not googling all of this stuff [13:45:06] All what, skins? [13:45:41] [1/2] I tried out cosmos, then this happened. [13:45:42] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402286444277399662/image.png?ex=68935c85&is=68920b05&hm=56aa8bb803a01aa6cb24b2f6d8fa3be7ceb55541fcb5f0f670d6eac8cb27179a& [13:45:44] i mean, there's mediawiki.org help [13:45:58] Any error lower down? [13:46:01] hmmm [13:46:04] links like: Special:Preferences [13:46:09] Maybe ill finish if there is genuine interest? [13:46:10] Oh [13:46:17] https://cdn.discordapp.com/attachments/407537962553966603/1402286591350673559/image.png?ex=68935ca8&is=68920b28&hm=5c60bf9fd77de97a46d0b57559d820a19f1bb9cf2f0bcacf77ccbec29380f5ac& [13:46:20] here [13:46:21] Well there’s [[Special:SpecialPages]] [13:46:33] You don’t need to learn everything [13:46:35] [[mw:Help:Preferences]] [13:46:36] [13:46:36] [13:46:45] Even I forget a lot of pages and tools that exist [13:47:02] Is this only for vector 22? [13:47:37] this happened when I selected Cosmos [13:47:42] I tried citizen before that [13:47:52] Huuuh [13:47:53] [1/2] you should enable Cosmos skin for wiki, then set it up as default skin in wiki's admin settings [13:47:53] [2/2] user preferences is something that would only for you, personally, although you still need to enable Cosmos beforehand [13:49:00] I recommended user preferences because that would let Renjiro get a feel for it before setting it as default [13:49:04] [1/2] oohh... now errors this time [13:49:04] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402287294542512179/image.png?ex=68935d50&is=68920bd0&hm=7015af2a638ae1942b6486e63251549ceb20e49090436c61dffc6b1c4efe811c& [13:49:05] weird [13:49:37] why not `?useskin=cosmos` on meta [13:49:41] hm I see [13:49:59] where are the admin settings? [13:50:01] meta does not have everything but yes, you can preview it there, public test wiki has a larger variety and might be better for getting a demo of skins [13:50:11] Mediawiki has its quirks [13:50:51] [1/2] Yeah I see. I am willing to learn though, as long as things don't get too complicated for now. [13:50:51] [2/2] Btw, can I edit these skins to my liking more? [13:51:06] [1/4] I’ll just lay out [13:51:07] [2/4] ManageWiki settings to set the skin for the whole wiki [13:51:07] [3/4] Preferences to set a persistent skin for you only [13:51:07] [4/4] preview/ useskin for previewing a skin [13:51:09] cosmos has several options in the settings area of managewiki under styling [13:51:15] [1/2] there must be Administration sidebar w/ links related to managing your wiki, by admin settings i mean "additional settings" [13:51:15] [2/2] however it seems like things are getting confusing right now in this chat, let's start from the beginning, slowly [13:51:20] Depends, some have settings you can mess with [13:51:28] Mhm [13:51:38] anything more advanced than what's available there = adding css [13:51:49] Basically, and unfortunately [13:51:53] Cosmos just offers settings [13:51:58] best option for newbies [13:52:20] but going over them is css ues [13:52:26] There are people and snippets laying around that can help if you have ideas for simpler visual changes you wanna make, like blur or background [13:52:58] alright [13:53:26] [1/2] I think I found it [13:53:26] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402288391902597240/image.png?ex=68935e55&is=68920cd5&hm=4cc01941fdfd28700bb85c04d3ac720b16879ed481afe2a9d32fbeb25fdac7f3& [13:53:27] what are we trying to do right now [13:53:36] correct [13:53:46] Anything gets too complicated if you dive deep enough, so it’s just a matter of taking it at your own pace where you feel comfortable and not overwhelmed with stuff. Mediawiki isn’t really bad if you do that [13:53:54] you want to set Cosmos as [13:54:04] default now? [13:54:28] [1/2] citizen doesn't seem to be here [13:54:28] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402288651932536874/image.png?ex=68935e93&is=68920d13&hm=b200bcbe99eb4438d686d12dc69aef38cc26b5f8472ceb208204bb9f4b33161f& [13:54:51] I wanted to learn to link pages initially 😅 [13:54:52] wait a second [13:55:06] Just need to get some text down [13:55:10] https://discord.com/channels/407504499280707585/407537962553966603/1402284766555799622 [13:55:12] let's stick to one thing at a time idk [13:55:22] you now want to try citizen skin? [13:55:45] visual editor is the one that I used before, on the test page right? [13:56:13] Yes, I think it's the one that is only enabled for me right now. [13:56:32] But it still needs to be enabled for the whole wiki as you guys said. [13:57:00] [1/4] click on Manage this wiki's extension admin link [13:57:01] [2/4] there will be Skins tab [13:57:01] [3/4] in there you should tick Citizen's box, save changes [13:57:01] [4/4] after that it will become an option for settings, admin or personal [13:57:06] [1/2] cuz rn it's in preferences [13:57:07] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402289315513499688/image.png?ex=68935f32&is=68920db2&hm=1b149075fcad45a14b4420eb5d1f5888a43ac3c2172b7692e7376974a8bfe360& [13:57:12] alright [13:57:27] If you don't mind long guides. You can use [this page](https://meta.miraheze.org/wiki/Help:How_to_customise_the_look_of_my_wiki) as reference and return to it if you're unsure about something. I think it covers most things you might need. [13:58:01] there is also no shame copying word for word advice into a page on your wiki as admin's notes [13:58:02] Not quite, visual editor is mainly a what you see is what you get editor, like editing a website with idk Wix or something. That is source editor, but it does have a toolbar so you could do the same thing to use 🔗. It depends [13:58:41] [1/2] Already enabled... [13:58:41] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402289712609366201/image.png?ex=68935f90&is=68920e10&hm=8cc38fa0ba7b3a831cbaac772ece852580d55b86edf4927b60bd03e51ad858cf& [13:59:02] weird [13:59:30] I suppose that we should focus on linking pages for now. It's more important, but I'll get this to work. [13:59:45] [1/3] Anyone know why I can't log in? [13:59:45] [2/3] When I'm in Miraheze Meta, I can log in but the moment I go to my friends wiki on Miraheze, it logs me out and doesn't let me log in [13:59:46] [3/3] https://cdn.discordapp.com/attachments/407537962553966603/1402289982449778729/image.png?ex=68935fd1&is=68920e51&hm=21b60cace5d631d539cdb6885dc580e376d84e404b73fbfe30712976a09fbfce& [14:00:15] Neither the username or password is incorrect [14:00:58] did the wiki changed url recently? [14:01:23] [1/2] Use this? [14:01:23] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402290391209873530/image.png?ex=68936032&is=68920eb2&hm=8d5fdabe2bd1c773386ec3e0cefde07ec7fde8ecd476b9a124d3b9c11caa80d2& [14:03:50] [1/8] you said you used visual editor before? [14:03:51] [2/8] miraheze has it too, it just needs to be enabled in extensions [14:03:51] [3/8] however - ve is rather buggy thing and is not welcomed much due to how it can botch formatting of pages [14:03:51] [4/8] source editor is standard, and is much more valued for admin works [14:03:52] [5/8] first thing - enable syntax highlight w/ marker button [14:03:52] [6/8] second - these are basics of wiki text [14:03:52] [7/8] [[mw:Help:Formatting]] [14:03:52] [8/8] [[mw:Help:Links]] [14:03:53] [1/2] [14:03:53] [2/2] [14:05:34] [1/2] Not really, I was asking if this right here is the editor that you guys talked about [14:05:34] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402291444810780844/image.png?ex=6893612d&is=68920fad&hm=a628399c6ad9bc7cbe72fa711c9e9938e50b558ac9dcc7a7257ff567b289b83c& [14:05:54] oh so this is source editor then? [14:05:59] did they import from another wiki where you also had an account? [14:06:17] Yes [14:06:40] I made another account and it worked [14:06:54] yes [14:07:30] oh I found the 🔗 that pix talked abt [14:07:43] it's much easier to type links proper tbh [14:07:56] wiki text is similar to discord markdown [14:08:09] like those Help pages I linked earlier [14:08:20] [1/2] I'm guessing that I just put the link to the main page here? What abt the 2nd option? [14:08:20] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402292141002068079/image.png?ex=689361d3&is=68921053&hm=e8116407b27f81e53f81aa73077f4f802b9205f517cbf239baae8c492a1da943& [14:09:21] oh nvm I figured the 2nd option out I think, it will display the link as text right? [14:09:29] [1/2] if there's pages called "Heroes" I'd type `[[Heroes]]` [14:09:29] [2/2] if I want the text appear differently then `[[Heroes|Main characters]]` [14:09:33] Like ''Please visit this page here''? [14:09:59] aight [14:10:12] im heading out [14:10:12] [1/2] what about this though? [14:10:12] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402292613083566170/image.png?ex=68936244&is=689210c4&hm=a502d2f39aaab06caae06fbc3f1bee5dd495aee9879ee3f0ae0ff277528968af& [14:10:20] is it cuz of me? [14:10:32] ok [14:10:35] can you link the wiki so I can fix it [14:10:51] this is unnecessarily complicated lol, i never used this button really [14:11:01] no busy irl [14:11:13] https://emuempire.miraheze.org/wiki/The_Emu_Empire_Wiki [14:11:19] if youre linking to another page, just do Ice Spice, not the entire URL [14:11:37] please check these @renjironeedsyourmoney [14:11:49] great, and your account is `JLT1103`? [14:11:55] Yes [14:11:57] okay, have a good day :) [14:12:04] I will [14:13:16] [1/2] so just have it say ''Main_Page'' instead? [14:13:16] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402293381358420028/image.png?ex=689362fb&is=6892117b&hm=0c2044a2bed71d60de483e656e3f410fce9ca6ba3e78f9f8eb9e3a8562ab4e19& [14:13:25] yes ! [14:13:42] alright, now, this will link my test page TO the Main Page yes? [14:15:23] there'll be a hyperlink to the main page [14:24:32] apologies for being gone for a moment [14:24:39] hyperlink? [14:24:52] just preview the page [14:25:23] try logging in with it now [14:25:31] oh I see it now [14:25:42] but it linked from the test page to the main page [14:25:46] gotta fix this rq [14:27:10] [1/2] oh well, we should've put the full thing in [14:27:10] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402296880427307008/image.png?ex=6893663d&is=689214bd&hm=12fc1d2016bbc97c2a943b40d0ed1e62548d590c8a9afad12f4215ecd12ea942& [14:27:36] girl i meant literally Main Page [14:27:37] like [14:27:42] [[Main Page|Ice Spice]] [14:29:04] <_______1414> LOLLLL [14:29:42] [1/2] hell yeah it works [14:29:42] [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402297518494187530/image.png?ex=689366d5&is=68921555&hm=5d16660737c4cee305d649bea8a7c7a0dae108c27de1bb1083b799879924b8cf& [14:29:46] 🎉 [14:29:59] well that's why I asked again [14:30:04] misunderstanding I suppose [14:30:07] but yeah it works now [14:30:24] https://cdn.discordapp.com/attachments/407537962553966603/1402297696827474091/image0.jpg?ex=68936700&is=68921580&hm=3f3d179c2ca07bc006a79ac0d70cebfe0c2d0fc9d8821f394e193bb845860f0b& [14:30:36] you mentioned Main Page and i said yes [14:32:02] Thank you, also is there a way to delete my alt account? [14:33:26] Calm it a bit stackd [14:33:35] I was asking abt the link [14:33:41] since I thought it was too long [14:39:26] [[Disabling an account]] [14:39:26] [14:39:43] tl;dr no [14:41:41] it's not terrible to have an account as an officially recognized alt for testing and what have you [14:42:16] speaking of, i should rename my alt and bot accounts lol [14:42:30] and by that i mean i may or may not annoy you in a sec [16:10:57] Is your alt named ground? [16:11:05] (Hope someone gets that joke) [16:12:38] i think im gonna curse you with a lifetime of stepping on british plugs [17:28:12] quick question, how do i manage a user and add them to a user group? [17:28:42] [[Special:UserRights]] [17:28:43] [17:29:32] thanks [17:54:11] ive tried three or four times, cant figure out the favicon even with the guides, any help? [17:57:23] [1/13] I'm having trouble getting placeholder images to work. I keep getting an "Unimplemented Infobox tag" error. [17:57:23] [2/13] > [17:57:23] [3/13] > [17:57:24] <MirahezeRelay> <glitter_straitjacket> [4/13] > <format>'''{{{title}}}'''/format [17:57:24] <MirahezeRelay> <glitter_straitjacket> [5/13] > <default>'''{{PAGENAME}}'''/default [17:57:24] <MirahezeRelay> <glitter_straitjacket> [6/13] > /title [17:57:25] <MirahezeRelay> <glitter_straitjacket> [7/13] > <image source="image"/> [17:57:25] <MirahezeRelay> <glitter_straitjacket> [8/13] > <default>Placeholder.jpg/default [17:57:25] <MirahezeRelay> <glitter_straitjacket> [9/13] > <title source="usage"> [17:57:25] <MirahezeRelay> <glitter_straitjacket> [10/13] > <format>''<small>{{{usage}}}/small''/format [17:57:26] <MirahezeRelay> <glitter_straitjacket> [11/13] > <default>''<small>Kylie forgot to fill this in./small''/default [17:57:26] <MirahezeRelay> <glitter_straitjacket> [12/13] > /title [17:57:27] <MirahezeRelay> <glitter_straitjacket> [13/13] > /infobox [17:58:38] <MirahezeRelay> <pixldev> this for a template? [17:58:46] <MirahezeRelay> <glitter_straitjacket> Ah damn, figured it out I think [17:58:50] <MirahezeRelay> <glitter_straitjacket> Gods I hate HTML [17:59:17] <MirahezeRelay> <glitter_straitjacket> Yeah, sorry I should have specified [17:59:58] <MirahezeRelay> <glitter_straitjacket> DIdn't realize the image source line was closing the tag. Deleted the `/` and added a normal closing tag after the `<default>` and it's fine [18:00:13] <MirahezeRelay> <platyellow, replying to glitter_straitjacket> puts the HaTe in HTML. [18:32:28] <MirahezeRelay> <renjironeedsyourmoney> [1/2] oh man [18:32:28] <MirahezeRelay> <renjironeedsyourmoney> [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402358614236336200/image.png?ex=68939fbc&is=68924e3c&hm=eb2a9e31538b951c6e5bf8958d2b2e7e8e78acfeb601c43432bae4ddc3308c27& [18:33:18] <MirahezeRelay> <rhinosf1> See #announcements [18:36:13] <MirahezeRelay> <phantom_boi> [1/2] hey, if a wiki has this, could a different wiki steal its URL/name? me and another wiki were made at the same time but the other one has had literally nothing included in it and stayed unedited while ive been trying to build up the other one [18:36:13] <MirahezeRelay> <phantom_boi> [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402359557371465929/image.png?ex=6893a09d&is=68924f1d&hm=6ced0e72fc339af20f12d21066e686fbc130834673606fec506e80801e202095& [18:38:47] <MirahezeRelay> <pskyechology, replying to phantom_boi> no, the wiki needs to be deleted first [18:38:59] <MirahezeRelay> <phantom_boi> ah [18:39:03] <MirahezeRelay> <phantom_boi> so i still got double the waiting time [18:43:17] <MirahezeRelay> <renjironeedsyourmoney> How can I center text? [18:49:22] <MirahezeRelay> <pixldev, replying to renjironeedsyourmoney> try <center>text/center [18:49:49] <MirahezeRelay> <theoneandonlylegroom> youuuuuu [18:50:07] <MirahezeRelay> <theoneandonlylegroom> make people use invalid tags [18:51:10] <MirahezeRelay> <renjironeedsyourmoney> huh? [18:51:48] <MirahezeRelay> <theoneandonlylegroom> it was at pix lol [18:51:59] <MirahezeRelay> <theoneandonlylegroom> browsers don't like <center> tags [18:54:12] <MirahezeRelay> <renjironeedsyourmoney> so... what should I do? [18:54:25] <MirahezeRelay> <pixldev, replying to theoneandonlylegroom> Uh [18:54:26] <MirahezeRelay> <pixldev> whoops [18:54:41] <MirahezeRelay> <pixldev> listen i dont do much editing legroom, sorry about that 😅 [18:55:03] <MirahezeRelay> <renjironeedsyourmoney> [1/2] it also keeps doing this for some reason, I didn't even do anything... [18:55:03] <MirahezeRelay> <renjironeedsyourmoney> [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402364294766657668/image.png?ex=6893a506&is=68925386&hm=f03c120bcc4493e81f705fc814d018993b59351c455a6f772eaada5032a5a687& [18:55:07] <MirahezeRelay> <renjironeedsyourmoney> Miraheze hates me [18:55:08] <MirahezeRelay> <pixldev> https://cdn.discordapp.com/attachments/407537962553966603/1402364316383973608/image.gif?ex=6893a50b&is=6892538b&hm=d8322f0bc7faf8d8c8f9d017449badba80354d51aa5eef197593a8bc155576e7& [18:55:19] <MirahezeRelay> <pixldev, replying to renjironeedsyourmoney> oh, do you have a tab at the beginning of the line? [18:55:32] <MirahezeRelay> <theoneandonlylegroom, replying to renjironeedsyourmoney> this happens if you leave a space break in the beginning of a line [18:55:51] <MirahezeRelay> <theoneandonlylegroom> [1/3] ` something` [18:55:52] <MirahezeRelay> <theoneandonlylegroom> [2/3] instead of [18:55:52] <MirahezeRelay> <theoneandonlylegroom> [3/3] `something` [18:56:31] <MirahezeRelay> <renjironeedsyourmoney, replying to pixldev> yeah but I removed it [18:56:47] <MirahezeRelay> <renjironeedsyourmoney> I added some spaces [18:56:53] <MirahezeRelay> <renjironeedsyourmoney> cuz I can't center it rn [18:57:11] <MirahezeRelay> <theoneandonlylegroom, replying to renjironeedsyourmoney> [1/4] unfortunately [18:57:11] <MirahezeRelay> <theoneandonlylegroom, replying to renjironeedsyourmoney> [2/4] `<div style="text-align: center;>your text here/div` [18:57:12] <MirahezeRelay> <theoneandonlylegroom, replying to renjironeedsyourmoney> [3/4] is more preferable [18:57:12] <MirahezeRelay> <theoneandonlylegroom, replying to renjironeedsyourmoney> [4/4] can be made into a template so less hassle [18:57:31] <MirahezeRelay> <cyberlights11_12_2006> i need a hand with user groups and im not sure where to go [18:57:52] <MirahezeRelay> <theoneandonlylegroom, replying to renjironeedsyourmoney> [1/2] this is not how wiki text works [18:57:52] <MirahezeRelay> <theoneandonlylegroom, replying to renjironeedsyourmoney> [2/2] have you checked those guides? [18:57:55] <MirahezeRelay> <renjironeedsyourmoney> [1/2] also, leaving some space is nice for me [18:57:55] <MirahezeRelay> <renjironeedsyourmoney> [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402365017369608192/image.png?ex=6893a5b2&is=68925432&hm=0ba4e339b713edf2e3c4068deea413bd6f029a55ec70a9d3096af6ca9419879f& [18:58:20] <MirahezeRelay> <renjironeedsyourmoney, replying to theoneandonlylegroom> I glimpsed over one of them, it's kinda late rn and I just want to prepare some small things [18:58:50] <MirahezeRelay> <cyberlights11_12_2006> trying to make it so anyone not logged in, or logged in but not given permission, has no greater authority than reading and looking around, but changing those permissions made it so noone at all can edit [18:59:24] <MirahezeRelay> <theoneandonlylegroom, replying to cyberlights11_12_2006> you just wanted to make wiki private then? there's just flag for that [18:59:38] <MirahezeRelay> <theoneandonlylegroom> ah my bad [18:59:41] <MirahezeRelay> <theoneandonlylegroom> i misread [19:00:06] <MirahezeRelay> <theoneandonlylegroom> check if administrator has edit rights? [19:00:30] <MirahezeRelay> <renjironeedsyourmoney, replying to theoneandonlylegroom> man this is long [19:00:47] <MirahezeRelay> <cyberlights11_12_2006, replying to theoneandonlylegroom> they do, fair [19:01:01] <MirahezeRelay> <cyberlights11_12_2006> the role does at least [19:01:16] <MirahezeRelay> <theoneandonlylegroom, replying to renjironeedsyourmoney> [1/2] it depends where you want the text to be centered [19:01:17] <MirahezeRelay> <theoneandonlylegroom, replying to renjironeedsyourmoney> [2/2] for main page templates are usually made [19:01:25] <MirahezeRelay> <cyberlights11_12_2006> ive someone thats trying to edit and cant and they have administrator [19:01:43] <MirahezeRelay> <theoneandonlylegroom> templates are neat /totally not crazy about templates/ [19:01:48] <MirahezeRelay> <renjironeedsyourmoney, replying to theoneandonlylegroom> [1/2] well, it sorta works I guess [19:01:48] <MirahezeRelay> <renjironeedsyourmoney, replying to theoneandonlylegroom> [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402365994093117531/image.png?ex=6893a69b&is=6892551b&hm=438111c56cd5d87da417acd89e5dacc64e308e9c924ea6622419d92fdbcfc7d6& [19:01:53] <MirahezeRelay> <renjironeedsyourmoney> but it continues to have these boxes [19:01:57] <MirahezeRelay> <renjironeedsyourmoney> gotta get rid of those [19:02:29] <MirahezeRelay> <theoneandonlylegroom> you are trying to make new line for one sentence? [19:02:52] <MirahezeRelay> <theoneandonlylegroom> [1/4] i assume you did [19:02:52] <MirahezeRelay> <theoneandonlylegroom> [2/4] `... for [19:02:53] <MirahezeRelay> <theoneandonlylegroom> [3/4] fun ...` [19:02:53] <MirahezeRelay> <theoneandonlylegroom> [4/4] ? [19:03:08] <MirahezeRelay> <renjironeedsyourmoney> this is still hard to format [19:03:15] <MirahezeRelay> <renjironeedsyourmoney> it works [19:03:25] <MirahezeRelay> <theoneandonlylegroom> [1/2] try [19:03:25] <MirahezeRelay> <theoneandonlylegroom> [2/2] `... for<br>fun ...` [19:03:28] <MirahezeRelay> <renjironeedsyourmoney> but I don't want the text to go bexond those lines at the top and bottom [19:03:45] <MirahezeRelay> <renjironeedsyourmoney> https://cdn.discordapp.com/attachments/407537962553966603/1402366486521184357/image.png?ex=6893a711&is=68925591&hm=301400f959dd8e0cd08b2476ba8a07a46d44149c935bcf99f0dbd6677d4bf59e& [19:04:10] <MirahezeRelay> <theoneandonlylegroom> please try what i said [19:04:36] <MirahezeRelay> <renjironeedsyourmoney> yes [19:04:54] <MirahezeRelay> <theoneandonlylegroom> but honestly - formatting is quite a beast, it will change depending on screen size roo, you can't control it much w/o going deeper into css [19:05:28] <MirahezeRelay> <renjironeedsyourmoney, replying to theoneandonlylegroom> uhh [19:05:32] <MirahezeRelay> <theoneandonlylegroom, replying to renjironeedsyourmoney> w/ `<br>`? [19:05:46] <MirahezeRelay> <theoneandonlylegroom, replying to theoneandonlylegroom> i said ^ [19:06:03] <MirahezeRelay> <renjironeedsyourmoney> I am not exactly sure what you assume I did though, Legroom [19:06:36] <MirahezeRelay> <renjironeedsyourmoney> I don't know where exactly you want me to put the <br> [19:07:09] <MirahezeRelay> <theoneandonlylegroom, replying to renjironeedsyourmoney> between "for" and "fun", w/o space or line breaks [19:07:16] <MirahezeRelay> <theoneandonlylegroom> exactly what i typed [19:07:17] <MirahezeRelay> <renjironeedsyourmoney> ok [19:07:39] <MirahezeRelay> <renjironeedsyourmoney, replying to theoneandonlylegroom> sorry but it wasn't clear for me [19:07:43] <MirahezeRelay> <theoneandonlylegroom> [1/2] im going by what the screenshot shows me, unfortunately [19:07:43] <MirahezeRelay> <theoneandonlylegroom> [2/2] you can link the page in question after #verify tho [19:07:43] <MirahezeRelay> <renjironeedsyourmoney> lemme try [19:08:30] <MirahezeRelay> <renjironeedsyourmoney> [1/2] better but it doesn't really align with the top and bottom rows rn [19:08:31] <MirahezeRelay> <renjironeedsyourmoney> [2/2] https://cdn.discordapp.com/attachments/407537962553966603/1402367683240136924/image.png?ex=6893a82e&is=689256ae&hm=ecf277f7a6f43646ea8c4cc66fbf88a184cacc6d0df6c5d5e0d34d51d5965fc5& [19:09:22] <MirahezeRelay> <theoneandonlylegroom, replying to renjironeedsyourmoney> now you can try same in previous "block" you got here? [19:09:24] <MirahezeRelay> <renjironeedsyourmoney> ok I verified [19:10:18] <MirahezeRelay> <theoneandonlylegroom> `<br>` creates simplest line break in web pages and it works in wiki text for such specific cases [19:10:55] <MirahezeRelay> <renjironeedsyourmoney, replying to theoneandonlylegroom> https://ddconceptrework.miraheze.org/wiki/Main_Page [19:11:05] <MirahezeRelay> <renjironeedsyourmoney> link to the unfinished main page [19:11:19] <MirahezeRelay> <renjironeedsyourmoney> I just wanted to get a bit of text setup before I go to bed [19:11:42] <MirahezeRelay> <renjironeedsyourmoney> I suppose that I should continue tomorrow [19:12:06] <MirahezeRelay> <theoneandonlylegroom> it's private, can't even view code, oh well [19:12:27] <MirahezeRelay> <renjironeedsyourmoney, replying to theoneandonlylegroom> oh [19:12:43] <MirahezeRelay> <renjironeedsyourmoney> what exactly will you do when you see it? [19:15:03] <MirahezeRelay> <theoneandonlylegroom> see why the formatting is botched [19:15:48] <MirahezeRelay> <theoneandonlylegroom> not sure if im going to now, i don't work w/ private wikis and don't make people go public [19:17:01] <MirahezeRelay> <renjironeedsyourmoney, replying to theoneandonlylegroom> it's fine as long as I can make it private again [19:17:05] <MirahezeRelay> <renjironeedsyourmoney> just, not for today [19:17:23] <MirahezeRelay> <renjironeedsyourmoney> idk about tomorrow but I do want to at least try Miraheze out and see if it works with what I have planned [19:18:10] <MirahezeRelay> <theoneandonlylegroom> again, i suggest to familiarize yourself w/ wiki text quirka [20:30:09] <MirahezeRelay> <misterwolf555> This server is for Hellmet right? [20:31:11] <MirahezeRelay> <raidarr> no [20:32:29] <MirahezeRelay> <abaddriverlol, replying to misterwolf555> I think there's a link to the discord of the Hellmet wiki in the wiki's sidebar [20:43:02] <MirahezeRelay> <glitter_straitjacket> Any images failing to load at the moment can be chalked up to the maintenance period, right? [20:43:44] <MirahezeRelay> <pixldev, replying to glitter_straitjacket> Yup, probably [21:56:29] <MirahezeRelay> <azve> Will there be an announcement when images are back? [21:56:53] <MirahezeRelay> <pskyechology> most likely [22:59:55] <MirahezeRelay> <lightning789> thought i broke something