Jump to content

damien82

Members
  • Posts

    64
  • Joined

  • Last visited

damien82's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Problem solved,i have assigned a new hub and it is working now
  2. Hello everybody I have a problem.I have installed phpvms but the pilot id 0001 isnt shown in the roster Anybody knows what to do? Regards Damien
  3. hi no I m using checkdomain.de I m from luxemburg,so thats why this hosting company will work better for me ;-)
  4. hmmm it didnt help http://goldenskyairline.de/buchung/index.php/registration
  5. hey mark thanks for your answer, which permission must i give?? 777?? regards
  6. Hello everybody I have a question. What does that mean? Warning: file_exists() [http://www.php.net/manual/function.file-exists.php]: open_basedir restriction in effect. File(/home/tnuilkku/htdocs/buchung//lib/skins/crystal/ I dont realy understand it Thanks for your answers Damien
  7. Hello everybody. I have a little problem. I changed the latitude and longtitude in the local.config of the map,but th map map always shows the same place. I would like to center it for frankfurt(germany),but it still shows the united states. Regards
  8. Hello every body I have a question.I would like that the unregistered users can see my fleet,but i dont know how to add this in my Menu If someone could help me that would be fine Regards ;-)
  9. Yeah I re uploaded te registrationmain.tpl and leave it in english for the moment thats better Thanks anyway
  10. yes i changed,but im going to re update the reg tpl and hold it in english thats better lol
  11. Hmm i tried it with different names The password ist strong enoughbut it still doesnt work... Here is my registration tpl <h3>Enregistrement</h3> <p>Bienvenue sur la page d inscription d <?php echo SITE_NAME; ?>. Apres votre Inscription,un email vous sera envoye par un membre de notre Staff pour confirmer l Inscription.</p> <form method="post" action="<?php echo url('/registration');?>"> <dl> <dt>Prenom: *</dt> <dd><input type="text" name="Prenom" value="<?php echo Vars::POST('Prenom');?>" /> <?php if($firstname_error == true) echo '<p class="error">Please enter your first name</p>'; ?> </dd> <dt>Nom de famille: *</dt> <dd><input type="text" name="Nom de famille" value="<?php echo Vars::POST('Nom de famille');?>" /> <?php if($lastname_error == true) echo '<p class="error">Please enter your last name</p>'; ?> </dd> <dt>Adresse email: *</dt> <dd><input type="text" name="email" value="<?php echo Vars::POST('email');?>" /> <?php if($email_error == true) echo '<p class="error">Please enter your email address</p>'; ?> </dd> <dt>Compagnie: *</dt> <dd> <select name="code" id="code"> <?php foreach($allairlines as $airline) { echo '<option value="'.$airline->code.'">'.$airline->code.' - '.$airline->name.'</option>'; } ?> </select> </dd> <dt>Hub: *</dt> <dd> <select name="hub" id="hub"> <?php foreach($allhubs as $hub) { echo '<option value="'.$hub->icao.'">'.$hub->icao.' - ' . $hub->name .'</option>'; } ?> </select> </dd> <dt>Pays: *</dt> <dd><select name="location"> <?php foreach($countries as $countryCode=>$countryName) { if(Vars::POST('location') == $countryCode) $sel = 'selected="selected"'; else $sel = ''; echo '<option value="'.$countryCode.'" '.$sel.'>'.$countryName.'</option>'; } ?> </select> <?php if($location_error == true) echo '<p class="error">Please enter your location</p>'; ?> </dd> <dt>Mot de passe: *</dt> <dd><input id="Mot de passe" type="Mot de passe" name="password1" value="" /></dd> <dt>Veuillez a nouveau entrer votre mot de passe: *</dt> <dd><input type="password" name="password2" value="" /> <?php if($password_error != '') echo '<p class="error">'.$password_error.'</p>'; ?> </dd> <?php //Put this in a seperate template. Shows the Custom Fields for registration Template::Show('registration_customfields.tpl'); ?> <dt>reCaptcha</dt> <dd> <?php echo recaptcha_get_html(Config::Get('RECAPTCHA_PUBLIC_KEY'), $captcha_error); ?> </dd> <dt></dt> <dd><p> En appuyant sur register,vous etes d accord avec les conditions d utilisation</p></dd> <dt></dt> <dd><input type="submit" name="submit" value="Register!" /></dd> </dl> </form>
×
×
  • Create New...