i have a big problems

Begonnen von , 04 März 2002, 21:40:55

⏪ vorheriges - nächstes ⏩

0 Mitglieder und 1 Gast betrachten dieses Thema.

i have installated your XMB FORUM on phpnuke5.5, but i don't have a possibility to create the forums and a new topic, :puzz
and i don't find the coin in administration box.. :cry

please help me !!!!  :cry
thanks you.
bye ;)

NB i speak french and a lot english and not german

my email is   fighter-one@wanadoo.fr

DarkBoy

Hi
hm i asked some Question in hope we can help you !
first: you use an Nuke Version 5.5 ?
than the Admintolls show in an Button in XForum ! if you logged in as an Admin! Not in the normal Adminsection!

second. Pls give us an URL  so we can  look.

and next btw, pls register you on our Site.
We wait for some Details and sorry we  dont speak French :)

FIGHTER_KARAN

hello,
I have resolved my problems, i have installted PHPNUKE 5.5 VPK (you PHP Nuke), and now  i don't have problems  :D
Thanks you...

I stay to build an translation of the language english to French

When, i have finish, i upload to you
that's hard...

Bye

DarkBoy

Hi
greatt and thx for Translation, and  send  all things you translate in   your language

hello, (sorry for my english because i speak french)

i have a problems and i hope you would be ablle to resolved him

i have build an formular html with an php code to read and write the data in my DATABASE but the html files don't sent or receveid the data (i used the HTML TO NUKE to launch my HTML files)

I give you the text of my tables
and the source code of my html

If they are an modification to do please help me   :cry

Thx you

The CREATE TABLE :

CREATE TABLE JOUEURS (
id_joueur INT NOT NULL AUTO_INCREMENT,
pseudo VARCHAR (16),
serveur1 VARCHAR(10),
serveur2 VARCHAR(10),
serveur3 VARCHAR(10),
serveur4 VARCHAR(10),
serveur5 VARCHAR(10),
jeu1 VARCHAR(20),
jeu2 VARCHAR(20),
jeu3 VARCHAR(20),
jeu4 VARCHAR(20),
jeu5 VARCHAR(20),
jeu6 VARCHAR(20),
jeu7 VARCHAR(20),
jeu8 VARCHAR(20),
jeu9 VARCHAR(20),
jeu10 VARCHAR(20),
lundi VARCHAR(30),
mardi VARCHAR(30),
mercredi VARCHAR(30),
jeudi VARCHAR(30),
vendredi VARCHAR(30),
samedi VARCHAR(30),
dimanche VARCHAR(30),
PRIMARY KEY (id_joueur), KEY pseudo(pseudo)
) ;

And the source code html (file is inscription.htm) used with html to nuke :

<html>
<head>
<title> Saisie donnée membres Write more data of members in other table of database</title>
</head>
<?php
   //  Decodage du nom d utilisateur Decode user

   $user = base64_decode($user);
   list($jid,$juser,$jpass,$jtest4,$jtest5,$jtest6,$jtest7,$jtest8,$jtest9,$jtest10,$jtest11)= explode(":", $user);

       Print ("Votre pseudonyme est Your user is $juser  !\n");

   //  Recuperation des données du joueur  to received the data of user

   mysql_connect($dbhost, $dbuname, $dbpass);
    mysql_select_db("$dbname") or die ("Unable to select database");

     $sqlrecherche="SELECT * FROM JOUEURS where pseudo=$juser";

print ("$sqlrecherche  \n");

     $resultat=mysql_query($sqlrecherche);

print ("$resultat \n");

     list($id_joueur,$pseudo,$serveur1,$serveur2,$serveur3,$serveur4,$serveur5,$jeu1,$jeu2,$jeu3,$jeu4,$jeu5,$jeu6,$jeu7,$jeu8,$jeu9,$jeu10,$lundi,$mardi,$mercredi,$jeudi,$vendredi,$samedi,$dimanche)= explode (":", $resultat);

?>

<form>
<p> User : <?php print ("$juser")  ?>
<br> Pseudo : <?php print ("$pseudo") ?>
<br>
<br> Quels Serveur de Jeux utilisés vous :
<br> GOA : <input type="radio" name="serveur1">  WON : <input type="radio" name="serveur2"> UBISOFT : <input type="radio" name="serveur3"> MSN : <input type="radio" name="serveur4"> Autres: <input type="text" name="serveur5">
<br>
<br>
<br> Jeu1 <input type ="text" name="jeu1">
<br> Jeu2 <input type ="text" name="jeu2">
<br> Jeu3 <input type ="text" name="jeu3">
<br> Jeu4 <input type ="text" name="jeu4">
<br> Jeu5 <input type ="text" name="jeu5">
<br>
<br>
<br> Jeux avec lesquels vous jouer exceptionnelement :
<br> Jeu6 <input type ="text" name="jeu6">
<br> Jeu7 <input type ="text" name="jeu7">
<br> Jeu8 <input type ="text" name="jeu8">
<br> Jeu9 <input type ="text" name="jeu9">
<br> Jeu10 <input type ="text" name="jeu10">
<br>
<br>  Merçi de nous signaler Å• quel heure vous Ä™tes le plus succeptible de vous connecter Å• internet :
<br>  THX to give us your time, where you are connecting in the NET
<br>
<br>  exemple :   18h00>>19h00 * 21h00>>22h30
<br>
<br> Lundi <input type ="text" name="lundi">
<br> Mardi <input type ="text" name="mardi">
<br> Mercredi <input type ="text" name="mercredi">
<br> Jeudi <input type ="text" name="jeudi">
<br> Vendredi <input type ="text" name="vendredi">
<br> Samedi <input type ="text" name="samedi">
<br> Dimanche <input type ="text" name="dimanche">
<p><input type="submit" name="Soumettre">
   <input type="Reset">
</form>
<?php


   if(isset($soumettre)):
      if ($pseudo=$juser);
         {$update="UPDATE JOUEURS SET ($serveur1,$serveur2,$serveur3,$serveur4,$serveur5,$jeu1,$jeu2,$jeu3,$jeu4,$jeu5,$jeu6,$jeu7,$jeu8,$jeu9,$jeu10,$lundi,$mardi,$mercredi,$jeudi,$vendredi,$samedi,$dimanche) where (pseudo=$juser)";
         }
         // if user is exist (UPDATE only)
      else:
         {$update="INSERT INTO JOUEURS VALUES (NULL,$juser,$serveur1,$serveur2,$serveur3,$serveur4,$serveur5,$jeu1,$jeu2,$jeu3,$jeu4,$jeu5,$jeu6,$jeu7,$jeu8,$jeu9,$jeu10,$lundi,$mardi,$mercredi,$jeudi,$vendredi,$samedi,$dimanche)";
         }
         // if user dont exist (insert creating)

// to verify data sending
   mysql_query($update);
   print ("$juser,$serveur1,$serveur2,$serveur3,$serveur4,$serveur5,$jeu1,$jeu2,$jeu3,$jeu4,$jeu5,$jeu6,$jeu7,$jeu8,$jeu9,$jeu10,$lundi,$mardi,$mercredi,$jeudi,$vendredi,$samedi,$dimanche");

   endif;
?>
</html>


after the formular sending , html to nuke said the file is not an html file...  :cry
Please Help me

http://www.clan-str-karan.fr.st/

NB: i trial to tranlate the files language english to french... the admin files is doing...

DarkBoy

Ok
 give us some Time and we will test it, we see a little error :)
So  try again later and send us  your Email so we can send you the code .

btw,pls register on our Site:)
[Bearbeitet am: 21/3/2002 von Admin DarkBoy]

hello, THX you

i am registred with the pseudo FIGHTER_KARAN (my pseudo is online)
but in the xforum, my pseudo is desactivated !!!!

My Email is   fighter-one@wanadoo.fr


Thanks you for this help

FIGHTER_KARAN

I HAVE RESOLVED MY PROBLEM WITH REGISTRATED NAME, I HAVE CHANGED MY PASSWORD...
and i am online in your forum

i shall to wait your answers on the source code, thanks you for your help :) :) :) :)

bye

DarkBoy

Hi
ok give us some Time pls :)

FIGHTER_KARAN

ok, you are the all time, what you are need, :) :)
THank You

FIGHTER_KARAN

hello,

I come to news, to know if you are resolved my problems with my script ?

THX

bye