-
Posts
2773 -
Joined
-
Last visited
-
Days Won
3
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by simpilot
-
How are you calling this? Is this the whole tpl file, or is it embedded in another using a call?
-
I just tested your code on a clean install and it works fine - Have you checked the db and see how many entries there are in the pilots table?
-
Hard to tell without seeing the code but looks like you have the foreach for hubs still in there and you have 11 hubs. You would not need that part anymore if you are just showing a full pilot roster.
-
To fix the "there are no pilots issue" that your getting above you need to change <?php $roster = PilotData::GetAllPilotsDetailed($start='', $limit=50) ?> to <?php $roster = PilotData::GetAllPilotsDetailed('', '') ?> This will give you the first 20 pilots in the db unless you have changed the parameters in the PilotDataClass for the getAllPilotsDetailed function. A cleaner way to get all the pilots would probably be -> <?php $roster = PilotData::getAllPilots(); ?> This will return all the pilots and their information that are in the db You can use <?php print_r($roster); ?> after the above call and see everything in the array. After that use a foreach and build your table to your liking.
-
Have you tried moving the schedule_results.tpl file from the core/templates folder to your skin folder temporarily to see if the add to bid function works. I think it is something in the javascript on your site, I have it working on a number of sites without any issues.
-
no it didnt what?
-
are you running version 858? are you showing any errors on the page?
-
hmmm, the add to bid is working with that code in both IE8 and FF for me without any issues, it even brings up the "already in bids" if you hit it more than once. I am guessing that the popup login is something using javascript that was added after the original install, almost sounds like it may be suffering the from the same issue as the javascript for the map and add to bids...... maybe it is the cause of the issue and is conflict with the newer phpvms coding..
-
Try the "add to bids" funtion fix I posted here -> http://forum.phpvms.net/index.php?topic=1994.0 Users online is only standard on the index page. If you are using the listing on other pages you must include -> <?php $usersonline = StatsData::UsersOnline(); ?> prior to using the listing. Sorry, not sure what you mean by the popup login, if you can link me or point me in th right direction I will try to take a look.
-
You can use the export function (in the top tabs of phpmyadmin) and check the box to save it as a zip to your local pc. It will collect the table structure and data from the db and place it all in the zip file which could be used to restore a damaged or corrupted db.
-
Check your schedule_results.tpl file for the add to bid function. if it looks like -> <a class="schedules" id="<?php echo $route->id; ?>" class="addbid" href="<?php echo url('/schedules/addbid');?>">Add to Bid</a> change it to -> <a id="<?php echo $route->id; ?>" class="addbid" href="<?php echo actionurl('/schedules/addbid');?>">Add to Bid</a> This has the function working for me in IE8 And FF
-
You have already started a thread on this issue... Have some patience, we are all volunteers.
-
No, it does not.
-
That error would lead me to believe that the mail_check template does not exist in the core/templates folder or is corrupted. Try re-uploading that template and let us know if that clears up the error.
-
It looks to me like you deleted something out of the db along the way... The link is looking for id=2 and there is nothing in your db list with id #2 I would drop the whole table and reset it with the supplied sql file and try it.
-
This is what I do <style> .row0 {background-color: #E0E0E0;} .row1 {background-color: #ffffff;} </style> $class = 0; foreach ($results as $result) { echo '<tr class="row'.$class.'"><td>Your data</td></tr>'; $class = 1 - $class; }
-
Check in the database and see if there is actually anything in the forum_posts table. I am guessing that the db table did not get created correctly or one of the files is corrupted. If the table is there with all 8 columns I would re-load all the files and reload the sql file into the db. Let me know how you make out.
-
Check in the phpvms_fieldvalues table and see if there are any values with fieldid 7 that have any data in the value column. That is where the code will ultimatly pull the data from.
-
Can you post a link to the site Looks like it is not posting the data correctly to the database. Does it show a post count in the forum index?
-
hmmm.. I will have to do some more digging to figure out what is wrong on my end then. I have updtated everything including the ini files for fsacars... ???
-
No I did not, but I have not gotten the default landingstat to work on any of my sites yet. The column is always a zero. I looked through the PirepData and can not find the code where it should be pulling the stat out - All i see is around line 580 where it is looking for it and setting it to 0 if it is not there.... So i modified my old code to work with the newer version. I will take it down until I figure it out.
-
http://www.simpilotgroup.com/dev/index.php/TopPilot In final stages 8)
-
EDIT - Download removed This function is now included in version 2.0. You can just use a sql select to gather the data out of the pireps table and then sort and display as you would like. 1. Download the attached package 2. unzip and place the files in the paths as defined in the package 3. use the landing_stats.sql file to create the two new columns in your database using phpmyadmin or similar. 4. file a pirep, manual or automated, it does not mattter, even if it is a test and you will delete it later. This will populate the DB for the first time. After the initial run of the module it will re-run each time a pirep is filed and update the listings. 5. Place the following code where you want the table to display. <?php MainController::Run('Landingstats', 'display_landingstats', '8'); ?> 6. Done This should produce something like this ->
-
Hi folks, I am in need of some graphics work, no css or html coding, just the graphic creation for a major re-release of New England Virtual. Graphics talent is something I do not have. I would be willing to trade a custom built module to your specifications for the graphics work. Basic shopping list of my graphic needs, New Logo New Header Banner New Footer Banner Appx 6 different buttons Let me know if anyone might be interested.
-
You can change the $ sign in the tpl files that exam center uses. I did not build the signs into the active data of the module, good idea though.