Jump to content

Problema Register/Login


Koqs

Recommended Posts

Salut,am facut un sistem register/login si nu am primit nicio eroare/warning si cand intru pe server nu imi apare sa ma inregistrez si nici loghez, baza de date este facuta pe localhost.Ceva idei?

Link to comment
Share on other sites

Acum 43 minute, GhostyAdv a spus:

Probabill nu ai configurat bine in gamemode

Verifica daca ai asa la SQL =

  mysql_connect("localhost", "root", "numele bazei de date", ""), print("Server:localhost");

SQL = mysql_connect("localhost", "root", "gamemodebun_db", "");

Asa am incerc acum sa vad si revin cu un edit

Edit:Acceasi problema...Nu apare cand intru pe server sistemul de register sau login

Edited by Koqs
Link to comment
Share on other sites

3 hours ago, Koqs said:

SQL = mysql_connect("localhost", "root", "gamemodebun_db", "");

Asa am incerc acum sa vad si revin cu un edit

Edit:Acceasi problema...Nu apare cand intru pe server sistemul de register sau login

Ai verificat daca ai acceasi baza de date in phpmyadmin

Link to comment
Share on other sites

La 12.07.2019 la 21:04, WiDuAlK a spus:

Dialogul e problema arata cum faci accesarea dialogurilor

 

 

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[]) {
    switch(dialogid) {
        case DIALOG_REGISTER: {
            if(!response)
                return Kick(playerid);

            if(strlen(inputtext) < 6 || strlen(inputtext) > 32)
                return ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_PASSWORD, "Register", "Scrie o parola pentru a te putea inregistra!(Minim 6 caractere / maxim 32):", "Select", "Cancel");

            gQuery[0] = EOS;
            mysql_format(SQL, gQuery, sizeof(gQuery), "INSERT INTO `users ` (`Name`, `Password`) VALUES ('%s', '%s')",GetName(playerid), inputtext);
            mysql_tquery(SQL, gQuery, "insertAccount", "1", playerid);

            gString[0] = EOS;
            format(gString, sizeof(gString), "Parola ta contine %d caractere.", strlen (inputtext));
            SCM(playerid, -1,gString);

            format(PlayerInfo[playerid][pPassword], 32, inputtext);

            ShowPlayerDialog(playerid, DIALOG_EMAIL, DIALOG_STYLE_INPUT, "Email", "Seteaza-ti adresa de email:", "Select", "Cancel");
        }
        case DIALOG_EMAIL: {
            if(!response)
                return Kick(playerid);

            if(strlen(inputtext) < 6 || strlen(inputtext) > 32)
            return ShowPlayerDialog(playerid, DIALOG_EMAIL, DIALOG_STYLE_INPUT, "Email", "Seteaza-ti adresa de email:", "Select", "Cancel");    

            gQuery[0] = EOS;
            mysql_format(SQL, gQuery, sizeof(gQuery), "UPDATE `users` SET `Email`='%s' WHERE `ID`='%d'", inputtext, PlayerInfo[playerid][pSQLID]);
            mysql_tquery(SQL, gQuery, "", "", playerid);

            gString[0] = EOS;
            format(gString, sizeof(gString), "Email-ul tau este: %s.", inputtext);
            SCM(playerid, -1,gString);

            format(PlayerInfo[playerid][pEmail], 32, inputtext);    

            ShowPlayerDialog(playerid, DIALOG_GENDER, DIALOG_STYLE_MSGBOX, "Gender", "Seteaza-ti sexul:", "Masculin", "Feminin");    
        }
        case DIALOG_GENDER: {
            switch(response) {
                case 0: {
                    PlayerInfo[playerid][pGender] = 1;
                    SCM(playerid, -1, "Sex setat: Feminin.");
                }
                case 1: {
                    PlayerInfo[playerid][pGender] = 0;
                    SCM(playerid, -1, "Sex setat: Masculin.");
                }
            }

            gQuery[0] = EOS;
            mysql_format(SQL, gQuery, sizeof(gQuery), "UPDATE `users` SET `Gender`='%d' WHERE `ID`='%d'", PlayerInfo[playerid][pGender], PlayerInfo[playerid][pSQLID]);
            mysql_tquery(SQL, gQuery, "", "", playerid);

            SpawnPlayer(playerid);
        }
        case DIALOG_LOGIN: {
            if(!response)
                return Kick(playerid);

             mysql_format(SQL, gQuery, sizeof(gQuery), "SELECT = FROM `users` WHERE `Name`='%s' AND `Password` = '%s' LIMIT 1", GetName(playerid), inputtext);
            mysql_tquery(SQL, gQuery, "onLogin", "1", playerid);
        }
    }
    return 1;
}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.