Project talk:Support desk/Archive 05/Flow export
| This page used the Structured Discussions extension to give structured discussions. It has since been converted to wikitext, so the content and history here are only an approximation of what was actually displayed at the time these comments were made. |
| This page is an archive. Do not edit the contents of this page. Please direct any additional comments to the current talk page. |
By any way(through extensions or writing some script) is it possible to set site logo depending on user who is signing in?
We have partnered with various other companies who sells our product by their own name for example our actual product name is ABC, but our one partner is selling it with name XYZ and another is selling it with name MNO.
What we are looking for is to show site logo depending on the person who is signing in. So if person signing is from partner 1 then we show logo of XYZ and so on. 182.69.127.211 (talk) 08:33, 22 September 2016 (UTC)
- If you want to change it depending on the person who _is_ logged in, and not who currently is _logging in_, you could to that diretly in LocalSettings.php:
if ( RequestContext::getMain()->getUser()->isLoggedIn() ) { $wgLogo = 'the/one/logo.png'; } else { $wgLogo = 'another/logo.png'; }
- However, I would strongly suggest to not use that, as the wiki configuration shouldn't be user/request dependant as this could result in problems, e.g. with caching or something else. This is also not guaranteed to work or will still work in future versions of MediaWiki. You also need to have a way to distinguish users by the company or whatever you want, so you need to group users, and from your question you don't say how you plan to do that. It's also more complicated if one user can be associated with two companies, what do you do then?
- You probably should setup a wiki for each brand you want to create. Probably you can explore a way to share _all_ contents with Manual:$wgSharedTable? Florianschmidtwelzow (talk) 15:33, 22 September 2016 (UTC)
- Hi,
- Thanks for reply!
- On how we will distinguish users, our plan was to have user names such that we can know to which partner that user belongs too. For example if user name is Partner1_Peter then we will show logo of partner1. In our case one user will be associated with one company only always.
- Can you please elaborate on "This is also not guaranteed to work or will still work in future versions of MediaWiki", in what scenarios it is not guaranteed to work?.
- "You probably should setup a wiki for each brand you want to create. Probably you can explore a way to share _all_ contents with Manual:$wgSharedTable?"
- Yes! That is one option but in that too there is an issue. As our product name is different for every brand the content of every brand will have different brand name. I read that it is possible to substitute variables in Mediawiki, can that be done on basis of site where the page is hosted? For example if page is hosted on brand1 site then in content we should use brand 1. 182.69.127.211 (talk) 04:44, 23 September 2016 (UTC)
- > Can you please elaborate on "This is also not guaranteed to work or will still work in future versions of MediaWiki", in what scenarios it is not guaranteed to work?.
- The problem is, that the LocalSettings.php file is evaluated while MediaWiki is setup, so even if the User object is already available and fully working in the current version of MediaWiki, no one can guarantee, that it will work in a future release of MediaWiki, because, maybe, the initialization process changed or something else. That's why I wouldn't suggest to rely on this.
- Btw.: From what you write, I would think it will be better to have different wikis for each of your brand. I'm not sure, how you want to substitute variables in MediaWiki, and even if it's possible I'm pretty sure, it will not work as you expect because of the internal caching of parsed wikitext, which is integrated in MediaWiki for performance reasons. I also would say: Different site logo + different content = different site, so you should use one MediaWiki installation for each wiki. Florianschmidtwelzow (talk) 11:13, 23 September 2016 (UTC)
- Our content is same, just some keywords will change. For example, one site will say "Product 1 offers an easy integration of tools" while another site will say "Product 2 offers an easy integration of tools"
- It will be error prone and too much maintenance to keep multiple sites and make any change in document at all the sites manually. 182.69.127.211 (talk) 12:49, 23 September 2016 (UTC)
- Having two different sites with the same content (except some little keywords) is, just for the record, probably the worst idea you can do, but it sounds you don't want to deliver to "different" sites, just one site with different flavours, if I can say it in this way. I can say, that you'll probably have some problems with implementing this with MediaWiki. Firstly, the Parser Cache is not built to be dependant on the request or user basis, just on the wikitext (if wikitext changes -> re-parse, if user or request changes -> deliver pre-parsed text). Turning off the parser cache is, in general, a very bad idea from a performance point of view. The same with the site logo: The MediaWiki infrastructure is, as far as I know, not built to provide a different site-logo depending on the user. What you could do is to have a copy of your skin for each company and "hard-code" the skin in it and set the skin setting for the user, or something in this way. Florianschmidtwelzow (talk) 20:08, 23 September 2016 (UTC)
- Also, Mediawiki document says that sharing pages across wikis is not recommended :( 182.69.127.211 (talk) 10:39, 23 September 2016 (UTC)
- @Florianschmidtwelzow
| This page is only for discussion about the Support desk page. |
|
Please don't post requests for support on this talk page, do that on the actual Support desk instead. |
Commander1987 {{SUBST:SupportTeamSig}} 14:12, 30 November 2016 (UTC)
I can not login in my account
- Can i get some support to login in my account? I have serious problems with editing.
- Greetings, Peters01 84.104.223.208 (talk) 17:11, 8 November 2016 (UTC)
| This page is only for discussion about the Support desk page. |
|
Please don't post requests for support on this talk page, do that on the actual Support desk instead. |
Commander1987 {{SUBST:SupportTeamSig}} 14:11, 30 November 2016 (UTC)
Search Project talk support desk
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
1) is there any way to search topics that have been question in project talk: support desk?
2) Is there any way to find where is my post that i have posted? AmazingTrans (talk) 20:03, 7 December 2016 (UTC)
- 1) Unfortunately not.. Which is rather problematic indeed.
- 2) Yes, At the top right of the page, you will find your account name and to the right of it a link contributions. This will allow you to find everything that you ever contributed to the website. —TheDJ (Not WMF) (talk • contribs) 09:35, 27 December 2016 (UTC)
Linking to uploaded pdf files
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
Is there anyway to link an internal link where it bring me straight to the pdf file, instead of the page that contains the link of the pdf file? i have tried: file:MynewFile.pdf
But it brings me to the page that has the MynewFile.pdf. AmazingTrans (talk) 20:05, 7 December 2016 (UTC)
- Use [[Media:]] instead. This is mentioned on Help:Links. —TheDJ (Not WMF) (talk • contribs) 09:32, 27 December 2016 (UTC)
No My Watchlist showing up for non admin user
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
I am struggling in letting the non admin users to see and manage their watchlists.
If I log on with non admin users, I can see only two buttons on the upper right corner, one is the username and another is Log out. There is no My Watchlist and other buttons. If I click the username, it will display a page showing Permission Error. Accessing https://puls.calamp.com/wiki/special:watchlist directly also display Permission Error.
Admin users don't have this issue.
How can I fix the problem? Thanks. Tips luo (talk) 16:07, 22 February 2017 (UTC)
- What are the settings for wgGroupPermissions?
- If you add
$wgGroupPermissions['user']['editmywatchlist']= true;- to your LocalSettings.php does that help? ☠MarkAHershberger☢(talk)☣ 21:51, 11 March 2017 (UTC)
how to enter a services ticket
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
how to enter a services ticket MartinezElo (talk) 06:56, 25 February 2017 (UTC)
- It isn't clear what you mean, but on the off chance that you mean you want something done with MediaWiki, you can file a Phabricator ticket. ☠MarkAHershberger☢(talk)☣ 21:33, 11 March 2017 (UTC)
how to get unblocked
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
please unblock me 207.177.102.253 (talk) 18:12, 9 March 2017 (UTC)
Who's going to add a logo for a brand page?
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
Hi! This is my first day in Wiki. I tried to edit a page, and add a logo for that page. As I'm not one of the autoconfirmed users, administrators or confirmed users, I don't have the permission to achieve that. I'd like to know who can help with this? Thank you! Janeyclare (talk) 10:29, 12 July 2017 (UTC)
- If the page is protected, you can request an edit on the talk page. A user that sees it can update the article with your indications. Ciencia Al Poder (talk) 10:36, 12 July 2017 (UTC)
- This page is not protected. Can I invite an user to help with that? Janeyclare (talk) 10:54, 12 July 2017 (UTC)
- If the page is not protected, I fail to understand why you said "I don't have the permission to achieve that" Ciencia Al Poder (talk) 11:31, 12 July 2017 (UTC)
- I tried to upload a logo bu clicking organization logo upload form, but I was told that "You do not have permission to upload this file, for the following reason: The action you have requested is limited to users in one of the groups: Autoconfirmed users, Administrators, Confirmed users.". Janeyclare (talk) 06:42, 13 July 2017 (UTC)
- You need to wait a few days. Tropicalkitty (talk) 06:45, 13 July 2017 (UTC)
- Am I right to upload a logo through organization logo upload form? Janeyclare (talk) 06:51, 13 July 2017 (UTC)
- > Am I right to upload a logo
- Yes, if the file meets all the conditions described on the upload form.
- As Tropicalkitty said, you need to wait a few days. As the autoconfirmed users page says: most English Wikipedia user accounts that are more than four days old and have made at least 10 edits (including deleted ones) are considered autoconfirmed Ciencia Al Poder (talk) 10:17, 13 July 2017 (UTC)
- Okay. That makes sense. Thank you! Janeyclare (talk) 01:27, 14 July 2017 (UTC)
Global HTML/CSS modified per page
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
Hello community, I was hoping to solve this issue: I am writing a custom skin and I need to style the mw-body-content to be a fixed width, however I only want to apply this fixed width style on one page.
I have tried searching for the page via ftp in my server files however I cannot find the .php file containing the template html with the classname "mw-body-content" I figure if I can find it in the source code, I can add a unique identifier (i.e. a CSS "id") and then style it in my skins style.css file.
If someone could provide some help it would be much appreciated.
Thanks,
jake 2601:243:0:3D59:FDFD:480B:8470:3B56 (talk) 07:06, 27 July 2017 (UTC)
- If by "page" you mean wiki page, body tag has class "page-TITLE" so you can use rules like
.page-How_to_contribute #column-content. wargo (talk) 08:50, 27 July 2017 (UTC)
Migration of 1000 files from sharepoint to mediawiki.
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
we have to migrate 1000 files from sharepint to mediawiki as content(like wiki page) not as link.
Is there any way to do this?
Moreover file format may be pdf,ppt,excel and docx.
So need to do migration in bulk in mediawiki as automated process. 106.200.209.251 (talk) 07:06, 28 July 2017 (UTC)
- If you want to upload all those files I recommend using the ImportImages.php maintenance script of MediaWiki. Be aware that MediaWiki does not allow the creation of sub directories within its file repo. In a first step you will need to fetch the files from SharePoint and put them all into one directory. You might have to resolve naming conflicts, e.g. "
sharepoint/Website1/Lib/Some_File.docx" --> "mediawiki/Website1_Lib_Some_File.docx", "sharepoint/Website2/Lib/Some_File.docx" --> "mediawiki/Website2_Lib_Some_File.docx" - If you want to actually convert the files to wiki pages you might want to hire someone. See Professional_development_and_consulting. Osnard (talk) 14:43, 28 July 2017 (UTC)
Mediawiki installation not getting launched
when i access this link on browser,
it just shows the php text and php is not getting executed.
http://localhost:8080/mediawiki/mw-config/index.php Sudhirojha (talk) 21:16, 31 August 2017 (UTC)
- Hi! In that case your webserver is not configured properly. Have a look at http://php.net/manual/en/install.php Osnard (talk) 05:55, 5 September 2017 (UTC)
Error with MobileFrontend
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
I get this full error log version 1.29.1: Only when mobile front end is enabled:
[db99bfb7fb2c5122cb162fb4] /mediawiki-1.29.1/ MWException from line 561 of /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/cache/localisation/LocalisationCache.php: LocalisationCache::readJSONFile: Invalid JSON file: /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/extensions/MobileFrontend/i18n/en.jsonBacktrace:#0 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/cache/localisation/LocalisationCache.php(900): LocalisationCache->readJSONFile(string)#1 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/cache/localisation/LocalisationCache.php(462): LocalisationCache->recache(string)#2 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/cache/localisation/LocalisationCache.php(379): LocalisationCache->initLanguage(string)#3 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/cache/localisation/LocalisationCache.php(294): LocalisationCache->loadSubitem(string, string, string)#4 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/languages/Language.php(2582): LocalisationCache->getSubitem(string, string, string)#5 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/cache/MessageCache.php(918): Language->getMessage(string)#6 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/cache/MessageCache.php(873): MessageCache->getMessageForLang(Language, string, boolean, array)#7 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/cache/MessageCache.php(814): MessageCache->getMessageFromFallbackChain(Language, string, boolean)#8 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/Message.php(1257): MessageCache->get(string, boolean, Language)#9 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/Message.php(842): Message->fetchMessage()#10 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/Message.php(934): Message->toString(string)#11 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/title/MalformedTitleException.php(49): Message->text()#12 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/title/MediaWikiTitleCodec.php(312): MalformedTitleException->__construct(string, string)#13 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/Title.php(3415): MediaWikiTitleCodec->splitTitleString(string, integer)#14 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/Title.php(355): Title->secureAndSplit()#15 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/MediaWiki.php(84): Title::newFromURL(NULL)#16 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/MediaWiki.php(140): MediaWiki->parseTitle()#17 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/MediaWiki.php(777): MediaWiki->getTitle()#18 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/includes/MediaWiki.php(523): MediaWiki->main()#19 /misc/26/000/343/282/2/user/web/antimalwareprogram.co/mediawiki-1.29.1/index.php(43): MediaWiki->run()#20 {main}
Antimalwareprogram (talk) 17:54, 26 September 2017 (UTC)
- The problem is a corrupted en.json file. You can see this from this bit of the message:
Invalid JSON file: .../extensions/MobileFrontend/i18n/en.json
- See if you can re-download MobileFrontend to fix the problem. ☠MarkAHershberger☢(talk)☣ 15:10, 27 September 2017 (UTC)
- Thank you! It works now! Antimalwareprogram (talk) 19:50, 27 September 2017 (UTC)
Changing MathML font size to match surrounding text
I noticed that Wikipedia does a good job rendering formulas so that their size matches the surrounding text.
https://en.wikipedia.org/wiki/Asymptote#Vertical_asymptotes
However, a default MediaWiki install with the Math extension render formulas substantially larger than the surrounding text:
http://wiki.orthogonaldevices.com/index.php/ER-301/Limiter
How can one alter the rendered font size of MathML? Odevices (talk) 08:12, 9 October 2017 (UTC)
- I don't have an immediate answer for your question ("How can one alter the rendered font size of MathML?") but I will point out that Wikipedia is using mathoid which is not part of the default MW install with the Math extension. ☠MarkAHershberger☢(talk)☣ 13:58, 11 October 2017 (UTC)
Mediawiki 1.23.3 site not working
Hi,
We had used mediawiki 1.23.3 and we have stopped using it for sometime now. But when i tried to use the site recently it's not working as expected. Is there any general reason that might be causing this like is this related the version of mediawiki. My mediawiki site looks like below. Even if i try to navigate any of the following links say 'main page' or 'login', it's throwing the "HTTP Error 404.0 - Not Found".
Kindly help me with this as am not able to find a reason to why it's not working properly.
---------------------------------------------------------------------------------------------------------------
Login required
Jump to: navigation, search
Please log in to view other pages.
Retrieved from "https://mywiki.cloudapp.net/mediawiki-1.23.5/index.php?title=Special:Badtitle"
Navigation menu
Personal tools
- 127.0.0.1
- Talk for this IP address
- Log in
Namespaces
- Special page
Variants
Views
Actions
Navigation
- Main page
- Recent changes
- Random page
- Help
Tools
- Special pages
- Printable version
- Privacy policy
- About MediaWikiSite
- Disclaimers
-----------------------------------------------------------------------------------------------------------------------------
Thanks & regards,
Sethu Sethu S P (talk) 12:58, 14 November 2017 (UTC)
- Has anything on your site changed recently? Can you reach the login page? Do you have access to the LocalSettings.php file? ☠MarkAHershberger☢(talk)☣ 15:47, 16 November 2017 (UTC)
How to get Parsoid always running on Windows Server 2012 so ViaualEditor Works
Hi, I'm really struggling getting Parsoid running on Windows Server 2012 R2 ans stay running when I close the command prompt window
I can Get Visual Editor working when I run in CMD (or PowerShell):
CD C:\Users\%UserName%\node_modules\parsoid
node bin\server.js ("node bin\server.js &" or "node bin\server.js > stdout.txt 2> stderr.txt &")
Visual Editor runs when I leave this window open, however as soon as I close it, log off or anything that terminates it, Visual Editor stops working.
How am I able to run this command and keep it working and not have it rely on my profile also? AdamLacey (talk) 14:52, 17 November 2017 (UTC)
- I have copied "C:\Users\%UserName%\node_modules" to the Root of the C:\ and it works running it from there so it's no longer profile reliant. However I still can't get it to run without closing a the window.
- I have setup a windows domain account that doesn't have desktop access so it can run scheduled tasks if required but I am not successfully got it running allowing wiki to work, or without flooding the task manager with loads of node.exe's, so I'm still stuck on the always running part AdamLacey (talk) 16:15, 17 November 2017 (UTC)
- You should look at running parsoid as a service. ☠MarkAHershberger☢(talk)☣ 20:32, 20 November 2017 (UTC)
- Thanks, this isn't working for me? I did the parts:
- The recommended way to install node-windows is with npm, using the global flag:
npm install -g node-windows- Then, in your project root, run:
npm link node-windows- Then ran the .vbs file with the code in it (with my edits and as it is to make sure typo's etc):
var Service = require('node-windows').Service; // Create a new service object var svc = new Service({ name:'Hello World', description: 'The nodejs.org example web server.', script: 'C:\\path\\to\\helloworld.js' }); // Listen for the "install" event, which indicates the // process is available as a service. svc.on('install',function(){ svc.start(); }); svc.install();
- My Edits:
var Service = require('node-windows').Service; // Create a new service object var svc = new Service({ name:'WikiMedia Parsoid Service', description: 'The nodejs.org example web server.', script: 'C:\\node_modules\\parsoid\\bin\\server.js' }); // Listen for the "install" event, which indicates the // process is available as a service. svc.on('install',function(){ svc.start(); }); svc.install();
- But I get the error each time:
--------------------------- Windows Script Host --------------------------- Script: C:\Users\alacey\Desktop\TEST.vbs Line: 1 Char: 23 Error: Syntax error Code: 800A03EA Source: Microsoft VBScript compilation error --------------------------- OK ---------------------------
- Am I missing something obvious here?
- Kind regards
- Adam AdamLacey (talk) 10:03, 21 November 2017 (UTC)
- It says it is erroring out on character 23 of line 1. Make sure you aren't using smartquotes there and that it is just a regular, ascii apostrophe.
- Also, make sure you have node-windows installed.
- Let me know if neither of those fixed it. ☠MarkAHershberger☢(talk)☣ 00:22, 22 November 2017 (UTC)
- I've retyped the characters in case copy and paste did anything and made sure node-windows by running it again in the I said above was installed with the results below,
npm install -g node-windows+ node-windows@0.1.14added 5 packages in 1.433s- but it still doesn't work and returns the same error message AdamLacey (talk) 11:42, 22 November 2017 (UTC)
- Try the other answers from the link I gave above. One of them should work. Unfortunately, I don't have any experience with node.js running as a service under windows. ☠MarkAHershberger☢(talk)☣ 03:51, 23 November 2017 (UTC)
- No worries, thanks for your assistance so far @MarkAHershberger, I will use the Task Scheduler on start up to run the node.exe, it runs the node.exe averagely that 34 times but not loads more it seems, so they will do as it is working.
- Many thanks AdamLacey (talk) 08:28, 23 November 2017 (UTC)
How to implement OTP...
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
How to implement OTP enable login... Sumanchand (talk) 07:35, 25 November 2017 (UTC)
New Wikimedia Developer Support channel (test pilot)
Hi, https://discourse-mediawiki.wmflabs.org/ has just been announced.
As explained at Discourse#One_place_to_seek_developer_support, Project:Support desk has been until now the only channel whose main purpose is to offer support for developers and other technical contributors. As maintainers of the Support desk, you are invited to check the new Wikimedia Developer Support test pilot. Your feedback will be key to decide the next steps of this pilot and its relationship with Support desk.
While in Discourse (the software used in this new space) users get more permissions automatically as they make useful contributions to the project, I think that those of you maintaining the Support desk could be assigned directly the Moderator role there. If you are interested, create a new user in the Discourse instance and ping me.
Also, what would be the best way to proceed advertising Wikimedia Developer Support here at the Support desk? Reasonable options could go from not announce it (to avoid confusion to users landing here) to direct developers to invite developers to use the test pilot space instead (which would bring more traffic and therefore better conditions for a good test). Qgil-WMF (talk) 08:45, 9 January 2018 (UTC)
- I have added a link in the header, after mailing lists and before the external sites. Qgil-WMF (talk) 17:58, 16 January 2018 (UTC)
Backed-up by primary sources content was refused
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
- Welcome, this is the support desk for installing and running the MediaWiki software. Unfortunately, we cannot help you with your question. —TheDJ (Not WMF) (talk • contribs) 13:59, 5 February 2018 (UTC)
- oh, really sorry. I thought it is a place for such controversies. Sorry. I am ashamed. Where should I contact? Ruhubelent (talk) 17:34, 5 February 2018 (UTC)
MediaWiki 1.30 : Internal Error
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
I am trying to get MediaWiki set up locally but I am getting the title error, followed by:
---------------------------------------------------------
Installing some PHP extensions is required.
Required components
You are missing a required extension to PHP that MediaWiki requires to run. Please install:
- fileinfo
---------------------------------------------------------
- I have PHP v7.0 installed and verified the next 2 points in both the x86 and x64 directory.
- the 'php_fileinfo.dll' file is located in the ext/ directory
- I have added the line: ' extension=php_fileinfo.dll ' into the php.ini file and it is not commented out.
Just wondering if I'm missing something basic? :P Or if anyone has any idea... SteveGAU (talk) 01:16, 9 February 2018 (UTC)
Out of memory - No luck using memsize=63
I wrote a baseball program with over 6500 lines of code (using functions, etc.) and I'm at a point where I cannot add any more code. Out of memory. Is there any way to add memory? I'm at memsize=16 but nothing else will work. NMCosmicGuru (talk) 21:08, 10 March 2018 (UTC)
- You can use ini_set function in your code. 星耀晨曦 (talk) 12:12, 17 March 2018 (UTC)
Need help with login
The system will not recognize my password. It has been a while since I used it. I asked the system to reset password but I never receive an email after it send it. It is not in spam. I do not have other email addresses. Apparently knows the account exists but I cannot get to reset email. Help. 207.235.23.121 (talk) 13:45, 21 March 2018 (UTC)
Upgrade to PHP 7.1.15
Hello.
We currently have on the server the PHP 5.11 and would like to upgrade it to one of the most recent PHP 7.1.15 for our Wiki. We downloaded zip-file for PHP 7.1.5, unzipped, ready to move the unzipped directory to C:\PHP and replace php.ini in C:\Windows. Previously at the end of php.ini file (for 5.11) we have had the following lines to support our Wiki:
----------------------------------------------
[WebPIChanges]
error_log="D:\rri\php\logs\php53_errors.log"
upload_tmp_dir=C:\WINDOWS\temp
session.save_path=C:\WINDOWS\temp
cgi.force_redirect=0
cgi.fix_pathinfo=1
fastcgi.impersonate=1
fastcgi.logging=0
max_execution_time=300
date.timezone=America/Los_Angeles
extension_dir = "C:\PHP\ext"
;extension_dir = "C:\easyphp\www\mediawiki-1.16.0\extensions\"
[ExtensionList]
extension=php_mysql.dll
extension=php_mysqli.dll
extension=php_mbstring.dll
extension=php_gd2.dll
extension=php_gettext.dll
extension=php_curl.dll
extension=php_exif.dll
extension=php_xmlrpc.dll
extension=php_openssl.dll
extension=php_soap.dll
extension=php_pdo_mysql.dll
extension=php_pdo_sqlite.dll
extension=php_imap.dll
extension=php_tidy.dll
[PHP_SQLSRV]
extension=php_sqlsrv_53_nts_vc9.dll
extension=php_pdo_sqlsrv_53_nts_vc9.dll
extention=php_sqlsrv_53_nts_vc6.dll
[PHP_LDAP]
extension=php_ldap.dll
---------------------------
QUESTION: Should we add these lines to the end of new php.ini file for 7.1.15 PHP or for PHP 7.1.15 these lines somewhere have to be modified/updated? Where? Please let us know. 198.232.187.14 (talk) 00:14, 30 March 2018 (UTC)
User name / password
So its been awhile since I logged into wiki. I'm unable to remember my user name. I'm pretty sure they register email and IP so I'm unable to set up a new account. Anyone know how I can contact wiki support? 201.195.126.8 (talk) 01:20, 5 May 2018 (UTC)
Undo Line Across Page
CaptainMaestro (talk) 20:53, 15 May 2018 (UTC)
How to use <canvas> in mediawiki
Can I use <canvas> in mediawiki? If so, how can I use it? (version 1.30.0) 79brue (talk) 12:09, 17 May 2018 (UTC)