[00:00:23] how can I edit the logo on the top right so that it links some place else [00:00:27] top left sorry [00:03:22] BlaenkDenum: it will always link to the wikis main page (which you can change). [00:03:31] you'd have to hack the skin to change that [00:03:36] Duesentrieb: oh okay, where? [00:03:45] I'll see [00:04:01] edit MediaWiki:mainpage to change the main page [00:04:14] no I want to keep the main page, I want to change the link [00:04:18] (also inföuences where you get redirected when going to the wiki, etc) [00:04:19] so that it links to the main site [00:04:34] if you want to only change the link, you'll need to hack the skin [00:04:42] yeah I'm looking at the skin right now [00:04:56] in monobook.php, find data['nav_urls']['mainpage']['href'])?> [00:05:02] replace it. [00:05:21] thanks I appreciate it [00:05:25] or, more nicely, write a hook that changes the nav url [00:05:41] where can I find information on hooks? [00:05:48] !hooks [00:05:48] Hooks allow you to run functions at various points in the main MediaWiki code. For more information about using hooks in MediaWiki, see . [00:05:55] thanks [00:06:05] the skin code sucks though [00:06:39] sorry? [00:06:45] it's not readily extensible. this one could be done using a SkinTemplateOutputPageBeforeExec hook i guess. [00:06:48] but it ain't pretty [00:07:03] yeah I'll just use this simple hack then, thanks for the help [00:07:10] have fun [00:07:19] oh, right: make a diff and keep it as a patch [00:07:24] to apply after your next upgradce [00:08:00] sure will, thanks I appreciate it [00:08:10] sorry although I know what a diff is, how would you suggest I do it, what parameters [00:08:40] I'll look it up [00:09:24] diff -u oldfile newfile > patchfiel [00:09:33] haha okay thanks I appreciate it [00:10:18] you know what I couldve just added links in the navigation menu [00:12:07] Duesentrieb: how would I make external links though, something|http://blah.com ? [00:12:49] yeah, don't know how I'd edit that, nevermind [00:13:46] I see there are something-url lines but how do I create them [00:14:47] anyone? [00:17:51] I got it [00:37:24] can I change the logical anchor name of a section to ease linking/reference? [01:00:41] hello, can i ask a question about mediawiki 1.6.10 [01:00:51] !ask | snott [01:00:51] snott : Don't say "I have a question", or ask "Is anyone around?" or "Can anyone help?". Just ask the question, and someone will help you if they can. Also, please read < http://workaround.org/moin/GettingHelpOnIrc > for a good explanation of getting help on IRC. [01:02:25] great. I have a site that nobody was watching running 1.2 - it has about 20 pages of good stuff that i want to keep. unfortunately it has been overrun by spammers in the last 2 years and there are hundreds of thousands of spam pages (db ~ 500MB). i've tried writing some SQL to nuke the bad stuff but its hard... are there anre any tools or scripts out there? [01:02:48] i've upgraded to 1.6 but dont have access to php5 [01:03:01] there's a nuke extension [01:03:17] yes, but it only works by username and there are tens of thousands [01:03:24] But that extension is only really helpful when you have a few users with many pages. [01:03:57] basically i want to nuke all revisions after a date in 2005 [01:04:08] and revert pages back to those versions [01:05:27] what would be a good first step actually, would be to delete all pages with 1 revision (new) after a certain date [01:05:59] that would eliminate the vast majority [01:06:28] snott: http://www.mediawiki.org/wiki/Extension:NukeDPL [01:06:31] do you have direct DB access? [01:06:43] slavie: thatdoesn't work on 1.6 [01:06:47] Upgrade. ;) [01:06:48] yes MZ [01:06:55] he can't because of PHP [01:06:58] as i mentioned, i cant because all higher versions require php5 [01:07:07] >_> [01:07:22] You could do it from the database easily enough, but then you run into referential integrity problems. [01:07:25] hmmm perhps i could select on page.page_is_new and page_touched [01:07:34] there's probably a way to do it directly in the DB, which would avoid a lot more DB clutter with all the deletion records [01:07:44] (ie, you have orphaned log entries, edit histories, et cetera.) [01:08:10] yes, i'm doing this in SQL i just want to know if there is any sql around i can modify [01:08:58] the DB tables are highly linked; removing things directly almost always causes issues [01:09:04] if page.page_is_new = 1 does that mean the only other thing to clean up is the text.old_id row? [01:09:38] there's a maintenance script that you can run ... deleteBatch.php [01:10:11] hmmm not in 1.6 i'll check it out in svn [01:10:52] with that and the user table, you could probably set up something automatic that went through and ran a large number of PHP commands [01:11:09] or you could export all the good data, clear the DB, and re-import [01:13:16] chuck: you around? [01:14:29] that might be a better plan, how do you export pages? [01:14:43] Special:Export [01:14:44] !export [01:14:44] To export pages from a wiki, navigate to Special:Export on the wiki, type in the names of the pages to export, and hit "export". See for an example of this form. See also: !import [01:15:04] *slavie checks if XML exporting existed in 1.6 [01:15:19] Special:Export seems to exist thanks [01:15:55] snott: You can export and re-import all the pages simultaneously by giving yourself the 'import' right (which lets you export and import XML files). [01:16:03] http://www.mediawiki.org/wiki/Help:User_rights [01:27:00] what are scratch disks -_- [01:33:39] Landlord: http://en.wikipedia.org/wiki/Scratch_space [01:41:04] thanks, the export/import worked really well [01:41:25] yay [01:41:49] however images didn't seem to makeit. i preserved the image and imagelinks tables since they weren't spammed, and the files show up in Special:Imagelist but [[Image:xx]] doesn't show the image [01:42:37] does the link below the (absent) image go to the appropriate file? [01:43:19] no, the upload form... ie http://www.groupf.org/wiki/index.php?title=Car_Construction [01:43:46] is there a good tutorial on how to design the logical structure of a wiki nicely? [01:44:40] replikant: hmm... i don't think so; real-world examples are probably better than any tutorial though [01:44:53] I've found that any system with organic development and logical structure don't always mix.... [01:45:26] you need an enlightened dictator =] [01:45:48] MZMcBride: well its rather about how to deal with the task best. i heared of failed wikis because of mismanagement [01:46:06] did i need to export the image pages? [01:46:10] are you talking about administration or content management? [01:46:31] I'm talking about content management [01:46:42] snott: images are weird... all the data about them is the in the tables [01:46:53] MZMcBride content [01:47:06] though i'm sure there's a maintenance script to rebuild the data just using the files [01:47:08] how to organize content mostly... [01:47:46] yep RebuildImages.php [01:47:49] I'm glad I just have to make the bloody thing work... [01:48:08] replikant: it really depends how in-depth / intense you want to get [01:48:08] On the technical end of things... [01:48:25] there are categories and namespaces and all sorts of things in mediawiki for content management [01:49:42] snott: it's working now [01:49:58] although the client wants the site to have foo.com/Category/article.html printed. Currently goes foo.com/wiki/Category/Article [01:50:12] MZM: well i'm supervising filling the wiki for an online browswer game... a very small universe of technical terms, products,buildings etc... [01:50:39] replikant: Try looking at how other game wikis do it. :) [01:50:41] hmm, it seems doing any minor edit on the page linking to the image "fixes" the link [01:50:58] yeah, you can do a null edit or purge the page (&action=purge) [01:51:10] I wish there had been Wiki's around back when I was working with developing Promisance games... [01:51:14] slavie: do you have a good example? [01:51:21] hmm... probably best to look at other examples... wikia has plenty [01:51:57] replikant: http://wiki.guildwars.com/wiki/ [01:52:14] That's a very large wiki, relatively speaking, so you can see how they've scaled up. [01:52:48] http://lorebook.lotro.com/wiki/ [01:53:03] that's the most intense wiki for games i've seen [01:53:37] tx im reading... i was wondering how to deal with redundant info and how to get ppl to respect the wiki/work for it/avoid abuse etc [01:54:39] policies and guidelines in the Project: namespace work best, i think [01:54:47] replikant: Usually, a good community is self-policing. :) [01:54:54] being clear about the scope and purpose of the wiki [01:55:03] You just need to attract some dedicated editors. [01:55:39] sweet, got it all sorted. 280MB of spam down to 12MB of content :) thanks for your help [01:55:44] AaronSchulz: you called. [01:56:44] mzm: i havent read much about namespaces.... can a buerocrat move all articles of a category to a namespace? [01:57:04] er.. through the wiki, not automatically [01:57:18] there's a maintenance script for namespaces though [01:57:24] so it has to be done by hand? [01:57:26] ah [02:00:15] whow those wikis are amazing [02:06:53] okay, that's wierd. [02:07:16] I installed TinyMCE and now the table on the front page...is well...no longer a table. But I didn't edit that page [02:07:34] http://www.ourpropertytaxes.com/wiki/ [02:44:40] If I have a string, how can I determine if an article of exists with Title = that string? [02:44:52] !parserfunctions | putlake [02:44:52] putlake : "Parser functions" are a way to extend the wiki syntax. ParserFunctions is an extension that provides the basic set of parser functions (you have to install it separately!). For help using parser functions, please see . For details about the extension, see . [02:45:19] thanks slavie. I'll check it out [02:45:37] Once you install it, you can use {{#ifexists:string|show text if true|show text if false}}. [02:45:48] bun DUHHH [02:45:55] it's actually ifexist [02:46:09] *slavie renames it. [02:50:20] slavie: Thanks. I assume ParserFunctions works with 1.9.3 [02:50:41] I think so, but the extension page should say so. [02:51:50] yes. found it.1.8 and up [02:51:52] All the ParserFunctions work under 1.8 and up, also in the localised forms. [03:33:53] per: http://www.mediawiki.org/w/index.php?title=Help:Tables&diff=153933&oldid=153932 [03:34:00] there is a typo in http://www.mediawiki.org/wiki/MediaWiki:Common.css [03:34:07] table.datatable th, td { [03:34:07] padding: 4px; [03:34:09] should be [03:34:13] table.datatable th, table.datatable td { [03:37:00] *TimLaqua kicks CIA-7 [03:37:00] ow [03:37:22] poor CIA-7 :( [03:37:32] him and CIA6 must be on strike. [03:38:00] no SVN updates? [03:38:03] nope [03:38:54] then update something ;) [03:38:59] I did [03:39:03] right before I kicked it. [03:39:06] ;-) [03:39:08] =/ [03:39:17] *Skizzerz kicks CIA-7 for not working [03:39:38] *TimLaqua shrugs [03:39:45] is there any reason Special:Makebot and Special:Makesysop couldn't be deprecated? [03:40:24] uh... well... once we deprecate 1.9 and 1.10, yes ;) [03:41:03] oh, sorry, i meant on WMF wikis; from a technical perspective, they could be removed with a could of modifications to CommonSettings.php, right? [03:41:15] s/could/couple [03:41:58] make a bug :) [03:46:45] http://bugzilla.wikimedia.org/show_bug.cgi?id=11645 [03:51:04] http://www.mediawiki.org/wiki/Extension:OAIRepository [03:51:12] very helpful, that page [03:58:41] Where is the user submitted content for MW stored? [03:59:25] in the database, in the page_revisions table, i think [04:00:24] the page table, more properly [04:00:29] http://www.mediawiki.org/wiki/Page_table [04:02:50] if i import "mw_page" into a new installation of mw will it import all the content? [04:04:19] is there an easy way to disable the "create account" option, or make a certain set of users able to create accounts? [04:04:55] !userrights [04:04:55] For information on customizing user access, see < http://www.mediawiki.org/wiki/Help:User_rights >. For common examples of restricting access using both rights and extensions, see < http://www.mediawiki.org/wiki/Manual:Preventing_access >. [04:18:34] Ian_O: you need page,revision,and text [04:18:52] those are three related tables with columns using foreign keys among each other [04:19:27] after importing the data from those, you'd have to run refreshLinks.php in /maintenance [04:25:49] CaneToad: how will you make new users? [04:30:22] AaronSchultz, basically I want the people who have accounts to be a closed group. The topic of the wiki is too contentious to just let every man and his dog have an account. Is it possible to make Special:Userlogin not provide a link to Special:Userlogin&type=signup ? [04:31:23] there's an extension to allow approval of users [04:31:33] ah ok [04:32:35] http://www.mediawiki.org/wiki/Extension:ConfirmAccount [04:33:17] thanks [04:37:24] it was fun writing :) [04:40:23] *Shinjiman_ kicks CIA-7 [04:40:24] ow [04:43:10] *AaronSchulz reads http://simcitysocieties.ea.com/about.php [04:43:13] sigh [04:43:25] I miss simcity [04:48:53] havent i seen screenies of sc5? [04:52:54] replikant: funny, the SCC screens look like the early SC3K screens (while it was still 3D) [04:53:38] i bought and played sc4 and it wasnt as great as sc2k [04:54:24] well, I played 2K the most of them all [04:54:51] 3K had really good graphics and still had the simcity feel [04:55:02] all that graphics is not worth anything if the gameplay is fowl [04:55:08] SC4 had better graphics, but it still wasn't 3D, and it felt odd [04:55:42] like it lost something [04:56:55] im my opinion the never rooted out the overwhelming potential of that game [04:56:56] replikant: the gameplay for the 4 wasn't bad [04:57:15] balance in 4 was odd [04:57:19] it just seemed like not much of an improvement [04:57:47] replikant: well, the power options were fucked up [04:59:28] development was just odd [05:00:45] how so? [05:01:06] i couldtn understand it [05:01:31] ;) [05:01:40] complexion was against the player [05:01:48] complexity [05:03:12] sc4 felt like playing on an excel spreadsheet [05:03:20] I played 1 - 3K, and watched the complexity creep, so maybe I just got used to it, but it didn't seem that bad [05:03:30] sc2000 felt like there is a stupid little city [05:04:09] it is very easy to make suboptimal wasteful traffic systems and service spacing, but it's not like it skrews you over [05:04:43] sc4 had all this wannabe multiplayer [05:04:47] what I was never able to do was avoid coal power plants [05:05:02] so you had cities all around to take your waste and provide power [05:05:16] they made everything else so expensive one plant made you broke in even a large city [05:05:38] (or a good group of windmills to power some chunk of city) [05:06:04] you could paint water onto hills to make artificial waterfalls, then put hydro on them [05:06:11] replikant: money is tighter in SC4, so I never bothered with deals much [05:06:12] hmm yea i used windmills a lot till i was rich enough to just buy power [05:06:32] and used coal power until i needed the sapace [05:06:39] TimStarling: yeah, in SC2 [05:06:40] I think it worked out cheaper than windmills, or about the same [05:07:01] and fusion power was retardedly good [05:07:04] mmm, couldn't remember if it was 2 or 3 [05:07:12] it's been a while [05:07:15] they killed hydro power after 2 [05:08:02] fusion became replaced with hydrogen power, and "microwave" died after 3k [05:08:29] i think there is a microwave in 4 but its very expensive [05:08:50] no, there is some hack to do that [05:09:06] and it is really cheap [05:09:10] whats the most advanced energt source called then? [05:09:16] hydrogen [05:09:34] it is less efficient that nuclear and windmills; totally unaffordable [05:09:44] only slightly worse than nuclear [05:09:47] is it? whatever it is its so much more expensive than coal:) [05:09:58] coal is DIRT cheap [05:10:27] i just dindt like the concept of 4 somehow... [05:10:37] but it was fun for a short while [05:10:43] TimStarling: SC4 was way less "green" optimistic than this new "Simcity Societies" game is [05:10:52] sc2k was fun for a long time... they do soemthing wrong [05:12:03] TimStarling: if only we could paint water in drought ridden areas of Africa [05:12:11] that would be nice :) [05:12:29] but up dams and power their laptop-per-child boxen [05:12:34] *put up [05:12:53] would it be nice? do you know that damp is the No1 greenhouse gas? (no kidding):) [05:13:04] you know, there's only one design for a fusion power plant which is known to be practical [05:13:11] generating far more energy than you put into it [05:13:14] JET or tokamak or else? [05:13:29] don't say "cold fusion"... ;) [05:13:30] that's fermi's hydrogen bomb design [05:13:52] just explode small H-bombs at regular intervals [05:14:29] he proposed using a huge underground cave, hollowed out with more H-bombs of course [05:14:44] "hollowed out with more H-bombs of course".... lol [05:14:57] then with water flowing in pipes around the outside to collect the heat [05:15:16] nice idea but you need conventional nuclear warheads to detonate the hydrogen [05:15:22] the whole thing becomes radioactive very quickly because of neutron bombardment [05:15:48] but there's no such thing as free energy, right? [05:16:00] sun? [05:16:04] free. [05:16:11] public domain:) [05:16:30] solar energy is not free [05:17:02] *AaronSchulz cranks out his perpetual motion device [05:17:05] all our energy is of solar descent.. exept nuclear [05:17:15] and geothermal [05:17:21] oil got its power from the sun [05:17:29] oil is not geothermal [05:17:52] ok geothermal is the third exeption [05:18:03] *AaronSchulz compress some materials into the ground [05:18:20] what about tidal energy? that comes from the moon [05:18:35] that'd be a 4th exception [05:18:48] 3rd [05:18:51] didn't some asian student make buoy power? [05:18:51] i miscounted [05:19:10] alright, so nuclear, geothermal and tidal [05:19:10] they tidal waves make them move and generate power [05:19:15] and everything *else* comes from the sun... [05:19:41] *the [05:19:53] true [05:20:19] I wonder what a good mix of alternative energy could do for the US [05:20:33] its very difficult [05:20:37] one of the arguments against such energy is "that will only cover part of the grid" [05:20:49] a friend of mine was saying that his company has been doing a lot of research into alternative energy policy lately [05:20:50] i live in germany.. and we do a lot on windmills [05:20:52] people say that against every power type [05:21:02] and that he thinks geothermal is the only viable one for large scale baseline production [05:21:23] in Australia at least [05:21:29] but adding them up can help, like some euro countries do. Granted there is a lot of nuclear thrown in. [05:22:11] the problem is: the energy is there but energy is used constantly while natural energy comes and goes [05:22:31] coal is natural [05:22:37] it doesn't come and go, it just goes [05:23:03] do you understand the problem? [05:23:16] thats true of anything [05:23:18] yes, but you're throwing around the word "natural" in a very imprecise way [05:23:22] then we go out into space [05:23:28] and harvest stuff there [05:23:43] tim was that @ me? [05:23:51] replikant: yes [05:24:00] quote me? [05:24:01] just hope we don't write ourselves into a corner before we have good space travel tech [05:24:11] the problem is: the energy is there but energy is used constantly while natural energy comes and goes [05:24:34] do we have a misunderstanding here? [05:25:30] what could be more natural than taking rocks out mother earth, refining the U-235, and letting it decay? ;) [05:25:54] a process which has been going on for billions of years, now controlled for the benefit of man [05:26:33] im painting it on banners: "no co2, dude!" :P [05:26:57] *AaronSchulz hugs CO2 and water vapor [05:27:34] eeuw aaron.. you are obscene.. stop breathing and transpiring! [05:28:24] heh, actually, you know what happens when a huge CO2 bubble in the earth releases? [05:28:34] little brown kids in africa wil die because of whatever you do or think of doing! so fucking stop it! [05:28:40] you know, geothermal and nuclear energy both have their origin in supernovas which occurred billions of years ago, before the formation of the earth [05:28:51] hi [05:29:01] is this possible to see how many counts there are on a single page [05:30:38] replikant: anyways, I don't have a problem with releasing some CO2 [05:30:52] just not enough that it fucks the atmosphere [05:31:27] that supernova sure f****d up some atmospheres [05:31:46] maybe it's not ethical to be using the proceeds of such monumental destruction for our own profit [05:31:55] stop typing! stop thinking! stop wasting energy! whaterver you do killes cute polar bears.. [05:32:21] TimStarling: haha, when I say "fuck", I mean relative to the biosphere and stuff [05:32:51] i said: stop THINKING! [05:32:55] Jonathan26: what do you mean? [05:33:18] vote some dude that promises to save humankind. it all has a history [05:33:31] MZMcBride: some statistics for a single page. [05:34:00] there's an "info" option that can be enabled [05:34:07] see DefaultSettings.php [05:34:18] though i have no idea what it does [05:34:18] on wikia I mean [05:34:27] or on wikipedia [05:34:40] what kind of statistics? page hits? words? character count? [05:34:46] page hits [05:35:50] well for wikipedia there's wikicharts [05:35:51] AaronSchulz: sure, it's ok when somebody else's planet gets trashed [05:36:10] does it have a biosphere? [05:36:31] maybe [05:36:43] and there's a newly-created page hit counter here: http://dammit.lt/wikistats/ [05:37:02] on wikia, i don't know what their set-up is; i would try #wikia [05:37:04] MZMcBride: where is located the wikichart [05:37:20] http://www.google.com/search?btnI=1&q=wikicharts [05:37:55] http://tools.wikimedia.de/~leon/ [05:39:39] death by CO2 cloud must really really suck [07:06:59] what's the ideal pixel size for wgLogo image? [07:57:05] i have an inline query in semantic media wiki like this: [[Category:City]] [[located in::[[Category:Country]] [[located in::Asia]]]] [07:57:54] but i dont get all results. if i write [[located in::*]] instead of the subquery, it shows me all cities,including the ones in asia [07:58:14] when asking only for the subquery i get all countries in asia [07:58:22] so i dont know if this is a bug... [08:05:54] <_wooz> lo [10:40:05] help: I do get this error mssg if ppl try to add useraccount: [10:40:05] Could not send confirmation mail. Check address for invalid characters. [10:40:18] error_log(/tmptmp/mw.log) [function.error-log]: failed to open stream: No such file or directory [10:40:40] does someone know what this error is? [10:44:06] you specified bad log file? [10:46:10] can you help me with that please? [10:46:18] im not really sure what you mean [10:46:20] check for mw.log in your LocalSettings.php [10:49:29] yes specified like this: [10:49:29] $wgDebugLogFile = '/tmptmp/mw.log'; [10:49:36] should i make this file? [10:49:49] place an empty file in that directory? [10:49:58] I suppose the wiki directory [10:53:05] still getting this error :( [10:56:07] AlfaDelta: the path /tmptmp doesn't look right. [10:56:13] does tmptmp exist? :) [10:56:21] AlfaDelta: try /tmp/mw.log [10:56:27] yes i just created that path [10:56:34] ok [10:56:51] AlfaDelta: no. you created one in the mw root path, right? [10:57:36] yes [10:57:47] but since you specified it absolute '/tmp/' it doesn't find it. you could also try and set it relative 'tmptmp/mw.log' without the leading slash [10:58:02] COOL [10:58:05] PunkRock [10:58:07] YOU ROCK [10:58:09] thnx :P [10:58:12] np. [10:58:15] tmp did the thing [10:58:25] tmptmp is not good [10:58:33] thnx, your help is much appreciated [11:03:45] re [12:34:42] Is it possible to customise how category pages list articles? I have numbered articles (say, 1-1 to 1-50) and I don't want 1-6 to be sorted after 1-50. Also, is it possible to list articles only in one column? [13:16:44] Snigelinux: i don't get the point. which articles are 1-6 and which one are 1-50 aren't 1-6 included in 1-50? I am deeply confused.... [13:17:12] Snigelinux: AH! [13:17:31] Snigelinux: the acrticle is in fact called '1-5'? [13:17:49] Yes. [13:17:51] Exactly. [13:17:52] Snigelinux: thats .... nasty .... ok. but apart from that. [13:18:37] I understand that it would have been better to call them 1-05 etc, but that's too late now. [13:19:12] Snigelinux: you can't move em? [13:19:15] darn. [13:19:40] Move? You mean rename them somehow? [13:19:58] Well, there are about 50 of them, so I CAN, but i don't WANT to. :) [13:24:44] you can set a sort key in the category link in the article [13:24:53] [[Category:Whatever | sortkey]] [13:25:10] so you don't have to rename them, just change that [13:26:28] renaming sounds like a job for regexes [13:27:02] but that all includes that he has to do it 50 times, right? [13:27:14] i mean adding the sortkey at least. [13:27:21] as I said, regexes. [13:27:36] that would mean hacking the code. [13:30:58] Hm... that is easier than moving/renaming all the articles though. [13:31:13] And I'm a newbie, so i'm not going to hack code if I don't have to. [13:32:51] would not mean hacking the code [13:33:00] it'd just mean botting it.. use AWB or something [13:33:58] Okay. I've no idea what you are talking about, but please explain. [13:35:15] he means that a bot renames the article to a new name. [13:35:24] Werdna: am i right/ [13:35:25] ? [13:35:34] no, that changes the sortkey [13:35:36] as tim said [13:36:08] ah. yeah. got it. [13:36:37] you want to edit the contents with a bot that makes a regex and replaces the text. [13:37:04] mmhmm [13:40:54] Can you give me a reference where I can read more about this? I have to leave now, but will remain logged on. Thanks for your help. [13:41:25] http://autowikibrowser.sourceforge.net [13:42:32] anybody knows about acess control [13:42:34] ? [13:42:50] !access | klapzin [13:42:50] klapzin : For information on customizing user access, see . For common examples of restricting access using both rights and extensions, see . [13:42:54] !faq | klapzin [13:42:54] klapzin : Before reporting a problem or requesting assistance, please check the FAQ first. The FAQ for MediaWiki can be found at http://www.mediawiki.org/wiki/Manual:FAQ [13:44:10] Werdna, i already read the docs about it.. [13:44:22] i create one group called Foo [13:44:27] and i put the users [14:01:46] hello [14:01:59] hi [14:03:47] hello. [14:04:42] i understand the how to create a table of content for a page using TOC, but can i create a list of child headings for a single heading? [14:04:54] what are you doing? [14:07:08] i want to automatically generate a list of all h3 (children) of a specific h2 (parent) [14:07:12] sort of a mini-toc [14:20:24] How do I get the last revision with API? [14:26:28] How do I get the last revision with API? [14:37:44] Dvyjones: what do you mean? api.php has been in all releases since, oh i dunno, 1.9 or so [14:38:22] I mean, how do I get the last revision on a page on the wiki with api? [14:38:24] any way to do a section-specific min toc? [14:38:58] Dvyjones: ah, now i git it :) i though you meant software revision [14:39:26] Dvyjones: do you want the full wikitext? or meta info? or revision id? [14:39:45] ricks99: i don't think so. well, by hand, obviously [14:39:49] the full wikitext [14:40:11] by hand = maintenance nightmare :( [14:40:13] Dvyjones: not sure if api.php supports that, because there is a special action for this: use action=raw on any page [14:40:48] Dvyjones: alternatively, you can also use Special:Export/pagename [14:40:53] which gives you some metha info [14:41:01] i don't know if api.php replicates that functionality [14:41:22] Does anybody here know how to strip html tags from a string in C#? [14:42:02] Because, I am making a irc bot for my channel, and I want it to put the first 150 chars of the page when !page is called) [14:43:52] Dvyjones: don't know C#, but a quick&dirty perl/sed style regular expression would be s!<.*?>!! [14:44:18] I know, I'm just trying to find outthe regex function i C# :P [14:44:33] google should know about that one [14:45:05] google sais: System.Text.RegularExpressions [14:45:15] aah [14:45:18] ty¨ [15:44:45] Can pywikibot be configured to use a wiki that's on https? [15:46:32] (assuming WikiMedia uses MySQL) where can I find the username/password for backing up the database? [15:47:15] you mean MediaWiki? [15:47:24] d'oh, dyslexia [15:47:32] yes. [15:47:43] the username/password used by the wiki is in LocalSettings.php [15:47:52] I did make it to the channel alright, heh [15:48:02] (Wikimedia btw is the organization that runs Wikipedia, and supports MediaWiki development) [15:48:38] (so, in that sense, yes: Wikimedia does use MySQL - though they are unlikely to share their password) [15:49:05] that is probably why it was on my mind then. was installing the Cite extension today, and I realised the database is not being backed up, so I was trying to do that now [15:49:08] Is there a mw function that turns a unix timestamp in to a 'localized' formatted date/time? [15:49:26] TimLaqua: i think #time can do that [15:49:49] Duesentrieb: the php func? [15:49:58] no {{#time}} [15:50:06] ooooo [15:50:07] ah, you mean php... [15:50:10] hmm... [15:50:15] uh, there's wfTimestamp [15:50:18] if you're using PHP, then date() has an item to do it in local format [15:50:36] TimStarling: for the localized stuff, use the methods in the language class. [15:50:50] when do items in the JobQueue get executed? article views? article edits? special page views? [15:50:54] i think they are called just date/time or dateAndTime, or some such [15:51:01] language classs... new to me. I'll go take a look [15:51:08] jimbojw: page view, randomized [15:51:20] Duesentrieb: so is there a global that holds the current user's language class? [15:51:25] TimLaqua: that'S where all the localization stuff is done. [15:51:28] thanks Duesentrieb [15:51:29] $wgContLang [15:51:34] I think [15:51:39] isn't ContLang site language? [15:51:40] no, that's content language [15:51:42] as the name suggests [15:51:50] it's just $wgLang i think [15:51:54] content language is the one the user has selected [15:52:01] language is site language [15:52:02] Werdna: false. [15:52:05] lol [15:52:06] hmm? [15:52:11] then which one has the user selected? [15:52:13] Werdna: it's the other way around [15:52:15] *content* [15:52:18] are the CIA bots working yet? [15:52:20] as opposed to *ui* [15:52:25] ah, right, I see [15:52:33] *Werdna is up at 3am playing flash games.. go figure [15:53:12] TimLaqua: i don't see one on this channel. so i guess: no. [15:53:36] sigh. the MediaWiki database password is the same as the systems root password. I don't get why people are so darn insecure. now I needa go figure out how to change the MySQL pass to something unique [15:53:47] Duesentrieb: well they were on the last two days, but they weren't doing anything. ;-) [15:54:44] Werdna: Blokus is a fun flash game (it's a puzzle board game, but they have a free online one). [15:55:06] TimLaqua: yea. so now they are gone [15:55:13] Samus_Aran: you can just grant - GRANT ALL ON wikidb.* TO 'wikiuser'@'localhost' IDENTIFIED BY 'uniquepass'; [15:55:37] then update your DB config in LocalSettings.php [15:56:42] \o/ [15:56:53] wb, CIA-6 [15:57:23] *Duesentrieb tickles CIA-6 [15:57:32] bah, it should respond to that [15:57:40] *Duesentrieb kicks CIA-6 [15:57:48] oh, now you've done it. [15:57:58] :P [15:57:58] ow [15:58:06] heh. a bit slow today. [15:58:11] but he likes it rough [15:58:18] is that bot on the toolserver? [15:58:26] i don't think so. [15:58:42] which bot? [15:58:44] I really wish it would link revision numbers to viewvc [15:58:48] amidaniel: CIA bots [15:59:04] Oh no, they're from http://cia.vc [15:59:25] can we make them link revision numbers to viewvc? [15:59:39] Have to talk to them .. who knows [15:59:52] Formatting IRC output is not the easiest thing howver :) [16:00:05] And links usually just clutter up channels, I find [16:00:11] ;-) bugzilla does it just dandy. [16:00:27] er... wikibugs? whatever that bot is [16:00:32] Yeah :) [16:00:45] Well, I think they're over in #cia if you'd like to yell :) [16:01:00] to the batmobile! [16:01:04] hehe [16:03:34] password updated to something long and silly (I wrote a sentence, as it's in plain text anyhow). [16:04:30] thanks for the help/suggestions Duesentrieb, TimLaqua et al. [16:05:59] sweet [16:06:14] just drew numbers for cubicles in the new building [16:06:20] I got a corner cubicle :D [16:06:36] this organisation's servers were really a sad hackjob. I'm kind of surprised nobody took them over. same passwords used everywhere, expensive server physically sitting where anyone could walk away with it, etc. [16:06:50] MySQL root user didn't even have a password on it [16:07:01] cool :) [16:07:08] eesh [16:07:10] and... open to the wild net, too? [16:07:26] that's not so bad as long as only localhost can login [16:07:41] they had a router, but of course it used the same password as everywhere else and I think it had remote access enabled [16:07:42] which is default for root. yes [16:07:50] >_< [16:09:12] their networking was also funny. they had an ugly printout that was supposed to show where all the network ports went from the patch panel. but I found more than 10 places around the office that were not mentioned anywhere [16:09:25] anyhow, I'm going a bit far off-topic. thanks again [16:09:39] hehe [16:10:30] I love companies that refuse to hire competent IT people until it's way, way too late [16:11:42] the former tech had them buy an expensive rack-mount server, then proceeded to place it on a wooden Ikea shelf by the kitchen, with volunteers and the public walking by. [16:12:33] o.O [16:13:06] and of course the web services they actually run from this server could easily be handled by a $100 computer off CraigsList [16:13:43] not as reliably probably [16:14:28] Yeah, but it's your average IT guy's job to sell you the best and most expensive option out there :) [16:14:36] hot swappable raid drives, dual power supplies, dual nics.. [16:15:18] and you'll probably want at least 2 of those servers for redundancy [16:17:01] And not to mention, you probably need to get yourself 32GB of memory and four dual-core processors, because serving 20 page views a day takes a hell of a lot of processing time! [16:18:51] amidaniel: I think the last IT had them buy it because he was taking Microsoft Certification at the time, and wanted a live Windows Server 2003 to play with. the web services run from Ubuntu in a VMware virtual machine [16:19:06] it's quite a silly setup [16:20:15] VMware Player, even. there's not even a way to change the settings. I will be moving it over to the free VirtualBox at some point [16:21:23] Yeah, if I'm ever hiring IT people and see someone come in with a Microsoft cert -- even if they're some brilliant PhD -- they ain't getting hired :) [16:21:49] can anyone comment on any issues updating MediaWiki to a new version? it is currently using 1.9.2 I think, or is that 1.92 [16:22:49] !upgrade [16:22:49] http://www.mediawiki.org/wiki/Manual:Upgrading [16:22:53] I see 1.11.0 on the site. I'd be into upgrading, but not if it's going to make everything explode =p [16:23:04] thanks [16:23:39] The only "issues" I know of are with people using very custom skins [16:24:21] well... [16:24:32] 1.11 got stricter about extensions. some might need a slight fix [16:24:36] be sure to upgrade [16:24:43] err, upgrade the extensions too [16:24:44] Ah, yeah, forgot about that [16:24:54] there's nothing particularly custom on the site, other than lots of content. the look is default, as far as I can see. haven't looked at the templates [16:24:56] All the extensions on svn should be compatible though [16:25:09] what else... i think the db upgrade had issues for some odd mysql configurations. charset stuff, as always. [16:25:30] the ones on svn should be compatible *now* :) you need to upgrade them. [16:25:40] Duesentrieb: the Cite extension I just installed today from SVN, and it is the only extension on the Wiki [16:25:49] should be ok then [16:25:57] as always: make a backup [16:26:08] beware the charset gotcha with mysqldump [16:26:30] see here: [16:26:33] I am not aware of this character set problem with mysql dump. do you have a link ? [16:26:33] !backup [16:26:33] http://www.mediawiki.org/wiki/Manual:Backing_up_a_wiki [16:26:39] thanks [16:27:00] it only applies for some copmbinations of config of mysql and mediawiki. a failry common combination, though [16:37:22] Duesentrieb: thanks, that was useful info, and latin1 was being used [16:40:22] Hi 2 All [16:40:42] Who can help me with MediaWiki? [16:41:03] just ask your question, if anyone knows you'll get an answer [16:42:41] the question is about Extension:DiscussionThreading, anyone know it? [16:42:55] !ask | Janka [16:42:55] Janka: Don't say "I have a question", or ask "Is anyone around?" or "Can anyone help?". Just ask the question, and someone will help you if they can. Also, please read < http://workaround.org/moin/GettingHelpOnIrc > for a good explanation of getting help on IRC. [16:44:07] Duesentrieb: I also didn't know about the XML dump of the Wiki, that's also useful. thanks [16:44:56] just ask your question about the DiscussionThreading extension Janka, you won't know until you ask the question [16:47:40] i want to change the title of discussion. I would to change username with realname [16:48:29] and the user link to an external link profile [16:48:45] amidaniel: the #cia guys say that we can link revisions using the "notification scripts" [16:48:51] whatever that means. ;-) [16:49:27] TimLaqua: Oh? I'm guessing something in the ping relay to cia? [16:49:35] Best talk to brion about it, then [16:49:37] amidaniel: I don't even know what you just said [16:49:42] ;-) will do. [16:50:18] TimLaqua: The lil postcommit hook that sends an email to the cia folks and tells them to tell the bot to scream [16:50:22] :) [16:54:23] TimLaqua: would you mind giving me the command to add 'LOCK TABLES' right to the user joe_wikiuser? it doesn't want to let me mysqldump without it [16:56:14] TimStarling: what about extending config.php featues? E.g. adding upload configurtion (AFIAK it isn't in installation script) [16:56:24] Samus_Aran: GRANT LOCK TABLES on wikidb.* to 'joe_wikiuser'@'localhost'; [16:57:22] if that fails, throw the IDENTIFIED BY 'pass' clause in there [16:57:57] TimLaqua: if the LocalSettings has a prefix, would that replace the wikidb.* ? it is this: $wgDBprefix = "joe_"; [16:58:22] no, the prefix is for tables, not the database [16:58:39] i.e. rather than wikidb.user you have wikidb.joe_user [16:59:15] okay, it has this then: $wgDBname = "joe_wikidb"; [16:59:35] then yeah, it's joe_wikidb.* [17:00:29] so if you also have the prefix set to joe_, thenyou have some redundancy going on w/ your prefixes: joe_wikidb.joe_user [17:00:46] TimLaqua: thank you. I've been using MySQL for a few months, but all managing tables for use with PHP. appreciated you helping me with the administration side [17:01:13] np. [17:02:17] I am trying to get their servers at least backing up everything relevant on a regular basis. there is a lot of useful content on their sites, but nobody has put any effort at all into security or backups, bleh. [17:03:52] would updating the cologneblue skin to be monobook based be considered a good-thing? [17:04:03] umm... no? [17:04:09] I am always impressed with how well rsync works. even with 650 MiB of files on their web site, it scans for changes almost instantly (that's probably mostly due to their way-too-expensive server) [17:04:24] darkcode: I'd call it a neutral thing. ;-) [17:05:03] but then I noticed today that the Wikis wouldn't get backed up by rsync, so I need a cronjob to dump them [17:05:19] ZFS? :D [17:05:33] I'm also going to try the XML dump thing I just read about [17:05:42] Samus: make sure you backup the uploaded files too [17:05:46] by "a good thing" I mean as in something that would likely make it into trunk if done [17:06:04] RedACE: yep, the rsync on /var/www takes care of that [17:07:58] now that I've managed to get one bug fix, I'm tempted to tackle updating the cologneblue skin if it makes any sense [17:16:10] if dumpBackup.php is meant to be run from the command line, it should have a shebang as the first line [17:16:27] such as #!/usr/bin/env php [17:23:28] Samus_Aran: It's not supposed to be run in shebang-style [17:27:19] amidaniel: "To create an XML dump, use the command-line tool dumpBackup.php, located in the maintenance directory of your MediaWiki installation. Running the command without any arguments will display a brief description of the syntax." [17:27:28] that's what the page I'm reading says [17:28:05] Samus_Aran: "use the command-line tool dumpBackup.php" = Type "php dumpBackup.php" [17:29:43] amidaniel|away: well I added the shebang to it, and now it's a command line tool =) [17:30:29] the instructions do not tell the user to run it with php, and if it's never run from a web server, the shebang is a good thing [17:30:56] the file is set executable, which means it should be capable of executing, but it is not [17:31:03] it is being treated as a text file [17:31:46] which needs an executable (php) to parse it. so either setting it as rw-r--r-- or adding the shebang would be proper [17:32:06] s/parse/interpret/ [17:32:42] as it is now, if you run the command, it will try to parse it as a Bash script (or whatever shell you're using) [17:33:57] also, almost every Unix and GNU/Linux system has /usr/bin/env, so it's quite universal to use that in the shebang [17:36:03] It shouldn't be made executable ... [17:36:16] And this needs to be windows-compatible as well [17:38:18] it appears to be in Unix text format [17:38:48] The windows php interpreter can handle unix and windows formats [17:39:13] anyhow, if that is the case, it should be packaged non-executable. I'll update the text on the help page to tell the user to put "php" before it [17:39:13] (and mac for that matter, I believe) [17:39:27] it is packaged non-executable ... [17:39:34] If it's executable, you must have made it [17:40:31] well, I didn't, but the former tech may well have done so [17:40:44] okay then [17:40:48] Then thar you go :) [17:41:48] or the package manager they used did [17:41:59] if they used one [17:42:32] Yeah, indeed ... people who install webware from package managers deserve a slow painful death :) [17:45:12] updated the text on Manual:Backing_up_a_wiki#XML_dump to tell them to call it with "php" [17:45:51] I keep getting sidetracked. need to get back to what I was originally supposed to be doing hours ago, installing Cite and making a small help page for our users, heh [17:49:05] hm. all I can get dumpBackup.php to produce is: DB connection error: Unknown error [17:49:14] not very informative [17:49:35] php dumpBackup.php --full [17:49:38] Have you added settings to AdminSettings.php ? [17:50:20] I haven't, but others before me may have. I've just modified LocalSettings. is there something I should be looking for ? [17:50:54] Read AdminSettings.sample add change the two configuration settings - then save it as AdminSettings.php [17:52:41] I just noticed that one sentence in the section I've been reading: "If an attempt to use dumpBackup.php fails, see if creating an AdminSettings.php file solves the problem." [17:53:02] it should probably say that more prominently, at the beginning [17:53:32] Yep. [17:53:34] adk [17:53:55] also, it makes it sound like dumpBackup.php might work without AdminSettings.php for some people. is that correct, or will dumpBackup.php never work without it ? [17:54:44] If they have a user named NULL with password NULL maybe :) [17:55:10] heh [17:58:40] it wants the MySQL admin user in AdminSettings.php. would it still work if I just provide the wiki user ? I would rather not provide the global MySQL password in plaintext [17:59:04] I have granted lock rights to the wiki user already [17:59:27] You don't need to provide a root user, but you should provide an account with all necessary permissions to administrate the given db [17:59:50] You should have two users set up for the wiki database -- one with normal read/write powers, and another with structure, etc. powers [18:01:29] okay, thank you [18:05:41] are there any files in the mediawiki directory which need to be set executable ? everything has been set +x and I'd like to remove it from everything if that won't break anything [18:06:34] Only thing I could think of would be if you compiled texvc (in the math directory) or if any extensions are using executables [18:06:53] None of the core files should be +x, however [18:07:13] well the dirs of course need to be +x [18:07:19] find . -type f -exec chmod --changes a-x {} ';' [18:07:26] Well, other than the directories, of course :) [18:07:46] everything seems to be fine. and now everything isn't green in the dir listings, heh [18:07:54] hehe [18:08:35] I don't know what the previous tech spent his time on, but clearly not doing things properly [18:11:14] the XML dump is going well now [18:12:29] the ETA it showed is in another timezone, presumably UTC [18:13:08] 691 pages (33.905/sec), 2797 revs (137.240/sec) [18:13:40] 94 MiB total, uncompressed [18:16:49] 5.7 MiB compressed. good ole bzip2 [18:46:31] do my mysqldump for backup purposes [18:46:51] not xml dump [18:50:54] RedACE: It is reccomended to do both. [18:52:40] hi there [18:56:12] minute, there's really no reason to. [18:56:16] You could if you wanted to. [18:56:21] You could also take disk images. [18:56:40] And use RAID. And slave servers. Across the continent, in case a meteor strikes your data center. [18:56:52] And bury tape backups in a bunker in case of nuclear war. [18:57:04] Fair enough, but yeah, XML dumps are really quite useless backup-wise; since you need all that data. [18:57:07] But really a database backup, onto a couple of separate disks or using RAID, is fine for any plausible scenario. [19:11:25] I like the XML backups for my case, as the content is the only important part [19:12:21] a group of us converted a public domain book from PDF to Wiki format. if the users and such were lost, it wouldn't matter much [19:12:38] (but yes, I am doing both a MySQL and XML dump) [19:13:17] if you lose your drive, you'll want to restore from a database dump, not an xml dump [19:13:49] mysql ... < backup.sql # is much easier [19:14:06] I backup using mysqldump personally. Never had a problem. [19:14:21] and maintains users, revision history, etc [19:16:46] like the braves....rsync to other hd, server, or whatever you want [19:16:55] I do all of the above =) [19:17:03] rsync to another location [19:17:13] if you want to migrate between differents architectures or mysql versions....mysqldump [19:17:27] rsnapshot+ssh publik key on a intranet [19:17:43] what is rsnapshot ? [19:17:51] !google rsnapshot [19:17:51] You don't have permission to do that. [19:19:03] mwbot> don't you feel useless ? [19:19:23] @trust wikipedia/Hashar [19:19:23] Added wikipedia/Hashar to trusted hostnames list. [19:19:25] a script to manage rsync [19:19:27] :-) [19:19:33] for put on crontab [19:19:48] Jack_Phoenix> thx :) [19:19:53] !google rsnapshot [19:19:55] afaik mwbot doesn't do google searchs [19:19:56] np :) [19:20:00] jajajaja [19:20:02] :-P [19:20:12] it said no permission because you tried to execute a command [19:20:29] where are ircbot code? [19:20:36] i was triying to find servmon [19:20:44] but....too old say somebody [19:20:46] amidaniel|away: hey, can you make mwbot do google searches? [19:20:48] ;-) [19:20:56] mwbot? [19:20:58] ok [19:21:58] arrrghhh more time to wait [19:22:27] I am too lazy to alt-tab to firefox [19:22:38] mwbot need a fix RIGHT NOW! [19:26:15] arrrghhh upgrading leopard toooooo slooowwww [19:26:28] 500 MB with my girlfriend office's wifi [19:26:30] :-P [19:26:47] silly mac user [19:26:55] compared with my offfice....this is like a modem 33 kbs [19:27:41] new laptop [19:27:45] new mysql server [19:28:02] well....this year santa goes very very fat! [19:28:44] The cheapest macbook is 1099 US$ or 1049€ [19:29:00] but 1100$ is only 750 euros, something is wrong :( [19:29:14] add tax and 1800 € [19:29:16] and then you have to buy software ontop of that! [19:29:36] why 1800€ ? [19:29:50] because he didn't buy the cheapest one? [19:30:10] I need to fly to USA one day and bring back a macbook <) [19:30:21] hashar: US prices are usually converted into £ and € at a 1:1 rate [19:30:28] 16% taxes [19:30:31] he likes giving money to evil companies [19:30:35] europe is different :-P [19:30:54] hospital, universities, libraries and so much [19:30:56] and public [19:30:58] free for all [19:31:04] at least on spain :-D [19:31:04] but the $ € rate is more like 1.5$ = 1 € [19:31:22] hashar: yes, but they've never paid attention to the actual rate [19:31:23] well steve jobs need to grants his retired :-P [19:31:43] in france there is a 20,6% tax, but it is usually included in the price [19:31:47] a second....1800 or 1500 :-S [19:31:57] they are so evil, I am not going to buy a mac so ) [19:32:12] no no 1800 because i buy a external hd too and paid 2000 € [19:32:19] for both [19:32:27] 2000 for an external HD? [19:32:34] damn macs are a rip [19:32:57] (maybe I should buy a dell laptop with ubuntu) [19:33:30] noooo for both [19:33:33] 150 € [19:34:45] hashar, I looked at those a couple weeks ago [19:34:56] it seems the laptops they offer ubuntu on are very limited [19:35:10] you can't choose any model and select ubuntu [19:35:29] and they don't seem to offer them at all in Canada [19:35:33] :(( [19:35:35] at least not on the Canadian site [19:35:52] perhaps if you order by phone they'll give you the option on any model [19:35:56] *hashar looks at dell.fr [19:35:58] Currency Converter 1.3 [auk.ca/1z] 100.00 Euros = 144.15 United States Dollars (Rate: 1.4415) [19:36:06] or a no-operating system option [19:36:33] but I know if you order a laptop with windows, then install another OS, you can get your redmond tax back from bill [19:37:05] PC Open-Source (Linux) !!! [19:37:57] RedACE> I dont care if Dell get some extra cash if I am choosing ubuntu. [19:38:20] Samus_Aran> that's why I feel the macbook prices are wrong when comparing € and $ [19:38:32] hmm there are two different things Dell offers [19:38:41] one is Ubuntu, the other is some Free-DOS thingy [19:38:47] I didn't realise the Euro was that much higher than the USD [19:38:58] many places offer rates almost the same for Euro and USD [19:39:01] Samus: It's just the USD is so low right now [19:39:38] RedACE: are you kidding, Dell offers FreeDOS ? [19:39:53] I am wondering if I can buy one on apple.com/us and get it for less € than on the apple.com/fr site :o) [19:40:21] I can't imagine who would want to buy a new computer and put an ancient OS on it [19:40:45] hashar: but I don't imagine they will ship to other countries, right ? [19:40:54] Samus_Aran> probably not (: [19:41:11] twincest, I always assumed that the reason the rate is like 1:1 is because of higher sales tax in Europe. [19:41:34] in france that's 20,6 [19:41:42] I just noticed that the CAD is lower than the USD again. it's been higher for a while now [19:41:45] In US sales tax is normally under 10%, AFAIK. [19:41:55] At least that's how much I see on bills, maybe there are hidden taxes too. [19:42:00] Simetrical: yes, clearly the 5% vs 17.5% tax is the reason prices are 50% higher in the UK... [19:42:09] Hmm, point. [19:42:15] so the cheapest one i can buy is 1049€ tax included [19:42:16] *Simetrical didn't make much of a study of it [19:42:19] They offer Free-DOS intended only to help you install an OS... which I don't really understand but it's basically they're "No OS" option [19:42:29] Well, they're presumably ignoring currency fluctuations. [19:42:42] RedACE: MS-DOS can't be distributed without a license from MS - people have been prosecuted for it before, iirc [19:42:44] So maybe it was a good reason several years ago when the dollar was stronger. [19:42:45] *Simetrical shrugs [19:42:57] (people used to format/s disks for driver installs and such, and ship it with their products) [19:43:21] twincest> UK should join the evil euro join one day ) [19:43:30] I am tired of using ££ [19:43:34] here in Canada there are major issues with the CAD vs USD, as the CAD is finally on par or above the USD, yet so many products here are still sold at the very old rates [19:43:36] twincest, I understand that [19:43:42] especially car manufacturers [19:43:43] hashar: that'll never happen when the country is full of insane nationalists [19:44:00] you can easily pay 20% more for the same vehicle [19:44:02] The monetarists would say there's good reason not to go merging currencies left and right. [19:44:08] Where are you located Samus? [19:44:09] Can't control inflation properly, or whatever it is they do. [19:44:15] RedACE: Vancouver, BC [19:44:22] ah, far away :p [19:44:23] the people objecting to the Euro in the UK have no idea what the arguments for/against it are :) [19:44:37] That much is true. [19:44:39] they just don't like it because the Sun writes that the pound is a part of british culture [19:44:42] But then, nor do the politicians. [19:44:51] RedACE: you're in London, ON ? [19:44:57] yes [19:44:59] Things would be rather different if you actually had economists deciding economic issues. [19:45:06] I've never been back east, yet [19:45:18] But thus is democracy. [19:45:20] well, the politicians do what their constituants wants (mostly) [19:45:27] Right. [19:45:39] I loved the 1 shilling = 12 pennies (or something like that) [19:45:50] (which is why democracy doesn't work...) [19:46:01] Nobody cares that, I don't know, most economists think a minimum wage just increases unemployment. [19:46:03] Or whatever. [19:46:14] oh my god [19:46:17] twincest, the best form of government is rule by a wise and benevolent dictator. [19:46:20] RedACE: actually, I have never been anywhere in Canada but BC, though I've been to places in Washington state, Hawaii, Guattemala, Asia [19:46:28] Simetrical: yes. i think we should bring back the monarchy [19:46:31] welcome back brion ) [19:46:32] Unfortunately he has to pick and wise and benevolent successor when he dies. [19:46:42] And then his successor does too . . . and it tends to fail somewhere. [19:46:55] I, for one, will welcome our computer overlords. [19:47:04] Simetrical> that's what we are doing in france, we actually elect a dictator :o) [19:47:07] hey hashar :D [19:47:10] i'm stealing neighbor's wifi atm [19:47:12] sudo ./skynet [19:47:14] twincest: the US hasn't had a democracy for a long time now [19:47:16] waiting for cable guy to come set us up [19:47:30] is your neighbor aware ? [19:47:48] Samus_Aran, it's a representative democracy, as it always has been. [19:47:59] actually, it's a republic.. [19:48:15] the US is currently a voluntary dictatorship [19:48:20] brion-notworking> and are you finally back to San Francisco or still in Tampa ? :o) [19:48:42] the majority of people still believe it to be a democracy, so they can continue on their merry ways [19:48:42] san fran... flew in last night [19:48:45] RedACE, "republic" is ambiguous, I don't like it. Can mean a state without a monarch, or a representative democracy. The US is both, Britain is only a republic in the latter sense. [19:49:19] Samus_Aran, yes, because nobody consults Congress on anything, right? Congress couldn't, by the two-thirds majority prescribed by law to override veto, remove funding for the Iraq war, say? [19:49:24] Simetrical: what is meant by "representative" democracy ? [19:49:34] same dog with different bone... [19:49:38] Simetrical, fine.. I was just quoting The West Wing ;) [19:49:43] Samus_Aran, as opposed to direct democracy. You elect representatives to vote for you instead of voting on issues yourself, mostly. [19:49:52] (although some states have referendum systems too, secondarily) [19:49:56] political now is economy [19:50:02] like china [19:50:05] india [19:50:07] brasil [19:50:08] brion-notworking> give us some pictures of your new flat on flickr :) [19:50:11] and so... [19:50:42] Simetrical: I mean the US government has thrown out the constitution and is continually breaks larger and larger laws. Bush even keeps signing new 'rules' himself which he does not have the authority to do [19:50:52] *breaking [19:50:59] will do once i get more stuff set up :) [19:50:59] Samus_Aran, what aspects of the Constitution has it thrown out? [19:51:27] brion-notworking> come on, you already got an internet connection and you probably have your camera on your desktop ! [19:51:29] Samus_Aran, I'm not going to disagree with the law-breaking . . . he'll get called out on it eventually, but the court cases take so long that it hardly matters, and he's effectively immune from prosecution himself. [19:51:51] Ultimately, however, the limited duration of office makes it democratic. [19:52:07] Hmm, there are some laws where the president has the power to define what they mean [19:52:22] The powers of the various branches are not always spelled out clearly. [19:52:30] Simetrical: free speech for example. there are now "free speech zones" in many cities. also, you no longer have the right to an attorney is you are suspected of 'terrorism' (which includes *all* crimes) [19:52:37] Which is why the president is exempt from many laws because he can choose to have them not apply to him :p [19:52:38] *if you are [19:53:17] Where are you getting this from? [19:53:30] they have also passed laws which allow violent interrogation [19:53:40] Samus_Aran, for free speech: nonsense. Free speech includes, according to the Constitution, the right to assemble peaceably. It does not guarantee that you may assemble in any place you wish; cities have always banned protests or other gatherings from being disruptive in various ways. [19:53:45] Why do you think they keep the terrorists outside the US? [19:53:50] ... so US laws don't apply [19:54:16] Samus_Aran, also keep in mind that the Alien and Sedition Acts were passed under ten years after the First Amendment was ratified. The government trying to cut back on free speech in certain limited ways is hardly anything new. [19:54:46] RedACE: they can now imprison anyone (citizen, foriegner, you, me), with or without evidence, indefinitely, legally [19:54:58] no lawyers involved [19:55:17] no recourse [19:55:31] Samus_Aran, any American citizen or resident alien has the right to an attorney when accused of terrorism. Non-citizens not on American soil are unprotected by the Constitution and always have been. Captives of war have never had the right to a lawyer. [19:55:41] Simetrical: incorrect [19:55:55] Samus_Aran, give an example of a citizen who was held indefinitely without access to a lawyer. [19:56:11] Or resident alien. [19:57:25] Simetrical: there are hundreds of cases of these detainments. they've been doing it non-stop since 9-11 [19:57:32] Samus_Aran, so you can easily give me one example. [19:57:45] I am aware of citizens who have been held and tried for crimes relating to terrorism. [19:58:01] I am not aware of any who were denied habeas corpus or a lawyer for any prolonged period. [19:58:25] calm my brothers...calm [19:58:41] Simetrical: http://auk.ca/m8 << ny times report on a 38 year old citizen imprisoned for a minimum of 2 weeks without a court appearance [19:58:42] bush doesnt stay on white house more [19:58:59] and rest world can breath in peace [19:59:41] without a court appearance? [19:59:45] so what? [19:59:49] "Since the attacks of Sept. 11, 2001, the courts have made conflicting rulings on the legality of holding material witnesses without charging them." [20:00:11] You aren't allowed to be held for trial without charges or a lawyer. [20:00:26] The same does not necessarily apply for holding witnesses, evidently. [20:00:46] At least one court has upheld it. [20:00:54] So you can argue it's against the Constitution, but it's not clear. [20:01:46] Samus_Aran, and your own article denies your "hundreds" claim. It says "Civil liberties groups say they believe the number is about 20, though most are not American citizens." Although of course that was 2003. [20:02:17] Ultimately, you cannot call a country of 300 million people unfree because of what happens to a few dozen, although I agree with you that the few dozen should be protected as well. [20:02:22] Simetrical: you should read the 'Uniting and Strengthening America by Providing Appropriate Tools Required to Intercept and Obstruct Terrorism Act' of 2001. it is entirely dictatorship and tosses out large portions of the constitution [20:02:44] Samus_Aran, the Patriot Act? What constitutional provision does that breach, clearly? [20:02:47] Simetrical: of course you can call it unfree [20:02:59] *Simetrical goes to look for objections, those must be on Wikipedia [20:03:05] Simetrical: just because something doesn't happen to you personally doesn't mean you are "free" [20:03:25] freedom for all or not at all, I would say [20:05:04] Sure, but having freedom for almost all is far closer to having freedom for all than freedom for almost none. [20:05:17] The ideal of perfect freedom is unlikely to be attainable. [20:05:22] http://auk.ca/m9 << Washington Post: "U.S. Can Confine Citizens Without Charges, Court Rules" [20:05:34] Right, a court ruled it's constitutional. [20:05:51] So I guess it is, and we're living under rule of democratically-approved law. [20:05:53] which is a dictatorship, as I said already [20:06:03] Which part is a dictatorship? [20:06:14] um, the government can lock anyone up, without so much as a reason [20:06:27] So? It "could" always have done that. It doesn't. [20:06:45] it could not have done that under the law, no [20:06:48] Except for a very few, where it has a reason but arguably not a good enough one. [20:07:26] A dictatorship implies a lack of accountability. There is no such thing here. Voters can and will vote according to how they feel on these issues, and get the law changed appropriately. [20:07:26] Simetrical: the point is that no reason has to be given. to anyone. which is pretty bad. [20:07:47] Duesentrieb, I agree wholeheartedly. But that does not, by itself, make America a dictatorship. [20:08:02] I don't agree. [20:08:19] A dictatorship is a government in which the number of people with whom ultimate authority rests is very small compared to the population. [20:08:25] it is a voluntary dictatorship. the masses believe they have freedom, so they accept dictatorship [20:08:27] Ultimate power, I should say. [20:08:48] But the masses could oust the president or Congress in the next election, by vote. How can that be a dictatorship? [20:08:50] you are describing America perfectly =) [20:09:09] Do you think that if people voted a politician out of office, that politician would not leave office? [20:09:19] Think Bush will try to cancel the 2008 election or something? [20:09:30] Bush has signed off many of his own personal rules. they didn't pass through congress or any sort of review. nobody even complains [20:09:34] He could, since the US is at war [20:09:35] dictatorship in the strict sense? no. it's simply no longered governed by law, but handed a lot of power to the executive. [20:09:45] RedACE, no, he couldn't. No provision for that in the Constitution. [20:10:02] Simetrical, didn't that happen during WW2? [20:10:04] Duesentrieb, still governed by law, just that law hands more power to the executive than some would like. [20:10:08] RedACE, not that I'm aware. [20:10:11] the us isn't officially at war either, is it? [20:10:28] (go MediaWiki :P) [20:10:28] wasn't this some "humanetarian policing" bullshit to slip is past congress? [20:10:42] Duesentrieb, Congress authorized the president to use all necessary force in Iraq . . . I don't think that's a declaration of war, no. [20:10:48] Duesentrieb, no, it was authorized by Congress. [20:10:57] well, at least something. [20:11:09] bad enough still. [20:11:13] RedACE, the mayoral election for NYC was originally scheduled for September 11, 2001. Giuliani moved it back by like a week. ;) That's all I've heard of that sort of thing. [20:11:39] Duesentrieb, which part is bad enough? All procedure was followed within America for the wars, anyway. Congress and the President and everyone agreed on them. [20:11:41] May have been another country.. Canada or Britain.. [20:11:51] RedACE, yeah, I vaguely recall something like that for Britain. [20:12:05] Simetrical: further examples of dictatorship are that The USA PATRIOT Act allows for complete surveilance (both phones and all internet communications, which are both recorded) of all citizens, without any court order or even a reason [20:12:24] Samus_Aran, that is not dictatorship. That is lack of civil liberties. Political liberties remain unchanged. [20:12:47] And civil liberties in America are still much greater than even many other industrialized democracies. [20:13:18] Offenses that would be jailable in Germany, for instance, are protected as free speech here (related to Nazism, for instance). [20:13:29] Simetrical: I'm not sure what definition of dictatorship you're using, I guess. I consider a government that spies on its citizens, imprisons them, attacks them freely .. as a dictatorship [20:13:37] Simetrical: sidestepping the due process defined for "going to war". and bulshitting everyone about the womd stuff (and trying it again with iran) [20:14:10] Duesentrieb, what do you mean? The process for going to war is, I think, the Senate approves it by majority. It did. I think it decided not to call it going to war for some reason, it called it authorization of force. [20:14:30] if you research the evidence, you will see that 9-11 and the Iraq invasion were both long planned out, in order to pass The USA PATRIOT Act [20:14:53] Simetrical: I mean "for some reason". [20:14:58] even NORAD stood down on 9-11 [20:15:03] Samus_Aran, I would consider a dictatorship to be one where the government cannot be removed by vote (at least at fixed intervals of a few years), even in the face of massive public dislike. Or one where there's so little freedom of speech that a dictator can rig the votes by imprisoning all those who would discourage voting for him (like Russia). [20:15:26] Duesentrieb, I don't know why that is, could be some procedural thing. [20:15:54] Simetrical: if the elite are hand picking who you can vote for, that is a fake election. when the government uses electronic voting machines that have been proven to be easily manipulated, that again is not a free election [20:16:03] Samus_Aran, ah, I see. Well, no, sorry, I've read accounts for all that kind of claim and they all strike me as paranoid raving by people who think Bush is the anti-Christ. [20:16:17] Samus, I think you should be using "police state" in stead of "dictatorship." [20:16:34] I don't think Bush is the anti-Christ, I think he's little more than a puppet [20:16:45] Simetrical: yes. procedural thing. which existed for a reason. but was sidestepped. [20:16:49] Yes, the Bush administration then. [20:16:50] Whatever. [20:16:51] RedACE: I consider them the same [20:17:09] Well they're not [20:17:17] Duesentrieb, I don't know why you care whether it used the word "war" or not? Did it change anything? I don't think it does change anything . . . [20:17:27] Samus_Aran, dictionary disagrees. [20:17:38] In theory you could have a democratic police state. [20:17:47] RedACE, right. Actually I think that's a good idea. [20:18:01] Specifically, I see nothing wrong with an extremely high degree of controlled government surveillence. [20:18:14] Yes we lose privacy, but I care more about stopping criminals. I don't care for privacy rights. [20:19:16] (Which aren't really in the Constitution . . . you can argue about "reasonable search", but I would assume that was meant to refer more to searches that are conducted without reason *and* damage the searchee in some material way, like breaking down their door and ransacking the place. But the courts consistently disagree with me there.) [20:19:37] Simetrical: i just find it dishonest. some discussion here: http://en.wikipedia.org/wiki/Declaration_of_war#Undeclared_wars but it's not a big deal to me. it all stinks to high heaven either way. [20:19:52] Simetrical: the best way to reduce crime is to remove all laws ;) [20:20:09] Simetrical: The USA PATRIOT Act also allows the government into your home without your knowledge. they don't even have to tell you they broke in [20:20:16] jamasi, not a good way to stop murder, theft, etc., though. [20:20:48] the outcome then depends on the local community. [20:20:51] Simetrical: the people behind the cameras are the largest criminals [20:21:30] Simetrical: the US government [public record] has killed more than "the murderers" you are talking about above [20:21:43] jamasi, there have been such systems. Take the Wild West, for instance. I'm not sure they worked so well, overall. Yes, the local community deals with it, but there are no fair trials, for instance, and no right of defense . . . I'd prefer a government trial. [20:21:56] but in contrary surveillance can even caus crime to increase, as oppressed people tend to go amok from time to time. [20:22:08] is there a page that lists all template pages? or a page that lists all, even template, pages? [20:22:23] Special:Allpages? :) [20:22:31] it lists templates too? [20:22:33] jamasi, well, if it's democratically instituted they won't consider themselves oppressed, will they? :) [20:22:38] choose the template namespace [20:22:42] strategy, yes, pick a namespace from the drop-down. [20:22:45] ok [20:22:46] thanks [20:22:58] well, I prefer fair trials, but only if the government is not killing its citizens on purpose of financial gain. [20:23:00] btw.. great job everyone on mediawiki, it rocks :D [20:23:11] strategy: I agree [20:23:43] Simetrical: I think the jews felt oppressed in nazi-germany although it was all "legal". [20:23:56] Samus_Aran, let's hope mediawiki doesnt perish like you so often do =p [20:24:03] but only when I play.. not my bro :/ [20:24:26] and according to godwins law I loose and leave this discussion. [20:24:29] jamasi, Germany was not a democracy at the time of oppression of Jews, and most people were unaware of the extent of the program. [20:24:32] Simetrical: The USA PATRIOT Act also removed many areas of government accountability, to make it easier for them to continue breaking the laws without getting caught [20:25:08] strategy: heh. I can beat Metroid's 2 and 3 without dying, haven't played the 3D ones yet [20:25:18] =D [20:25:32] so, uh, why did you guys elect it? or was that a conspiracy too? :P [20:25:42] timichal, elect what? [20:25:47] the government. [20:26:07] strategy: though when I play Metroid 3, I like to make it very difficult by not getting most of the items and weapons in the game. very challenging that way [20:26:20] heh [20:26:31] i see you like the games very much :P [20:26:42] and skipping whole areas using tricky shortcuts [20:26:43] timichal, because half of us liked Bush. Except for me, you're seeing the other half. [20:26:56] Since programmers tend to be politically liberal. [20:28:03] I think it's a sort of feature of democracy to always complain about the current government... better than civil wars I guess :) [20:28:08] or libertarian :p [20:28:08] Yep. [20:28:12] strategy: for example I never get the grappling beam or high jump boots, and skip two of the sub-bosses [20:28:17] Look at some of the accusations made against Clinton. [20:28:26] Samus_Aran, cool [20:28:30] Only difference is he wasn't a war president, so it was hard to work it up to mass murder. [20:28:35] *strategy awaits the approval of his sf.net project [20:28:47] Simetrical: do you live in the USA ? [20:28:50] Yes. [20:28:59] Simetrical: and you are content giving away your freedoms, one by one ? [20:29:29] Samus_Aran, are you content in letting terrorists take over large portions of the world and threaten the United States' very existence? [20:29:33] Same kind of question. ;) [20:29:43] On the balance, I don't think the loss of liberty under Bush has been severe. [20:29:52] Simetrical: um, there are no terrorists threatening the USA [20:29:54] Nonpartisan institutions like Freedom House agree. [20:29:59] Simetrical: that is called propaganda [20:30:00] Samus_Aran, there are no freedoms being taken away. [20:30:06] Simetrical: I have listed them above [20:30:06] Samus_Aran, as is everything you said, then. [20:30:09] We can go on like this forever. [20:30:16] We aren't going to agree. [20:30:20] Simetrical: I actually have research and facts behind me [20:30:20] We'll each vote how we choose. [20:30:25] Samus_Aran, no you don't, I do. [20:30:38] *Simetrical waits for Samus_Aran to get the point of his responses [20:30:50] Simetrical: "there are no freedoms being taken away." that is false. I listed the freedoms being taken away by The USA PATRIOT Act [20:31:10] Simetrical: I can paste you a link if you would like to read the act [20:31:11] Samus_Aran, those aren't useful or appropriate freedoms, then. [20:31:13] well, can you actually feel the removal of freedoms personally, or it's just a principle discussion? :) [20:31:14] The PATRIOT act gives us more freedoms! [20:31:29] *Samus_Aran blinks at RedACE [20:31:47] Samus_Aran, I've read parts of the Act, and multiple screeds against it. I'm not convinced that it's a big problem. [20:31:53] Although I disagree with some points. [20:32:29] We disagree on principle, not on fact. [20:32:35] In most places, anyway. [20:32:59] Samus, you're Canadian.. I don't see why you even care about American laws? They don't apply to us [20:33:01] We can argue but we'll get nowhere. Neither of us is objectively more correct than the other, it's opinions. [20:33:18] Oh, he's even Canadian. Doesn't change much, though. [20:33:21] You should be more concerned about the copyright reforms being proposed in parliament [20:33:27] Simetrical: so you are actually fine with all the freedoms being removed that I listed above ? indefinite imprisonment without charge. complete surveilance of individuals without court order. laws passed without going through congress. banned from protesting, except in small areas away from where people are. [20:33:42] Samus_Aran, after removing the hyperbole from all those summaries, sure I am. [20:33:45] Except the first. [20:34:04] Which I also have a problem with. [20:34:20] yet you won't do anything about it. [20:34:22] The third has always been true, the president doesn't need to pass *everything* through Congress. [20:34:24] Samus: as I recall the Canadian gun control bill wasn't passed by parliament [20:34:25] Correct, I have no problem with it. [20:34:34] s/bill/law/ [20:34:36] The fourth is a gross exaggeration, on the whole. [20:34:53] Simetrical: how is it an exaggeration ? [20:34:57] *Simetrical sighs [20:35:15] Because protests are allowed in front of government buildings, and in many other completely public places, in most locations. [20:35:35] Even if they weren't, I frankly never saw the point of protests. [20:35:56] Like politicians are going to care about those, given that they have accurate opinion surveys? [20:36:08] Maybe to inspire the participants, I guess. [20:36:27] they manke you feel involved :P [20:36:29] make* [20:36:30] Right. [20:36:49] Simetrical: "in most locations", heh [20:36:57] Samus_Aran, get me stats, then. [20:37:02] Simetrical: again, how is it freedom if it is not universal ? [20:37:09] Simetrical: http://baltimorechronicle.com/052704FreeSpeechZones.shtml [20:37:34] Samus_Aran, stats, not anecdotes. [20:37:45] Why do you think people should be allowed to protest in a residential neighbourhood and disrupt the people living there? [20:38:20] What about the residents who have their peace disrupted? [20:38:39] Protests near Bush, given how many people loathe him, are an unnecessary risk to his life. [20:38:54] RedACE: uh, these new laws have nothing to do with disturbing people [20:38:59] Although fortunately for him, the gun-loving demographic is mostly on his side, so he doesn't have to be *too* worried. :) [20:39:01] Simetrical: so protesters are now murderers ? [20:39:17] Samus_Aran, potentially. [20:39:20] It's a possibility. [20:39:30] But you agree that it is a reasonable argument for limiting where protests can take place? [20:39:31] I don't see any big loss in having to move back a couple hundred yards. [20:39:42] Simetrical: I can paste you many links of gun-toting American groups that are firmly opposed to Bush and The USA PATRIOT Act. gun control in the USA is coming [20:39:55] not really [20:40:05] If you say so. [20:40:15] it will be a harder freedom to give up, but it's definitely on its way [20:40:26] *AaronSchulz imagines the year 3000 [20:40:27] There's an interesting case before the Supreme Court right now, actually, the first Second Amendment case in something like a century. [20:40:36] This is fascinating, a person with such foolish opinions as Simetrical has can actually write complete sentences .. [20:40:48] interesting, w edo have gun control here and no one seems to complain :) [20:41:00] dfp, we were previously having a perfectly civil discussion. It would be nice to keep it that way. [20:41:13] Simetrical: he is just trolling [20:41:13] Simetrical, yeah, I'm not gonna participate, don't worry :) [20:41:17] timichal: Where? [20:41:21] RedACE: possibly, but none of the protests have been stopped due to that. they have been stopped because the people being protested against did not want bad publicity [20:41:21] Germany, I think? [20:41:44] RedACE: Czech republic, a small unimportant country just southeast of Germany ;) [20:41:59] timichal, different people like different liberties. A lot of Americans think gun ownership is a fundamental right. (I don't agree, personally. I don't care so much either way.) [20:42:05] Ah, well, I was close. :) [20:42:47] Samus: How about the Summit this summer in (I believe) Quebec, where the leaders of Canada, the US and Mexico met. Protesters were kept far away behind fences. It isn't just the US that controls where people can protest. [20:42:48] Samus_Aran, you do realize that the type of protests you're making against Bush have been made against every president in memory, by some groups? Bush is a little more divisive, is the only difference. [20:42:59] A moderate will always be hated by some people, and moderates are what democracy ultimately elects. [20:43:04] RedACE: honestly, who cares though? [20:43:14] Aaron: I don't. [20:43:24] Really, any ruler will be hated by some people. [20:43:25] the protesters I suppose [20:43:35] protestors tend to accomplish nothing here [20:43:41] And fact will be distorted by all sides, in politics. [20:43:46] By ignorance and malice. [20:43:53] there are some past examples of getting stuff done, but it's not a lot [20:43:53] *Simetrical shrugs [20:43:54] RedACE: watch the movie from www.zeitgeist.com (part III) should be quite interesting for you as canadian, too. [20:44:29] ok.. but I don't have sound. Will I still benefit from watching it? [20:44:46] AaronSchulz, I suspect they accomplish nothing in any democracy where there are opinion surveys, in terms of directly influencing politicians. They make the participants and supporters more happy and dedicated, though. [20:44:50] RedACE: we were discussing the USA. I am aware of a lot of very bad issues in Canada as well [20:44:52] I think I participated in one rally. [20:45:04] RedACE: I do not support freedoms being removed in any country =) [20:45:16] Some fairly large pro-Israel rally, in D.C. It gets way too hot there in the summer. [20:45:25] Other than that, I think never. [20:45:27] RedACE: in the UK they now have tens of millions of cameras set up and recording 24/7. literally "a camera on every corner", and the people there don't even notice them [20:45:37] Mainly I went to that one because my parents let me take the day off from school, IIRC. [20:45:49] Samus_Aran, yes, that's the sort of scheme that I think is great. [20:45:54] Simetrical: you admitted to being "pro-israel" on the internets! ohh the horror :) [20:46:01] I wish we had more surveillance here. [20:46:03] *timichal can't see the problem there [20:46:05] you will get trolled forever [20:46:10] RedACE: you should DL it and watch it with sound of course (it's about 2 h long) [20:46:16] We have some cameras in New York, people are fussing about them, but not so many. [20:46:20] jamasi: site isn't loading. :/ [20:46:52] AaronSchulz, I think people will have more objections to the fact that I admit to being a neoconservative and more-or-less Bush supporter. [20:47:02] Simetrical: you think it is great ? eesh. by the way, when all those bombs when off in the UK, the cameras (and there were dozens) that covered them all, were magically not available [20:47:21] Simetrical: I don't know, I come from the most liberal county in Ohio [20:47:26] Samus_Aran, actually I believe the reports I heard said that they immediately got photos of the bombers from the cameras. [20:47:36] saying anything pro-isreal will get more flame than pro-bush [20:47:39] RedACE: sorry, got the wrong url: http://www.zeitgeistmovie.com/ [20:47:40] AaronSchulz, is that a swing state? I can't remember. [20:47:41] though it is a close call [20:47:48] yes, but NOT my county [20:47:56] Well, I live in NYC. [20:47:56] it is pure 99% blue [20:48:02] So similar here. [20:48:15] though I don't support Bush at all really, my dad dies [20:48:15] jamasi: Does this have anything to do with the law professor in Ottawa? [20:48:26] My sister once regularly wore a Bush-Cheney pin, back in 2004, mainly to provoke people. [20:48:28] he was surprised the bush04 sign wasn't stolen [20:48:43] yeah, he wore the pin too [20:48:45] RedACE: not sure. [20:48:59] AaronSchulz, or vandalized. We don't have political bumper stickers partly because we don't want our tires slashed. [20:49:02] :) [20:49:16] Simetrical: I remember walking home and some people said "MAN, FUCK BUSH!" as they saw me [20:49:23] jamasi: you're better off watching the docus that Alex Jones puts out, every detail of his docus are heavily researched [20:49:31] I spent three weeks in Berkeley recently and managed to randomly find a politically conservative family. [20:49:38] Oh, Alex Jones? [20:50:04] That guy who thinks the towers were blown up deliberately, and tends to use rhetoric rather than actually asking engineers about plausibility? [20:50:10] Yeah, I saw some of his stuff. [20:50:12] Not impressed. [20:50:16] Simetrical: "FUCK BUSH" is probably the second/third best argument you will get against him here [20:50:21] Simetrical: how about you listen to the scientists then ? [20:50:27] Samus_Aran, on what topic? :) [20:50:34] Samus_Aran: I watch quite a few different opinions and try to check on their sources. ;) [20:50:57] Samus_Aran, I listen to scientists, I'm currently pursuing a bachelor of the sciences degree. [20:51:25] Simetrical: the first being "There turned out to be no WMDs"/"He lied" [20:51:30] Of course I don't necessarily include statistical or social scientists as proper scientists. The laboratory sciences I don't think I ever disagree with, though. [20:51:31] Simetrical: on how the towers and building 7 fell [20:51:43] weee, hard sciences [20:51:48] Samus_Aran, structural engineers? Have a petition signed by many of them? [20:52:02] I haven't heard of many structural engineers or demolitions experts supporting such theories. [20:52:03] yeah, I like to read Steven Novella and Steve Dutch's writings [20:52:10] Probably you could find lots of, I don't know, anthropologists. [20:52:13] AaronSchulz, you mean after months of warning that the US would be coming to look for WMDs, they didn't find any? *shocked* [20:52:24] RedACE, you know, most people did think they had them . . . [20:52:30] It wasn't like Bush made it up. [20:52:38] Or, rather, at least he didn't make the basic idea up. [20:52:39] they suspected it [20:52:46] strongly, often [20:52:49] It was generally thought to be true, with some exceptions. [20:52:50] Simetrical: and if you think that nobody "believable" believes there are too many unanswered questions about 9-11, here are a few names (scroll down): http://patriotsquestion911.com/ [20:53:14] ok, enough online dumb-ass 9/11 conspiracies [20:53:27] http://www.uwgb.edu/dutchs/PSEUDOSC/911NutPhysics.HTM [20:53:33] http://www.uwgb.edu/dutchs/PSEUDOSC/911NutPhysics0.HTM [20:54:41] AaronSchulz: did you look at that page I pasted ? it has 110+ Senior Military, Intelligence Service, Law Enforcement, and Government Officials, 270+ Engineers and Architects, 60+ Pilots and Aviation Professionals, 170+ Professors, 200+ 9/11 Survivors and Family Members and 110+ Entertainment and Media Professionals [20:54:59] AaronSchulz: all of whom believe there are unanswered questions about the 9/11 attacks [20:55:03] Samus_Aran, okay, you have a couple of structural engineers buried among architects and non-structural engineers. You can always find a few nuts, not surprising. [20:55:05] heh, reminds my of the intelligent design lists [20:55:25] *me [20:55:30] Samus_Aran, try a survey of structural engineers, instead. See what the percentages are like there. [20:55:34] But I have to go now. [20:55:50] If it was not a fake, why then that sh*ty investigation with its rather useless report? [20:56:24] Samus: I think more than half of Americans believe in intelligent design.. Doesn't make it true. [20:56:48] It also used to be universally accepted that the world was flat. [20:56:53] RedACE: "intelligent design" ? [20:57:15] Samus_Aran: as opposed to evolution [20:57:21] Samus: That god or a greater being created the earth and life? [20:57:24] http://en.wikipedia.org/wiki/Intelligent_design_movement#Intelligent_design_and_the_scientific_community [20:57:56] the last paragraph made me laugh [20:58:09] and the Church of the Flying Spaghetti Monster has millions, if not thousands of followers. [21:00:05] Simetrical: you apparently did not look at the URL I gave you. there are dozens upon dozens of people, like the ones you were talking about. e.g. "Chairman of the Department of Structural Dynamics" [21:00:39] RedACE: and how many of them have phds and have practiced Flying Spaghetti for 25 years ? [21:00:42] heh [21:00:55] http://en.wikipedia.org/wiki/Project_Steve this is cool :) [21:01:36] If having a PHD means you're never wrong, then everyone with a PHD must always agree on everything... [21:01:51] Simetrical: you do have to click on the link to the engineers/architects page, it starts on the list of military/intelligence people. [21:02:28] RedACE: I said nothing like always wrong. there are peer-reviewed papers submitted and they have not been magically picked apart [21:02:48] AaronSchulz: the page you linked is quite outdated and far from beeing accurate or well researched. [21:02:53] *always right [21:03:04] esp. wrt building7 [21:03:26] When i want to use CACHE_DB as main cache, i got an fatal error saying "Call to a member function getConnection() on a non-object in /Library/WebServer/Documents/phase3/includes/GlobalFunctions.php on line 2267" wich is the function wfGetDB. [21:03:33] I suppose this due to wfIncrStats() on lines 205 and 209 in Setup.php that need the cache. However, $wgLoadBalancer is initialized at line 228. [21:03:35] AaronSchulz: and surely you must know that Wikipedia is not a reliable source =) [21:03:40] When i put the 'SetupSession' of the setup just before 'User' and then the cache just before the initialization of $wgMessageCache, all works fine. [21:03:45] I suggest to change the order of the setup order to fix that error. [21:04:06] lol @ "Entertainment and Media Professionals" [21:04:11] *chrisc just passing by... but of course the blew the fucking buildings up :-| [21:05:42] ialex: put of a bug report [21:06:03] http://bugzilla.wikimedia.org/\ [21:06:15] *chrisc i guess you were talking abt "Patriots Who Question 9/11" -- this site has some big problems: http://911research.wtc7.net/essays/patriots_question/ [21:06:24] *chrisc wanders off again... [21:06:30] AaronSchulz: actually, this breaks the wfProfileIn/Out, dunno if it's important [21:06:42] ialex: the files are definitely picky about the order of things [21:07:16] well, if setting CACHE_DB errors out, that is a bug [21:07:25] ialex: but I don't quite understand exactly what you're trying to do, as I'm fairly new to the WikiMedia code [21:07:53] MediaWiki :P [21:08:16] Samus_Aran: i want to use the 'objectcache' table of the database instead of Memcached for caching [21:09:20] timichal: argh, I did it again =/ [21:09:31] I deleted this page on my wiki: http://www.lyceumarchives.com/wiki/User_talk:ArrowHate and now I can't restore it! :( [21:09:38] timichal: my fingers have a mind of their own [21:09:47] in the same way, why it's $messageMemc that is passed to $wgMessageCache and not $messageMemc, is there a special reason for this ? [21:10:05] * $parserMemc [21:11:06] [root@brutus imss]# /opt/trend/imss/PostgreSQL/bin/vacuumdb -f -z -U sa imss [21:11:30] oops.. meant to paste this: http://www.breitbart.tv/?p=14044 [21:11:35] Duesentrieb, if you're in the mood. I just commited revision 15 which should fix that segfault [21:11:44] Air Canada Passenger Tapes Mid-Flight Freak Out on Plane [21:12:57] wish I had sound :( [21:13:41] meh... my wiki is pissing me off. [21:13:55] I have a "dead [21:13:57] page. [21:13:59] "The database did not find the text of a page that it should have found, named "User talk:ArrowHate"." [21:14:08] I can't restore it, I can't delete it and I can't edit over it. [21:14:23] RedACE: I don't get anything on that page but a white box. do you have the original YouTube URL ? [21:14:41] RedACE, that guy must be on drugs... or some kinda mental illness... [21:16:15] according to the page source: http://www.youtube.com/v/XxtyisoNBaI [21:16:26] http://www.youtube.com/v/XxtyisoNBaI&rel=1 rather [21:16:37] dunno if that &rel=1 is part of the url or not [21:16:44] poor guy... completly panicing... [21:16:48] rigid: if the host refuses the connection, the program dies horribly :) would be nice to catch that. and authentication is still failing. no time to look into it now in detail. [21:17:14] Noone know whats going on with my wiki? [21:17:17] .oO(exceptions... goood...) [21:17:23] Duesentrieb, and you're sure you're using the right user/password? any special-chars? [21:17:25] !missingpage [21:17:28] !blankpage [21:17:28] A blank page usually indicates a fatal PHP error. See !error [21:17:33] !error [21:17:33] For information on debugging (including viewing errors), see . [21:17:36] meh [21:17:44] he doesn't look crazy to me, he looks like he is having a panic attack [21:18:01] j_smith: it sounds like your database got corrputed for some reason. [21:18:04] though actually as it goes on it looks like more than that, heh [21:18:27] I was able to delete/restore my sandbox - to it must be just that line in the db [21:18:28] Is there any easy way to integrate a single user login between mediawiki and wordpress? [21:20:08] rigid: yes, username and passowrd are correct, no special chars. url is correct too. [21:20:20] !auth | mancide [21:20:20] mancide: http://www.mediawiki.org/wiki/AuthPlugin [21:20:57] Duesentrieb, hm... then i'd need some more info. I'll prepare a version whith more debug-output and a fix for the connection-refused crash (which I can reproduce here :) [21:21:01] j_smith: yes, it sounds like one record got corrputed. [21:21:16] arg. Well, thanks for the direction. [21:21:28] I'll look into removing/fixing the record [21:22:16] Would you know off-hand what table it would be in? [21:22:48] Duesentrieb: yea, I had founda few there, but they seem outdated... an extension would be lovely, but it looks like there isn't a current one avaiable for either package [21:23:00] rigid: use api for login [21:23:06] mancide: package? [21:23:16] Duesentrieb, yeah good idea [21:23:44] Duesentrieb: there is neither a current extension for mediawiki to easily use wordpress logins, nor a current plugin for wordpress to use mediawiki logins [21:24:10] i just wanted to verify before i get to banging, no need in reinventing a wheel if one exists ;) [21:24:17] mancide: ah, well. perhaps write one :) implementing AuthPlugin is not that hard, and there are plenty examples... [21:24:55] Duesentrieb: yea, i've been doing some reading, it appears there are a lot of people who want one, but the last one that seemed to work was for MW 1.6.1 or so [21:25:16] the AuthPlugin interface shouldn't have changed all that much [21:28:05] ok, thanks, like I said just wanted to check to make sure a wheel didn't already exist ;P [21:28:36] well, that i don't know about it doesn't mean it doesn't exist :) [21:29:10] mancide: how about this one? http://wordpress.rauru-block.org/wp-content/uploads/2007/11/authwordpress.php [21:44:07] Duesentrieb, hm... can one account log-in multiple times? [21:44:23] rigid: sure [21:44:25] Duesentrieb, or is *_session cookie != lgtoken ? [21:44:29] ah [21:44:49] and session != token, yes [21:44:57] (though i'm not sure about the details) [21:45:15] Duesentrieb, hm... so how can I login then? i get lgtoken and i suppose it's only useful for API-calls [21:45:42] hm? no i don't think so. [21:45:58] just, you know, remember all cookies and send them back with every request? [21:46:03] just do what any browser does [21:46:24] have you considered using libcurl? [21:54:30] g'day, thanks for the help allveryone [21:57:07] I am so confused on how to fix my messed up talk-page... *sigh* [22:00:28] j_smith: you can't delete it? [22:00:52] Well, I deleted it to get rid of a recent revision and then it gave me a wierd message when I tried to restore it. [22:00:59] Something about it having been restored already. [22:01:08] o_O [22:01:13] that sounds pretty bad [22:01:26] like the relation between page and revision table being fucked up. [22:01:31] "The database did not find the text of a page that it should have found, named "User talk:ArrowHate"." [22:01:54] well, thatwould rather point at the relation between the revision and the text table being fucked up. at least it sounds like that [22:02:17] yeah... I recently upgraded from 1.4 to 1.11 - so it might have gotten mucked up when we did that. [22:02:47] I was able to restore the first revision of the page - I'm gonna see if I can work from there. [22:02:48] ugh [22:02:53] yes, that's a pretty big step [22:03:02] 1.5 introduced a completely new database schema [22:03:18] i'd recommend making a full database backup before doing *anything* more tiwth the wiki [22:03:32] and perhaps an XML page dump too - but that might abort at the broken page [22:03:49] if you want to check the database: basically, it works like this: page <--1:n-- revision --1:1--> text [22:03:49] I did a full backup before the upgrade. I'll do another now. [22:04:59] bloody heck, this is not cool.:( [22:06:47] I don't really know a lot about databases or SQL scripting. :( [22:07:30] I really wouldn't mind wiping out the entire history of that page, if it's something that can be done easily? [22:07:40] never heard of this particular problem before [22:08:24] Leave it to me to find a new way to break mediawiki. lol [22:08:41] hm... you could probably simply delete the record of that page from the page table. that should you allow to re-create the page. it would leave unreferenced records in the revision and text table though. [22:08:53] that *should* not matter. but... no guaranteed [22:09:05] I might try that after I backup [22:09:42] the backup is gonna take some time. [22:09:56] j_smith: the numeric namespace id of "User talk" is 3 - you'll need that to find the entry [22:10:11] Yeah, I figured that out the hard way. :) [22:10:25] I found it in the page-table a little while ago. [22:12:42] deleting it should fix your issue [22:18:39] going to lunch - backup should be done by the time I get back and I'll let you know how it works out. [22:33:12] *qsheets shall bbs [22:48:28] hi. i'm admin on de.wikinews. i have added [[Kategorie:foo]] (a category association) to a template. but the pages including the template are not listed in the category, but i can fix this by opening the pages and saving without edit, but i would have to do this for every single page. Is this a bug or a feature? [22:50:21] kju: nither. when did you add this, and on how many pages is the template used? [22:50:31] chances are, the update are in the job queue pending execution [22:50:43] anyway, this is a question for #wikimedia-tech, really [22:51:16] i see. was not aware of a second channel. have done this about 10 minutes ago. so this should normally sort out itself? [22:51:29] ah [22:51:36] i was to impatient, it just happened. :-) [22:52:39] see http://www.mediawiki.org/wiki/Help:Templates#Control_template_inclusion and http://meta.wikimedia.org/wiki/Help:Job_queue [22:53:34] kju: you can see the size of the job queue on Special:Statistics [22:55:23] hmm, ok. the job queue is 86 and there are very few edits, so i would not have expected a background task to need 10 minutes. [22:56:32] well, it's 86 now :) [22:56:38] now there are 86 entries left. [22:56:52] maybe it just took 10 minutes to get rid of the 5000 that where there before [22:58:05] i would doubt that the job queue could have been much higher. there were only 10 edits made in the half hour before my edit. [22:58:22] i have seen the job queue number before and it is usually very low. [22:59:58] hmm, if i understand correctly, the job queue will be worked on on each request. so maybe it is running very slow because there are not many edits and views on de.wikinews? [23:00:22] its now 84. [23:02:09] i think per default it runs on every 1000th page view or so. [23:02:30] but... i thought it was somehow managed globally for wikimedia sites? not sure. [23:02:39] ask at #wikimedia-tech [23:02:51] which is for all things related to wikimedia server setup and problems [23:03:54] ok, thanks a lot [23:07:42] does anyone know why I can't edit MediaWiki:Sidebar as sysop? [23:07:56] although I could in the past [23:08:11] can you edit other pages in the MediaWiki namespace? [23:08:17] and I don't remember I changed something [23:08:20] Say, for example, MediaWiki:mainpage? [23:08:26] wait [23:08:29] will try [23:08:46] nope [23:08:50] same thing [23:09:06] just view source option [23:09:11] please past your localsettings.php to some pastebin (remove passwords) [23:09:13] sure your still sysop? [23:09:25] yes I am sure [23:09:28] and make tripple-sure you areally really are sysop [23:09:32] ok will do that past [23:09:52] ok will first make sure [23:10:28] Stylee ‎(bureaucrat , sysop ) [23:10:59] kk [23:12:03] is there any other password to remove except the one of sql? [23:13:08] Duesentrieb? [23:13:44] dont' think so. [23:13:57] might want to remove the name of your DB server too. [23:14:31] well did it [23:15:15] http://paste2.org/p/10611 [23:15:40] Stylee: you are a sysop, but are you sure you're logged in? [23:16:28] lol yes :) [23:16:50] I don't see anything in your settings to modify access-level permissions [23:16:57] check /includes/defaultsettings.php and make sure that $wgGroupPermissions['sysop']['editinterface'] = true; [23:17:13] ok let me check [23:17:18] just in case stuff was edited there for whatever reason... [23:18:16] Stylee: looks good. no idea what could be wrong, unless you messed with other files [23:18:52] heres a troubleshooting task: Create a new account, promote to sysop and then log into it to see if you can edit. [23:19:14] Also, might want to try and see if switching skins makes a difference. [23:19:23] Stylee: yea, also check if you can go to Special:Userrights [23:19:31] $wgGroupPermissions['sysop']['editinterface'] = true; [23:19:38] j_smith: switching skins? that would be extremely odd. [23:19:56] Stylee: what version of mediawiki? [23:20:00] a skin could hide the edit tab. *shrug* [23:20:36] I just upgraded to the last, but the problem came out before it [23:20:50] "last" what? stable release, or development? [23:21:06] hmmm The action you have requested is limited to users in the group Bureaucrats. [23:21:20] when I try to access Special:Userrights [23:21:24] meh [23:21:33] Stylee: that sounds like you are not logged in, or not a Bureaucrat (and not a sysop either) [23:21:43] last as 1.11.0 [23:21:54] it sounds like sysops have the same access as regular users for some reasonb [23:21:54] but I am loged in [23:22:05] log out and then back in and see if that works [23:22:13] yea, ok. i was just thinking it could be related to experimental page protection code. but that should be fine in 1.11. [23:22:21] I did it 30 times befor ask here help :) [23:22:30] It takes 33 times. :P [23:22:39] really, I thought it was 777... [23:22:50] might be 111 less then that. :D [23:22:55] :D [23:24:39] well maybe I have an idea [23:24:45] let me try something [23:25:39] well don't work [23:25:44] but well [23:26:05] we added a domain that point to the same directory as old [23:26:22] so I thought that there might be a domain protection [23:26:35] but don't work even with old domain [23:26:48] Can you paste-bin your defaultsettings? [23:27:02] sure, a min [23:30:03] http://paste2.org/p/10612 [23:38:45] hmm [23:39:47] ? :) [23:40:19] $wgGroupPermissions['sysop']['userrights'] = true; [23:40:25] It's not there... [23:40:31] I don't know if it should be or not. [23:40:42] shell I add it? [23:40:56] no. [23:41:01] userrights us not for sysops [23:41:02] ok [23:41:06] it's for bureaucrats [23:41:15] Oh, durr... right. [23:41:15] check that *they* have that right [23:41:57] Stylee: to me it really sounds like you are not who you think you are. [23:42:15] lol :) [23:42:30] well something interesting I found though [23:42:34] Stylee: maybe... there's something wrong with the user table? two ids for your user name? or you are logged in as someone else? something like that? [23:43:21] Do you have a crat account? [23:43:40] in Special:Listusers shows Stylee ‎(bureaucrat , sysop ) but when I do filter group for burocrats or sysops it return blank [23:43:53] hmm [23:44:32] Stylee: yea... i just wondered about that... perhaps something happened to the entries in the database. [23:44:38] Duesentrieb: well, currently are there only 3 users, and only one stylee [23:44:39] it looks like they where padded with blanks [23:44:51] this sometimes happens during mysql upgrades (not sure when or why) [23:44:54] it sucks :P [23:44:55] can anyone explain to me why adjustments I made to LocalSettings.php and uploaded to my provider's space get erradicated after a while? [23:45:20] nothing in mediawiki modifies localsettings. [23:45:21] Stylee: go into the database and remove any trailing blanks from the entries in the user_groups table [23:45:36] ok wait [23:45:57] cosmodad: you provider is using old backups to restore stuff? [23:45:59] Oh, I guess it would look at "sysop " as a diffrent group then "sysop" [23:46:04] cosmodad: ask your provider... [23:46:12] j_smith: indeed [23:46:21] Duesentrieb: don't think so, this is happened three times in a row within a couple of days. [23:46:47] Duesentrieb: I installed Mediawiki via Confixx' application installer and suspect it to overwrite the file continuously. [23:46:50] Well, like I said cosmodad, mediawiki never modifies localsettings [23:46:55] Oh... yeah, it might be [23:46:57] cosmodad: it should really relly not happen. as j_smith said, mediawiki does not modify that fil.le [23:47:03] in fact, it should not even have permission to [23:47:14] check with confixx - it might be a security thing. [23:47:17] cosmodad: make sure *no* php file is writable on the webserver. [23:47:30] cosmodad: btw - this *could* mean you account got hacked [23:47:55] err. [23:47:58] Duesentrieb: writable by others you mean? [23:47:58] wtf is Confixx? [23:48:08] Duesentrieb: under field ug_user is 1 for both burocrat and sysop [23:48:15] cosmodad: writable by the php user, especially. [23:48:19] http://www.swsoft.com/en/products/confixx/note/ [23:48:28] cosmodad: if that is identical with your own user id, then you have to make it writable by no one. [23:48:32] Duesentrieb: a tool to configure server stuff, like e-mail, sub-domains, etc. [23:48:41] no idea what it does [23:48:45] sounds like plesk [23:48:47] it may do stupid things, i don't know [23:48:49] yeah [23:48:58] I mean yeah "it's like plesk". :) [23:49:26] But like Duesentrieb said, make the file unwritable and confixx shoudln't be able to overwrite it. [23:49:30] Stylee: 1 is the user id. check the groups. i think they have blanks attached. [23:49:40] Stylee: try to set the group names again. [23:50:08] j_smith: I'll check, but I kept file permissions as they were after installation. If Confixx is really doing this, it looks like a bug. [23:50:26] default file permissions would posibly be writable. [23:50:28] oooooooooooo now I understand [23:50:36] yes they have some spaces [23:50:45] ahhh theres your problem then. :) [23:51:07] j_smith: it's writable by the owner only. [23:51:13] j_smith: I'll disable that. [23:51:38] it's just kind of unconvenient when I need to upload modificiations. [23:51:42] and now when I edit it adds \0\0\0\0\0\0 :( [23:51:42] yup [23:52:02] can I delete and do new? [23:52:17] j_smith: I just notice there's another LocalSettings.php.in -- could that have anything to do with this issue? [23:52:39] Hmmm it shoudln't be refrenced. [23:53:01] it could be what the stupid thing keeps copying. [23:53:06] does it actually have .in at the end? [23:53:08] what's its purpose? Is it like a template for LocalSettings.php? [23:53:20] Duesentrieb: there's a copy with and one without the extension. [23:53:22] Oh... I know what it might be... Have you removed your config script? [23:53:27] cosmodad: mediawiki does not provide it. it should not be there [23:53:38] j_smith: what config script do you mean? [23:53:39] it sounds like it may be used as a templyte by whatever. [23:53:47] cosmodad: what's the url of your wiki? [23:54:02] config/config.php I think. [23:54:16] Duesentrieb: is it safe to publish the URL? I mean, before you said I could have been hacked... [23:54:26] j_smith: the config script is not going to do anything. [23:54:31] oh. [23:54:34] it will neer override the live settings [23:54:47] I don't even have a config/ dir. [23:54:50] sub-dir. [23:54:52] ok. [23:55:14] cosmodad: what's the url of your wiki? [23:55:50] Duesentrieb: prior to giving you that, can you answer my question regarding security concerns? [23:56:12] cosmodad, it won't increase your exposure. If your hacked, your already screwed. [23:56:33] my level of screwness could increase... [23:56:42] weeelll... it probably has not been hacked. but there may be a security problem, i was going to check that. you can give me the url in private. [23:56:57] (if you trust me that far) [23:57:06] perfect. [23:57:29] consiter this: no link = no solution. *shrug* [23:58:21] it seems that I can't get rid of that /0/0/0s at the and [23:58:21] j_smith: if you don't mind PM, I can give you the URL as well. [23:58:28] end* [23:58:32] sure [23:58:51] Duesentrieb knows alot more then I do, I might not be able to help [23:59:12] but i need to go to bed :P [23:59:16] I'm grateful for anything. [23:59:42] cosmodad: get rid of the confixx cruft. delete the ...in file.