Ohh weird - can you PM me FTP details so I can take a look later today? Thanks.
Also one thing you can check is if you have GD installed - make a blank PHP file and in it put:
<?php
phpinfo();
And open that page and see if there's any mention of the GD library
That means there was an error... if you view source on the page, then goto the bottom-ish, you'll see:
{"data-file":"
And URL after it - just load both those URLs in the browser... there will be some errors, if you can paste those
So I'm trying to do a little update on the site design, but I'm horrible with logos.
Anyone want to take a spin on the current logo design and 'spruce' it up a bit?
What'd you do? Did you run the recount?
This query should fix it..
UPDATE phpvms_pilots p SET totalpireps = (SELECT count(*) from phpvms_pireps WHERE pilotid=p.pilotid);
Backup before you run it though.
Woops! Fixed it. That'll only be on FSFK PIREPs
To fix for now, open core/common/PIREPData.class.php
line 360:
$data = unserialize($row->rawdata);
Change to:
$data = $row->rawdata;
Well you added that manually, right?
Just make a new file in /core/common called
CustomData.class.php
and in it put
class CustomData {
// paste your function
}
Then just call it
CustomData::ActivePilots();