Jump to content

monitral

Members
  • Posts

    7
  • Joined

  • Last visited

monitral's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Thank you. I also want to try it but the download does not work
  2. I tried to change this piece of code and I just get the form, but when I go to select I do not get the award. I do not know if I'm on the right path, because i'm not very good and i don't know PHP (something I can do trough you). I'm trying! <dt>Minimum Rank Required to fly</dt> <dd> <select name="minrank"> <option value="0" <?php if($aircraft->minrank == 0){ echo 'selected'; } ?>>None</option> <?php foreach($allranks as $rank) { if($aircraft->minrank == $rank->rankid) $sel = 'selected="selected"'; else $sel = ''; echo "<option value=\"{$rank->rankid}\" {$sel} >{$rank->rank}</option>"; } ?> </select> </dd> <dt>Minimum Award Required to fly</dt> <dd> <select name="minaward"> <option value="0" <?php if($aircraft->minaward == 0){ echo 'selected'; } ?>>None</option> <?php foreach($allaward as $award) { if($aircraft->minaward == $award->awardid) $sel = 'selected="selected"'; else $sel = ''; echo "<option value=\"{$award->awardid}\" {$sel} >{$award->award}</option>"; } ?> </select></dd>
  3. If I wanted to restrict the fleet to a certain number of pilots? For example, I would like to create a private flying club internal my VA, using airplanes that are not in the fleet (eg Cesna ETC .....) wanting to do a tour like dangerous from IVAO. How could limit its use as it does with the rating in the ranks. One could, for example, use an award and those who do not have the award can not use these planes and use its schedule. Do you think this is possible? I hope I explained myself..Sorry for my bad English ....
  4. Somehow you were right, to take out and put the files I have taken even that which you said. In fact the answer to the ticket was: Dear Customer, in relation to your complaint, we inform you that the problem is indicated by the absence within your web space. htaccess file containing directives url_rewriting necessary for the proper functioning of your pages. We invite you to make the publication of that file, as in the original configuration of your application, so as to obviate the occurrence of the problem. We remain available for further needs. Now everything is ok. Thanks
  5. Thank you for having responded to me. The platform is linux. The file or folder .htaccess to which you refer is not in the root of the site. The only folder that there is cgi-bin, but is empty. Meanwhile, I opened a ticket for assistance. We hope to respond soon. The reference site is www.airitalyvirtual.com
  6. I tried to load the site on the web space purchased, but after installing I see the home page and when I try to do anything I get this error "No input file specified". Locally I have no problem, what can have happened?
  7. Sorry, but when I get back on the menu airports get this error, how can I solve. Thank you so much Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'Airports::airports' was given in /membri/testva/core/classes/MainController.class.php on line 218
×
×
  • Create New...