Jump to content

daniellord32

Members
  • Posts

    13
  • Joined

  • Last visited

daniellord32's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Topic Solved thank you for the help chaps
  2. that worked a treat I didn't link them to the correct file, now I need to figure out what other problems i may be having, If you guys have time would you have a quick peak at the link and see if you could spot what else i missed? thank you Daniel
  3. ok ill take a look thank you
  4. i checked the local.config.php and that is correct here is a link to the site, ill keep it active on that skin for 10mins then ill revert it back to crystal http://lp9.pe.hu/phpvms/index.php thank you again Daniel
  5. hello I'm building a site and its looking pretty good on localhost but when i upload it to my test server running phpvms it is not looking the same. I have resolved the culprit down to one css file but i am unsure as to debug it and fix my issue. the main page is supposed to look like this screenshot http://prntscr.com/b5m8wt but I am getting this instead http://prntscr.com/bdjsmg would anybody have any ideas as to what the problem could be? Regards Daniel
  6. Hey guys/girls Ok I have managed to fix my original issue, my next question is.... does phpvms support animations? such as carousels?, also i have one problem with a css, is there a good way to be able to find out what is causing the issue without commenting out bits at a time? regards Daniel
  7. http://prntscr.com/b5m8wt this is the look I was going for, this is the raw HTML code no php.
  8. It's called oxygen, it is a bootstrap 3 template. Do you think that could be an issue?
  9. Hey guys/ girls What would cause a spinning grey circle to be shown, when trying to implement a custom made skin? Just been testing out and can't get my head round why, link below to show what I mean. Cheers Daniel http://lp9.pe.hu/phpvms/index.php
  10. ok egnore last post I have figured it out. My problem is the page will load everything, then once it is complete it will then go on to do pageintation. Any ideas on how to stop that? if you go to www.emtvirtual.co.uk then into the schedules page you will see what i mean. thank you Daniel
  11. sorry to be a pain but where should I put the sql statement? would I put it in core/modules/schedules\schedules.php? thank you Dan
  12. Ok cheers Vangelis I'll get on with that thank you for the help Dan
  13. hello folks My name is Daniel and I am new to the forums. I am helping out a friend with the set up of his VA and their schedules will be over 10k in number. This will be a strain for the browser to load into one page. my plan is to paginate so that they will display a certain number say 50 to each page. I've searched the forums and google and have tried out a few different approaches with no success. Would anybody have a look at the code to see if I have don't something wrong? thank yo for any help Dan <script type="text/javascript"> $(document).ready(function() { $('#mytable').dataTable ( { "sPaginationType": "full_numbers" } ); } ); </script> <div class="page-title-container"> <div class="container"> <div class="page-title pull-left"> <h2 class="entry-title">Flight Result</h2> </div> </div> </div> <section id="content"> <div class="container"> <div id="main"> <div class="row"> <div > <div class="flight-list listing-style3 flight"> <table id="mytable" class="standard-table" style="text-align:center;"> <thead> <tr> <th style="width: 1%;text-align: center;">Airline</th> <th style="width:1%;text-align: center;">Flight</th> <th style="width:1%;text-align: center;">Dep</th> <th style="width:1%;text-align: center;">Arr</th> <th style="width:9%;text-align: center;">Aircraft</th> <th style="width:9%;text-align: center;">Distance</th> <th style="text-align: center;" >Information</th> <th style="text-align: center;" >Information</th> </tr> </thead> <tbody><article class="box"> <?php foreach($schedule_list as $schedule) { ?> <tr> <td> <span> <img style="width: 200px;" title="<?php echo $airlines->name ?> " alt="<?php echo $airlines->name ?>" src="<?php echo SITE_URL; ?>/lib/skins/one/images/airline_logo_code/<?php echo $schedule->code ?>.png"> </span> </td> <td style="font-weight: 100;font-size: 15px;"> <?php echo $schedule->code . $schedule->flightnum?> </td> <td style="font-weight: 100;font-size: 15px;"> <b><?php echo $schedule->depicao ?></b> </td> <td style="font-weight: 100;font-size: 15px;"> <b><?php echo $schedule->arricao ?></b> </td> <td style="font-weight: 100; width:9%;font-size: 15px;"> <?php echo $schedule->aircraft; ?> </td> <td style="font-weight: 100; width:9%;font-size: 15px;"> <?php echo "{$schedule->distance}"; ?> </td> <td> <div class="details col-xs-9 col-sm-10"> <div class="details-wrapper"> <div class="first-row"> <div> <h4 class="box-title"> <?php echo $schedule->depname ?> to <?php echo $schedule->arrname ?></h4> </div> </div> <div class="second-row"> <div class="time"> <div class="take-off col-sm-4"> <div class="icon"><i class="soap-icon-plane-right yellow-color"></i></div> <div> <span class="skin-color">Take off</span><br /><?php echo $schedule->deptime ?> </div> </div> <div class="landing col-sm-4"> <div class="icon"><i class="soap-icon-plane-right yellow-color"></i></div> <div> <span class="skin-color">landing</span><br /><?php echo $schedule->arrtime ?> </div> </div> <div class="total-time col-sm-4"> <div class="icon"><i class="soap-icon-clock yellow-color"></i></div> <div> <span class="skin-color">total time</span><br /><?php echo $schedule->flighttime ?> </div> </div> </div> </div> </div> </td> <td> <div class="details col-xs-9 col-sm-10"> <div style="width: 90%;"class="details-wrapper"> <div class="first-row"> <div class="action"> <?php # Don't allow overlapping bids and a bid exists if(Config::Get('DISABLE_SCHED_ON_BID') == true && $schedule->bidid != 0) { ?> <a id="<?php echo $schedule->id; ?>" class="addbid" href="<?php echo actionurl('/schedules/addbid/?id='.$schedule->id);?>"class="button btn-mini sky-blue1 full-width"></a> <?php } else { if(Auth::LoggedIn()) { ?> <a id="<?php echo $schedule->id; ?>" class="addbid button btn-mini sky-blue1 full-width" href="<?php echo url('/schedules/addbid');?>">Add to Bid</a> <?php } } ?> </div> </div> <div class="second-row"> <div class="action"> <a href="<?php echo url('/schedules/details/'.$schedule->id);?>" class="button btn-mini red">DETAILS</a> </div> </div> </div> </td> </tr> <?php /* END OF ONE TABLE ROW */ } ?> </article> </tbody> </table> </div> </div> </div> </div> </div> </section>
×
×
  • Create New...