Jump to content

Kyle

Moderators
  • Posts

    2282
  • Joined

  • Last visited

Everything posted by Kyle

  1. You need to enter each column with specfic parameters. The .csv file has ; breaks in each one. Just enter in each column, don't use the ; or anything. It only reads each columns. And be sure to save it as .csv.
  2. Nabeel, did you make a mistake with the update? This is the beta version. This version has the .tpl to .php feature in it. Shouldn't it been the original version 2.1.934. with the tpl..ETC and updated only the admin/index.php and admin/action.php. Mr.Bean, that's why becasue Nabeel might mistakely updated the Beta Version, not the stable version. The .tpl to .php files are not yet ready. It's still being worked on.
  3. Maybe, but it kinda looks old fashion enough for me which it relates to the VA.
  4. Well if that's the case. I wish the best of luck!
  5. It was bug in the VMS, it was fixed in the BETA. I updated the code in my post.
  6. Manuel, I found the bug. (smacks bug with hand!) Head to SchedulesData.class.php and go to line 861. Look for the function... public static function deleteExpiredBids() Inside of the function, replace the whole function with this... my modification. public static function deleteExpiredBids() { $cache_time = Config::Get('BID_EXPIRE_TIME'); if ($cache_time == '') { return; } /* Make sure the schedule bidids */ $sql = 'SELECT * FROM ' . TABLE_PREFIX . "bids WHERE `dateadded` + INTERVAL {$cache_time} HOUR < NOW()"; $results = DB::get_results($sql); if (count($results) > 0) { foreach ($results as $row) { $sql = 'UPDATE ' . TABLE_PREFIX . "schedules SET `bidid`=0 WHERE `id`={$row->routeid}"; DB::query($sql); } } And that issue should not be a pain again.
  7. same here I thought it was just me or did I hear this before.
  8. Hey I noticed one error... $data['airlines'] = DB::escape(strtoupper($data['whos'])); Should this be... $data['airlines'] = DB::escape(strtoupper($data['airlines'])); That's what I'm seeing...
  9. Most people don't usally look at these kinds of services when you don't have a website. Do you have a website to show your past work...ETC. or other services you provide examples.
  10. You can. Export your phpVMS Database for phpMyAdmin, and then once you move the host, transfering files and domain name server updates...ETC., you can import your phpVMS Database back into your new host.
  11. It has been working for a while for me. Were you still having this issue?
  12. I'm not being mean here, but it's just something that can conern your members of the VA, but that's my opinion. I don't have a problem with the way it is running or anything, just giving out my thoughts. BTW: O.P. edited the post removed list of movies. If your confused about this topic.
  13. Is it illegal for websites playing paid movies for free? ... and aren't you guys authorized to play those movies with your VA?
  14. I don't personally think the price is too high, but what you just said that the module is ugly, I don't think it is. But that's your opinion and you can keep that to yourself.
  15. That's really nice to say that... I think the problem is that you won't buy payware modules to support the seller.
  16. You can include the phpVMS Config in your script. Example <?php include_once '../core/codon.config.php'; //do stuff! ?> Be sure to change the include_once directory to where your VMS install is.
  17. Stuart, Welcome back to phpVMS ! Also I like how you desgined the website, cleanest site. Well Done and best of luck!
  18. I'm currently working on a another project at the momment, I'll be getting to it on my limited free times. Currently, I don't release any betas. Hopefully this module will be done soon.
  19. This should be what you are looking for <?php if(!$pilots) { echo '<p>No pilots has joined us!</p>'; return; } ?> <table> <thead> <tr> <th>Pilot ID</th> <th>Pilot Name</th> <th>Join Date</th> </tr> </thead> <tbody> <?php foreach($pilots as $pilot) { ?> <tr> <td align="center"><a href="<?php echo url('/profile/view/'.$pilot->pilotid);?>"><?php echo PilotData::GetPilotCode($pilot->code, $pilot->pilotid);?></a></td> <td align="center"><?php echo $pilot->firstname . ' ' . $pilot->lastname; ?></td> <td align="center"><?php echo date("m.d.y", $pilot->joindate);?></td> </tr> <?php } ?> </tbody> </table>
  20. Very well desgined! To make the field hidden... <input type="hidden" name="id" value="<?php echo $varible->id;?>" />
  21. I'm going to be finishing this module before school starts till in a few weeks. So expect this month a release.
  22. Thanks! No problem! I should get up to speed, and a few screenshots of the progress this weekend after pulling a 12 hour shift at work tomorrow. Cheers!
×
×
  • Create New...