Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Arantor
3256
Off-topic / Re: The Humble Indie Bundle V
« on June 1st, 2012, 09:39 PM »
Oh, this was *worse*. It's a long weekend with the Jubilee, which means it's largely panic-stations with people getting enough food in.
3257
Off-topic / Re: The Humble Indie Bundle V
« on June 1st, 2012, 09:30 PM »
No, I spent this afternoon doing the weekly shopping before this country goes mad because of the Jubilee weekend... fighting with the maddening crowds in the supermarket is almost as tiring.
3258
Off-topic / Re: The Humble Indie Bundle V
« on June 1st, 2012, 08:49 PM »
Ah, yes, I see. Tiredness is wonderful for making read good.
3259
Off-topic / Re: The Humble Indie Bundle V
« on June 1st, 2012, 06:53 PM »
Buying the bundle gets you all the OSTs ;)
3260
Off-topic / Re: The Humble Indie Bundle V
« on June 1st, 2012, 02:47 PM »
Haven't listened to it yet, to be honest most of my recent playing has been between Blur (driving game, though the studio appears to have been closed by Activision), Torchlight and a little known game called Slydris.
3261
Features / Re: New revs
« on June 1st, 2012, 02:46 PM »
(10 files, 24KB)

Revision: 1604
Author: arantor
Date: 01 June 2012 13:44:57
Message:
! Admin intro code that I've been threatening to commit, only this time all cleaned up and should even be hookable. (Admin.php, Admin.template.php, ManagePlugins.php, Admin language file)

! Scheduled tasks fixes. Thanks Dragooon! (ScheduledTasks.php, ManageScheduledTasks.php)

! Allow for overriding settings manually as per Dragooon's request (ManageServer.php)

! The big change: overhaul of the Q&A to allow multi-language, multi-answer questions. It hasn't been battle tested yet but it seems to work in my tests. (ManageSettings.php, Subs-Editor.php, Admin.template.php, ManageSettings language file)
----
Modified : /trunk/Sources/Admin.php
Modified : /trunk/Sources/ManagePlugins.php
Modified : /trunk/Sources/ManageScheduledTasks.php
Modified : /trunk/Sources/ManageServer.php
Modified : /trunk/Sources/ManageSettings.php
Modified : /trunk/Sources/ScheduledTasks.php
Modified : /trunk/Sources/Subs-Editor.php
Modified : /trunk/Themes/default/Admin.template.php
Modified : /trunk/Themes/default/languages/Admin.english.php
Modified : /trunk/Themes/default/languages/ManageSettings.english.php

@Nao, feel free to go nuts with optimising the anti spam Q&A code, I deliberately didn't optimise it while writing it because it was done in stages, and if you want to fix the alignment of buttons, please do feel free.
3262
Off-topic / Re: Help with apache2
« on June 1st, 2012, 02:18 PM »
Sadly if only people were happy with that, people love having one-click updates to things...
3263
Off-topic / Re: MyBB Official site compromised
« on June 1st, 2012, 02:14 PM »
Oh yes, it certainly happens if you go to cross-platform discussions (like I do at Another Admin Forum, but it's very prevalent at WebHostingTalk)
3264
Off-topic / Re: Help with apache2
« on June 1st, 2012, 02:13 PM »
That's a good plan, I like that :)
3265
Off-topic / Re: Help with apache2
« on June 1st, 2012, 02:00 PM »
Hmm, I suppose that makes sense. Need to check on that, though, because I didn't think FPM did the whole different user thing.
3266
Off-topic / Re: Help with apache2
« on June 1st, 2012, 01:43 PM »
Wait... how will FPM make Apache run in that user/group? FPM is what you use to run a pool of PHP processes that nginx can use...

(I've not used FPM with Apache. But the design of FPM is fundamentally stronger than doing it any other way because things aren't just shoved at FPM the way they are with other routes)
3267
Off-topic / Re: MyBB Official site compromised
« on June 1st, 2012, 01:26 PM »
Well, it's as old as SMF, and routinely beats SMF in 'best forum' discussions and polls etc.[1]

But imagine the announcement were about simplemachines.org. That's the scale of what they have to deal with.
 1. Though I honestly have no idea why. The admin panel is confusing, I find it more so than SMF's! It doesn't install properly out of the box on localhost without help, and it's trying to pretend to be vBulletin 3.x. Oh, and the MyBB fans are even worse than Apple fanbois for hyping the software and ignoring competitors. There are many MyBB fans I've met who won't even sign up to an SMF forum because it's 'worse'. Until you reskin it and it doesn't look the same as SMF default themes, of course. Then they join because they don't realise it's SMF.
3268
Off-topic / Re: The Humble Indie Bundle V
« on June 1st, 2012, 01:22 PM »
Bastion is an excellent game, Psychonauts slightly less so, but easily well worth putting some cash into the mix - especially considering you get all the games for Win/Mac/Linux and you get all the soundtracks (and both Bastion and Psychonauts have great soundtracks, I haven't yet dived into the others)
3269
Off-topic / Re: Help with apache2
« on June 1st, 2012, 01:20 PM »
I'll agree with FPM (especially as it means you can run nginx instead of Apache), but I can't in good conscience recommend suhosin. The number of times I've found software randomly break for no apparent reason just because of suhosin, I find it's more effort than it's worth.

Groups/users is sort of irrelevant if you have software that can update itself through the admin panel since that requires making the software writable by the web server user. (Yeah, I know that suPHP and PHPSuExec are supposed to do this but rarely seem to work properly in that respect)
3270
Off-topic / Re: Help with apache2
« on June 1st, 2012, 02:36 AM »
Correct. The name in available-sites (at least that's the default Apache folder name) is only an internal name for your reference.

ServerName is the directive that tells Apache what to look for and ServerAlias is for declaring alternative variations of the same handler, exactly as you indicate - you can declare ServerName example.com and ServerAlias www.example.com and Apache will match either to find that host. ServerName must be declared once per host, but you can have as many aliases as you want.