Jump to content

vicente

Members
  • Posts

    100
  • Joined

  • Last visited

Everything posted by vicente

  1. I used the last version 7.04 and I set up the php 8,0 but I got that erros above. I know that is a weird wish but I need help, someone can install on my host please ? If someone can help me I thank you a lot !!
  2. I set the php 8.0 and now I got this new message; Deprecated: Method ReflectionParameter::getClass() is deprecated in /home/storage/9/1e/2c/tamvirtual1/public_html/crew.tamvirtual.net/vendor/laravel/framework/src/Illuminate/Container/Container.php on line 871 Deprecated: Method ReflectionParameter::getClass() is deprecated in /home/storage/9/1e/2c/tamvirtual1/public_html/crew.tamvirtual.net/vendor/laravel/framework/src/Illuminate/Container/Container.php on line 945 Deprecated: Method ReflectionParameter::getClass() is deprecated in /home/storage/9/1e/2c/tamvirtual1/public_html/crew.tamvirtual.net/vendor/laravel/framework/src/Illuminate/Container/Container.php on line 871 Deprecated: Method ReflectionParameter::getClass() is deprecated in /home/storage/9/1e/2c/tamvirtual1/public_html/crew.tamvirtual.net/vendor/laravel/framework/src/Illuminate/Container/Container.php on line 945
  3. Well I´m not expert in php but I created my subdomain ex - crew.tamvirtual.net then I put the last phpvms folder there. My phpversion is the 7.4, I tried with other version but I had the same problem.
  4. Hello friends. I had the same "problem" during my installation, could you help me please ? I got this error Warning: require(/home/storage/9/1e/2c/tamvirtual1/public_html/phpvms/bootstrap/../vendor/autoload.php): failed to open stream: No such file or directory in /home/storage/9/1e/2c/tamvirtual1/public_html/phpvms/bootstrap/autoload.php on line 17 Fatal error: require(): Failed opening required '/home/storage/9/1e/2c/tamvirtual1/public_html/phpvms/bootstrap/../vendor/autoload.php' (include_path='.:/usr/share/pear74') in /home/storage/9/1e/2c/tamvirtual1/public_html/phpvms/bootstrap/autoload.php on line 17
  5. Yes but probally I miss something and I don´t know what.
  6. Someone can help me please, I tried install the new version doing the upload to my server and when I tried acess the page I received this errors. How can I fix this please ? Warning: require(/home/u620650534/domains/privateair.com.br/public_html/core/bootstrap/../vendor/autoload.php): failed to open stream: No such file or directory in /home/u620650534/domains/privateair.com.br/public_html/core/bootstrap/autoload.php on line 17 Warning: require(/home/u620650534/domains/privateair.com.br/public_html/core/bootstrap/../vendor/autoload.php): failed to open stream: No such file or directory in /home/u620650534/domains/privateair.com.br/public_html/core/bootstrap/autoload.php on line 17 Fatal error: require(): Failed opening required '/home/u620650534/domains/privateair.com.br/public_html/core/bootstrap/../vendor/autoload.php' (include_path='.:/opt/alt/php70/usr/share/pear') in /home/u620650534/domains/privateair.com.br/public_html/core/bootstrap/autoload.php on line 17
  7. Nice desing, do you can help me where i can found on .css to change the color of the menu please ?
  8. eliezerazevedo agradeço muito sua ajuda quando possivel de verdade.
  9. Eliezer se você puder testar ai, estou com problemas na hora de apagar qualquer voo no schedules, checa por favor, ele redireciona para http://tamv.net/do/index.php/schedules/removebid mas não apaga do schedules ,sabe pq ?
  10. What do you need in your website ?
  11. I can help you, contact me in presidente@tamv.net
  12. Hi bodys, i would like to know if have some code for a simple form to get the metar. Like this examples ! http://metar.vatsim.net/search_metar.php http://www.aviationweather.gov/adds/metars/ Thanks !
  13. Segue ele, obrigado !!! schedule_results.php
  14. Ops I forgot in english !! Eliezer good day, now i'm facing a new problem, i already have had this problem befero, when i select some flight and click to add bid this error is showing to me "no route passed" I already fixed this problem before using this example http://forum.phpvms...._+route +passed but with this template i don't know how to fix, do you can help me please ? Thanks
  15. Eliezer bom dia, agora estou tendo este problema ao tentar salvar um voo me aparece "no route passed" eu já havia tido este erro antes mas consegui corrigir usando este exemplo http://forum.phpvms.net/topic/21979-jquery-for-bootstrap-and-no-route-passed/page__hl__%2Broute+%2Bpassed mas agora não estou conseguindo, pode me ajudar por favor. Grato
  16. It's not working here, someone can help me please ?? Thanks !! It's my code. <?php ini_set('display_errors', 0 ); error_reporting(0); ?> <?php if(!defined('IN_PHPVMS') && IN_PHPVMS !== true) { die(); } ?> <style type="text/css"> <!-- .style3 {color: #FFFFFF; font-size: 12px; } .style4 {font-size: 12px} .style5 {color: #FF0000} --> </style> <h3 align="center"> <?php if(!$pilot_list) { echo 'There are no pilots!'; return; } ?> </h3> <div align="center"> <table width="678" height="64" class="" id=""> <thead> <tr> <th bgcolor="#FF0000"><div align="center"><span class="style3">Matricula</span></div></th> <th bgcolor="#FF0000"><div align="center"><span class="style3">Nome</span></div></th> <th bgcolor="#FF0000"><div align="center"><span class="style3">Cargo</span></div></th> <th bgcolor="#FF0000"><div align="center"><span class="style3">Horas Voadas</span></div></th> <th bgcolor="#FF0000"><div align="center"><span class="style3">IVAO</span></div></th> </tr> </thead> <tbody> <?php foreach($pilot_list as $pilot) { /* To include a custom field, use the following example: <td> <?php echo PilotData::GetFieldValue($pilot->pilotid, 'VATSIM ID'); ?> </td> For instance, if you added a field called "IVAO Callsign": echo PilotData::GetFieldValue($pilot->pilotid, 'IVAO Callsign'); */ // To skip a retired pilot, uncomment the next line: //if($pilot->retired == 1) { continue; } ?> <tr> <td width="1%" nowrap><div align="center"><a href="<?php echo url('/profile/view/'.$pilot->pilotid);?>" class="style4"> <?php echo PilotData::GetPilotCode($pilot->code, $pilot->pilotid)?></a> </div></td> <td> <div align="center"><span class="style4"><?php echo $pilot->firstname.' '.$pilot->lastname?> </span><span class="style4"><img src="<?php echo Countries::getCountryImage($pilot->location);?>" alt="<?php echo Countries::getCountryName($pilot->location);?>" /></span></div></td> <td><div align="center"><img src="<?php echo $pilot->rankimage?>" alt="<?php echo $pilot->rank;?>" /></div></td> <td><div align="center"><span class="style4"><?php echo Util::AddTime($pilot->totalhours, $pilot->transferhours); ?></span></div></td> <td><div align="center">$feildvalue = PilotData::GetFieldValue($pilot->pilotid, 'VID_IVAO'); if($feildvalue != '') { echo '<img src="http://status.ivao.aero/R/'.$feildvalue.'.png">'; }</div></td> <?php } ?> </tbody> </table> </div>
  17. Neste novo login, onde devol alterar a cor de fundo do botão login no css não achei o arquivo, desculpas !! Muito obrigado pela atenção !! Por favor.
  18. How to limit the number of pilots that appears in the pilots list? For example 10 per page ? Someone can help me please ??
  19. Muito obrigado, problema corrigido. Thank a lot problem fixed !!
  20. Caro eliezerazevedo estou com um pequeno problema no template quando eu vou buscar um voo a tele em vermelho, no seu ira aparecer laranja fica na tela e não some. Segue a foto a baixo. Aparentemente a pagina que eu quero está carrega atrás do vermelho, tem como arrumar isso ?
  21. Someone cal help me with this problem, i bought this module yesterday and i have some problem to install this feature, if someone can help me i will be helpfull. Sorry for my english !!
  22. Será um prazer caso queira participar de nossa empresa, eu que agradeço ! Will be a pleasure have you in your company !!
  23. Ajudou totalmente segue o link www.tamv.net You help me a lot thanks !! follow the link www.tamv.net
×
×
  • Create New...