Jump to content

Artjom

Members
  • Posts

    120
  • Joined

  • Last visited

Everything posted by Artjom

  1. when cache files were deleted, it will show me this erorr index.php/finances Warning: file_put_contents(C:\Program Files (x86)\VertrigoServ\www\938\core\cache/phpvms_months_since_2010-05-26 00:53:17.cache) [function.file-put-contents]: failed to open stream: Invalid argument in C:\Program Files (x86)\VertrigoServ\www\938\core\classes\CodonCache.class.php on line 210
  2. Notice: The template file "C:\Program Files (x86)\VertrigoServ\www\938\/admin/templates\import_aircraftform.tpl" doesn't exist in C:\Program Files (x86)\VertrigoServ\www\938\core\classes\TemplateSet.class.php on line 248
  3. go to lib/skins/ObsessBlue/style.css and change all image link From /lib/skins/ObsessBlue/image/ To image/ example: From: /lib/skins/ObsessBlue/image/img_38.jpg To: image/img_38.jpg
  4. Artjom

    Languages

    PHPVMS in French no! template you are required to translate into French, see manual how to create templates! http://forum.phpvms.net/page/index.html?category=5
  5. tomorrow in flight, from UNOO to EDDL ORN772

  6. Thank you Nabeel!
  7. Hello all, I've a new idea that's after 48 hours of flight booking, the pilot is withdrawn $100 (or to be able to prescribe in the config, how much money to rent for late flight) Example: Pilot had $200 he booked a flight, but doesn't make the flight, after 48 hours, automatic removed the flight from flight bids, and withdrawn $100 from pilot! Pilot have $100! sorry for my english, Thanks Artjom
  8. Artjom

    Pages

    until then I copied the wrong code, but now corrected!
  9. Artjom

    Pages

    Or you can delet this code from core_navigarion.tpl <?php echo $MODULE_NAV_INC;?>
  10. Artjom

    Encoding

    This problem was lost! You must be add: 1. Date Base to UT8 2. All tabeles set to UTF8 3. localhost.config.php set UTF8 РуÑÑкий Проблема уже решена! еÑли что пиши в ПМ отвечу! 1. Базу на УТФ8 2. Ð’Ñе таблицы на УТФ8 3. Ð’ файле localhost.config.php изменить на УТФ8
  11. It's for phpVMS
  12. Ok thanks! I translate this in few time!
  13. Can you post all the Flight Phase here please and I translate they! That's all??? Boarding Taxi to RWY Taking Off Climbing Cruise Descending Landing Shortly On Approach Level Flight Taxiing to Gate Arrived
  14. that's a good idea!! I save translated file in (.pptx) Microsoft Power Point, that's easier for you to find who is who!
  15. I make the translation in few minutes and send per Email to you!
  16. can you tell me! who can i contact him?
  17. Hello, how can I convert kAKARS into Russian? Because my pilots were all Russian people, they doesn't understand English language! very necessary! Thanks!
  18. Use Invision Power Board Forum, there is an plugin gallery!
  19. I wanted it to do the same, with the help of a friend did, but there is one drawback is that the signature is generated only when data changes, so it is not convenient, then threw the script, if I find didst lay out, but it was for the old version!
  20. Thank you, This code works <?php echo '<dt>VATSIM ID</dt> <dd>'; $customfield = PilotData::GetFieldValue ($userinfo->pilotid , 'VATSIM ID' ); { echo '<input type="text" name="VATSIM ID" value="'.$customfield.'" />' ; } echo '</dd>'; ?>
  21. Hello everyone, how to make that conclusion was by a single field, rather than all at once each? core/templates/profile_edit.tpl <?php if($customfields) { foreach($customfields as $field) { echo '<dt>'.$field->title.'</dt> <dd>'; if($field->type == 'dropdown') { $field_values = SettingsData::GetField($field->fieldid); $values = explode(',', $field_values->value); echo "<select name=\"{$field->fieldname}\">"; if(is_array($values)) { foreach($values as $val) { $val = trim($val); if($val == $field->value) $sel = " selected "; else $sel = ''; echo "<option value=\"{$val}\" {$sel}>{$val}</option>"; } } echo '</select>'; } elseif($field->type == 'textarea') { echo '<textarea class="customfield_textarea"></textarea>'; } else { echo '<input type="text" name="'.$field->fieldname.'" value="'.$field->value.'" />'; } echo '</dd>'; } } ?> Example: not so PROFILE SETTINGS VATSIM ID VATSIM NAME YOUR SYSTEM but so PROFILE SETTINGS YOUR SYSTEM VATSIM SETTINGS VATSIM ID VATSIM NAME This code isn't work... <?php $customfield = SettingsData::GetField ($field->fieldid , 'VATSIM_NAME' ); {echo '<input type="text" name="VATSIM_NAME" value="'.$field->value.'" />' ;}?>
  22. Hello I use Kaspersky 2010 the last version! no problems!
  23. Artjom

    Briefing

    I've lost all the problems!! Thank you Nabeel!
  24. Artjom

    Briefing

    I've lost these problem! use this code!!! <?php $time = explode(":", $schedule->deptime); echo $time[0]; echo $time[1]; ?>
×
×
  • Create New...