NZ's Finest on 16 Aug 2008
NZ's Finest on 24 Jul 2008
Game packs & more
Long time, no post.
Thanks to EXHDS there is now a great games pack available for EasyArcade v1.2 - it contains 106 games in all categories, as well as install instructions. Check it out in the new game packs section.
Still chugging away on EasyArcade version 1.3, however more and more things have been popping up that require attention and as such, time keeps going away from it. But of course I’m still slowly doing it when I have the time and I’ve been thinking of releasing a few alphas (is that what you’d call it? :P) or incomplete test versions to showcase new features that will make it into the final 1.3 version.
NZ's Finest on 15 Mar 2008
Redesign and status update
I redesigned NZ’s Finest using a new theme, and changed a few small things here and there.
Hopefully I should get more time to work on EasyArcade soon.
Here’s what’s been done so far for version 1.3:
- Supports Flash, Java and Shockwave games (I need to improve on this but the basic support is there).
- Should work without ‘ODBC’@'localhost’ errors on Windows and Linux servers (see the last post in this topic if you are getting the errors).
- The administration panel plugin system is much easier to work with now.
- Added arcade statistics and an admin notepad to the administration panel.
- Added “Automatically change logo URL” to admin settings (for when you change themes).
- Now truncation doesn’t take out the last word (thanks Yuripro84).
- And lots of other little fixes.
NZ's Finest on 20 Jan 2008
Quick AnonShout fix
If you are experiencing this warning (or a similar one) when you use AnonShout:
Warning: Cannot modify header information - headers already sent by (output started at <yourwebsite>\shout.php:2) in <yourwebsite>\shout.php on line 96
An easy way to fix it is to go to line 96 in “anonshout.php”.
The line should read:
header(”Location: ” . $_SERVER['PHP_SELF']);
Underneath the line, add:
die();
So line 96 and line 97 should now read:
header(”Location: ” . $_SERVER['PHP_SELF']);
die();
And that should stop the warning from coming up
I’ve also updated the AnonShout file in the scripts section with the above fix.
NZ's Finest on 16 Dec 2007
Fixed AnonShout 1.1
My apologies for not catching this bug sooner.
The latest version of AnonShout (1.1) was displaying dates wrong, I have now uploaded a fixed version.
To get your dates displaying right all you need to do is download the latest AnonShout and overwrite your “anonshout.php” file.
Or you can fix it manually by changing line 137 from
$moddate = date($date, strtotime($key['date']) + $timeadd); // Add time modifier to date
to
$moddate = date($date, $key['date'] + $timeadd); // Add time modifier to date