#Help mysql - database - unity

1 messages · Page 1 of 1 (latest)

ashen kestrel
#

Hel

#

example there

#

and modify WWW old , new UnityWebRequest

vocal tendon
#

Your request reaches the server. Server has the error information

ashen kestrel
#

hmm i see.

vocal tendon
#

Error 500 just mean unknown error happened from your server

#

You need to test your server

ashen kestrel
#

Hmm other is "dbconnection" is working?

ashen kestrel
#

and there "createuser.php"

#

Okay i see but check investigate maybe hard.

vocal tendon
#

Do you have server log?

#

Like what exception happened from server

ashen kestrel
#

no have logs but idk okay well...

#

moment ok use postman

#

empty lol

#

@vocal tendon is server cloudflare

vocal tendon
#

What is empty? Postman is client

ashen kestrel
vocal tendon
#

You send request to server with it

#

With your url

ashen kestrel
#

okay

#

@vocal tendon look there link

#

and already have empty.

vocal tendon
#

Well did you put your post fields?

#

Username Email etc

ashen kestrel
#

yes already all @vocal tendon

vocal tendon
#

From the POSTman….

ashen kestrel
vocal tendon
#

You can set the body values from POSTman

ashen kestrel
#

there is?

vocal tendon
#

Yes

#

Fill your Key and Value

ashen kestrel
#

Hmm how is key and value CM_Hmm

#

example same User - Benzitczo

#

?

vocal tendon
#

Yes your parameters

#

Username
Email
Password

ashen kestrel
#

ok

#

Done

#

try sent click?

vocal tendon
#

Yeah let’s try

ashen kestrel
#

exactly? Okay done sent

#

hmm nothing.

vocal tendon
#

Yes it says 500

ashen kestrel
#

exactly same unity

#

how solution ?

vocal tendon
#

So it is not Unity problem

ashen kestrel
vocal tendon
#

Your server has the error detail

ashen kestrel
vocal tendon
#

You have access to your server?

ashen kestrel
#

yes have.

#

wait you experience php?

vocal tendon
#

Not much but I know server stuffs

ashen kestrel
#

i see but need help.

vocal tendon
#

You can get error logs right?

ashen kestrel
#

no have logs error where.

#

and yes error have 500

#

how solution no idea

#

but there is:

vocal tendon
ashen kestrel
#

ok i see

#

there ccreate php.ini

#

Correct?

#

But idk

vocal tendon
#

I don’t think so how are you running your php

#

What web server

ashen kestrel
#

yeah but my little experience and i am no professional.

#

and there exactly web server

#

login and password mysql for unity

#

tutorial is old date.

#

problem nothing 2020

#

and no idea solution.

vocal tendon
#

Which tutorial did you use?

ashen kestrel
vocal tendon
#

How did you install your php?

ashen kestrel
#

actual.

#

why use have is "hostinger"

#

think

#

there is "Options -Indexes"

#

?

vocal tendon
#

ah okay you are hosting on them

ashen kestrel
#

yeah

#

is okay all

#

maybe is problem bad code php?

vocal tendon
#

Could be or could not be

#

here is for hostinger

ashen kestrel
#

AHH

#

there

#

moment

vocal tendon
#

Now POST request it again

#

You should get 500 again

ashen kestrel
#

yes work

vocal tendon
#

Then you can check the error_log

ashen kestrel
#

i see line 5 to 8 error

vocal tendon
#

can you paste the error?

ashen kestrel
#
[17-Aug-2022 06:41:03 UTC] PHP Notice:  Undefined index: Nickname in /home/u746990723/domains/benzitczostudio.com/public_html/noallowspytic/noallowspyfuck/CreatedUser.php on line 6
[17-Aug-2022 06:41:03 UTC] PHP Notice:  Undefined index: Password in /home/u746990723/domains/benzitczostudio.com/public_html/noallowspytic/noallowspyfuck/CreatedUser.php on line 7
[17-Aug-2022 06:41:03 UTC] PHP Notice:  Undefined index: Email in /home/u746990723/domains/benzitczostudio.com/public_html/noallowspytic/noallowspyfuck/CreatedUser.php on line 8
[17-Aug-2022 06:41:03 UTC] PHP Fatal error:  Uncaught PDOException: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'Username' in 'where clause' in /home/u746990723/domains/benzitczostudio.com/public_html/noallowspytic/noallowspyfuck/CreatedUser.php:12
Stack trace:
#0 /home/u746990723/domains/benzitczostudio.com/public_html/noallowspytic/noallowspyfuck/CreatedUser.php(12): PDO->query('SELECT User Fro...')
#1 {main}
  thrown in /home/u746990723/domains/benzitczostudio.com/public_html/noallowspytic/noallowspyfuck/CreatedUser.php on line 12```
vocal tendon
#

Is it same code as google drive? looks different

#

the createUser

ashen kestrel
#

and modify differents

vocal tendon
#

The log says CreatedUser

#

and parameters are different

#

Oh so the code is different okay

ashen kestrel
#

yeah

#

include "DBConnection.php";

$User = $_POST['User'];
$Nickname = $_POST['Nickname'];
$Password = hash("sha256", $_POST['Password']); //metodo hash el sha256 hash para encriptacion
$Email = $_POST['Email'];

//n la query cuando llame la tabla poner tambien la base de datos osea select userName from (game)doctores.usuarios ...
$sql = "SELECT User From Usuarios WHERE Username = '$User'";//leer de nuestra tabla usuarios donde Username(en formulario) se aigual a userName en bd
$result = $pdo->query($sql);

if($result->rowCount()>0)//comprobamos que si ya hay mas de 1 osea >0 entonces seria falso
{
  $data = array('done' => false, 'message' => "Error, nombre de usuario ya existe");
  Header('Content-Type: application/json');
  echo json_encode($data);//utilizamos echo de json para enviar los datos
  exit();//romper la ejecusion si es correcto
}

else{
    //comprobamos que el email no exista
  $sql = "SELECT Email From Usuarios WHERE Email = '$Email'";
  $result = $pdo->query($sql);

  if($result->rowCount()>0)//comprobamos que si ya hay mas de 1 osea >0 entonces falso.
  {
    $data = array('done' => false, 'message' => "Error, Email ya existe");
    Header('Content-Type: application/json');
    echo json_encode($data);
    exit();
  }

  else{
      //leemos  que lo insertado esta aprobado true osea no repetido en la tabla usuarios de bd
    $sql = "INSERT INTO Usuarios SET User = '$User, Nickname = '$Nickname, Password = '$Password, Email = '$Email'";
    $pdo->query($sql);
//en caso que sea true  enviaremos el mensaje
    $data = array('done' => true, 'message' => "Usuario nuevo creado");
    Header('Content-Type: application/json');
    echo json_encode($data);
    exit();
  }
}

?>
#

there

#

or no idea you? okay no problem other server help discord.

vocal tendon
#

So the error says there is no "User" "Nickname" "Password" "Email" in your POST body

ashen kestrel
#

yeah but wait think complicated.

vocal tendon
#

What is your URL? I can try post from my side..

ashen kestrel
#

ok

vocal tendon
#

Oh.. also your DB setup needs to be fixed

ashen kestrel
vocal tendon
#
Column not found: 1054 Unknown column 'Username' in 'where clause' in /home/u746990723/domains/benzitczostudio.com/public_html/noallowspytic/noallowspyfuck/CreatedUser.php:12
ashen kestrel
#

Ah

#

I see

#

wait fixed.

#

think is user

#

not username

#

solution fix 12 line

#

again error 5 to 8 same

vocal tendon
#

I can post if you send me url

ashen kestrel
#

and 38 error lol

vocal tendon
#

Okay how is the error?

#

I just posted

ashen kestrel
#

@vocal tendon yes

vocal tendon
#

okay still undefined index

ashen kestrel
#

yeah :/

#

problem ?

vocal tendon
#

Yeah.. I think I'm sending correctly but still gets undefined index

ashen kestrel
vocal tendon
#

Still same error? I posted just now

ashen kestrel
#

@vocal tendon

vocal tendon
ashen kestrel
#

i see

#

maybe error last 38

vocal tendon
#

I think Error line 38 is just happening because everything is empty

ashen kestrel
#
  thrown in /home/u746990723/domains/benzitczostudio.com/public_html/noallowspytic/noallowspyfuck/CreatedUser.php on line 38
[17-Aug-2022 06:53:15 UTC] PHP Fatal error:  Uncaught PDOException: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'hello, Password = '2597a7caf656e89e9ab35e12326d557ebfe9b7b5dcbe4c564e74070fa5...' at line 1 in /home/u746990723/domains/benzitczostudio.com/public_html/noallowspytic/noallowspyfuck/CreatedUser.php:38
Stack trace:
#0 /home/u746990723/domains/benzitczostudio.com/public_html/noallowspytic/noallowspyfuck/CreatedUser.php(38): PDO->query('INSERT INTO Usu...')
#1 {main}
  thrown in /home/u746990723/domains/benzitczostudio.com/public_html/noallowspytic/noallowspyfuck/CreatedUser.php on line 38
[17-Aug-2022 07:03:22 UTC] PHP Fatal error:  Uncaught PDOException: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ' Nickname, Password, Email = 'myusername, Nickname = 'hello, Password = '2597...' at line 1 in /home/u746990723/domains/benzitczostudio.com/public_html/noallowspytic/noallowspyfuck/CreatedUser.php:38
Stack trace:
#0 /home/u746990723/domains/benzitczostudio.com/public_html/noallowspytic/noallowspyfuck/CreatedUser.php(38): PDO->query('INSERT INTO Usu...')
#1 {main}
  thrown in /home/u746990723/domains/benzitczostudio.com/public_html/noallowspytic/noallowspyfuck/CreatedUser.php on line 38```
vocal tendon
#

Oh other errors are gone?

ashen kestrel
#

yeah

#

there last error 38

vocal tendon
#

Alright then almost there

#

and your SQL needs to get fixed

#
$sql = "INSERT INTO Usuarios SET User = '$User, Nickname = '$Nickname, Password = '$Password, Email = '$Email'";
ashen kestrel
#

@vocal tendon

vocal tendon
#

Do you see ' is missing after $User $Nickname $Password ?

ashen kestrel
#

Okay wait second

vocal tendon
#
$sql = "INSERT INTO Usuarios SET User = '$User', Nickname = '$Nickname', Password = '$Password', Email = '$Email'";
#

Should be fixed like this

ashen kestrel
#

OK wait

vocal tendon
#

Let me know when you're done so I'll POST again

ashen kestrel
#

there is maybe?

#

Ok done

vocal tendon
#

200!

ashen kestrel
#

what lol

#

ah is work

vocal tendon
#
{
"done": true,
"message": "Usuario nuevo creado"
}
ashen kestrel
#

Yes

#

finally

vocal tendon
#

It worked 🙂

#

200 means OK/Success in HTTP code

ashen kestrel
#

i see

vocal tendon
#

So your Unity should work now.

ashen kestrel
#

there is okay and maybe is last 38 error

ashen kestrel
vocal tendon
#

line 38 error is fixed with your code

ashen kestrel
#

Done unity

#

and waiting "loading"

#

no working maybe problem code webunityXD

#

And empty console 👀

vocal tendon
#

Now you can check error message

ashen kestrel
#

xd

vocal tendon
#

Does that mean no 500?

ashen kestrel
#

is okay work

#

and empty console

#

and loading waiting

#

maybe no working

vocal tendon
#

So it's not the web request the issue

ashen kestrel
ashen kestrel
vocal tendon
#

responseText will not start with "Success" that's the thing

#

so empty console

ashen kestrel
#

hmm yeah how :/

vocal tendon
#

So your HTTP is success

#

You need to see the code that calling Co_CreateUser now

ashen kestrel
#

Hmm

vocal tendon
#

There'd be reason that hangs on the loading 🙂

ashen kestrel
#

@vocal tendon Okay no problem

#

thanks help and tomorrow again ok

#

my sleep rest.

vocal tendon
#

Good night

ashen kestrel
#

@vocal tendon ah i see

#

there ..

#

already ID and pass

#

said processing...

#

no working problem.

#

example login -> profile

#

Okay

#

no problem ignore and solution idea

#

thanks gn

ashen kestrel
#

@vocal tendon back hello

#

and but ...

vocal tendon
#

Sup

ashen kestrel
#

problem werid enter link page and account register wtf but is problem no allow enter page register (only game not page)

#

example

#

but do not use or idk maybe problem.

#

and only is game

#

and said unity console : HTTP/1.1 404 Not Found

ashen kestrel
vocal tendon
#

404 not found means your address is wrong

ashen kestrel
#

problem no working hmm

vocal tendon
#

which of your url gives 404 not found?

ashen kestrel
#

yes there.

ashen kestrel
#

Ah

#

i see hmm

#

moment fixed.

vocal tendon
#

Fixed? nice

ashen kestrel
#

yeah fixed

#

@vocal tendon

#

and maybe wrong text bad

vocal tendon
#

Que bueno

ashen kestrel
#

but no working where example.

#

when register -> login

#

exist account

vocal tendon
#

So remove your if

ashen kestrel
#

where is oh is if (responseText.StartsWith("Success"))

#

?

vocal tendon
#

Yes responseText will not starts with "Success"

ashen kestrel
#

ah

#

Correct?

vocal tendon
#

Should be

ashen kestrel
#

@vocal tendon i see but error lol

#

Okay i see my idea.

vocal tendon
#

Now LoginUI is getting called

#

So it's problem inside of it

ashen kestrel
#

Yess i know

#

my remember minutes.

#

but my forgetl ol

#

is hard developer hehe.

#

Done solution

vocal tendon
#

I know it's not easy

ashen kestrel
#

and problem error werid:

vocal tendon
#

I think you need to do

using (var request = UnityWebRequest.Post(...))
#

See examples

ashen kestrel
#

Yeah look @vocal tendon

vocal tendon
#

Well is the request success?

ashen kestrel
#

and probably problem werid missing email

#

why said "Olivia12"

#

where is @gmail.com lol

#

No problem ask help php

#

how there think $Email = $_POST['Email'];

#

hmm

vocal tendon
#

Ooh. that is UrlEncode problem

#

@ is special character you need to escape it

ashen kestrel
#

ah hmm how is ..

#

okay copy code

#

okay maybe test?

vocal tendon
#

So basically UnityWebRequest.EscapeURL(email)

#

Put that into WWWForm

ashen kestrel
#

Ahh i see

#

noted.

ashen kestrel
ashen kestrel
#

UnityWebRequest.EscapeURL(email, wwform maybe?)

#

xd

#

sorry my bad.

vocal tendon
#

No replace it like Form.AddField("Email", UnityWebRequest.EscapeURL(email))

ashen kestrel
#

ahh

#

Done

vocal tendon
ashen kestrel
#

i see.

#

Test play?

vocal tendon
#

Yes

ashen kestrel
#

werid.

#

no work email

#

xd

vocal tendon
#

Did you change the register part too?

ashen kestrel
#

change already all

#

and missing email problem

#

xd

vocal tendon
#

Show me the code?

#

The Co_CreateUser

ashen kestrel
#

there co_createuser

vocal tendon
#

Hmm it should work

ashen kestrel
#

maybe php

vocal tendon
#

Mayybe

ashen kestrel
#

hmm

#

search google. or ask php server discord lol

vocal tendon
#

Yeah I think it should work

ashen kestrel
vocal tendon
#

Maybe your code is not saved? XD

ashen kestrel
#

No problem thanks help @vocal tendon

#

and waiting other help php

#

Done solution all good.

#

ok later wait

vocal tendon
#

They fixed it?

ashen kestrel
#

@vocal tendon Yes okay later

#

and but

#

problem why email no is password

#

confuse.

#

wait check.

#

Olivias12 why is password for email? wtf

#

confuse lol

#

@vocal tendon look

#

maybe is okay

#

probably php fix moment.

#

i see

vocal tendon
#

Oh you put it in the wrong order?

ashen kestrel
#

yes

vocal tendon
#

Yeah that will fix

ashen kestrel
#

yeah is okay all unity

#

and idk probably problem php

vocal tendon
#

Try request it again?

#

With your Unity

ashen kestrel
#

@vocal tendon look there have:

vocal tendon
#

Okay, but your parameter order was wrong

ashen kestrel
#

werid

ashen kestrel
vocal tendon
vocal tendon
#

Do you see it?

ashen kestrel
#

sigh is hard see lol

vocal tendon
#

see the parameter of CreateUser

ashen kestrel
#

NM.CreateUser(m_userNameInput.text, m_nickname.text, m_emailInput.text, m_password.text, delegate (Response response)

#

there?

vocal tendon
#

Yes

#

You putting email and then password

#

Order is wrong

ashen kestrel
#

how is order wrong.

#

maybe is NM.CreateUser(m_userNameInput.text, m_nickname.text, m_password.text, m_emailInput.text, delegate (Response response)

#

to correct?

vocal tendon
#

See Co_CreateUser parameter

#

Yes

ashen kestrel
#

ahh

#

i see

#

ahh

#

i see

vocal tendon
#

You were passing email as password

#

and vice versa

ashen kestrel
#

yeah

#

public void CreateUser(string User, string Nickname, string Email, string Password, Action<Response> response)

#

is correct?

#

good?

#

hmm

vocal tendon
#

I think order is wrong on that one too

#

Because it is different from Co_CreateUser

ashen kestrel
#

Yeah

#

done fix

#

test play

vocal tendon
#

Yes

ashen kestrel
#

@vocal tendon

#

work lol.

#

i see

#

remove espaceurl

#

is work @ maybe

#

Done solution @vocal tendon

#

thanks good

#

finishh

#

learn... much little hard

vocal tendon
#

Okay it works now

#

Good

ashen kestrel
#

yes

ashen kestrel
#

@vocal tendon okay good register

#

and problem login no working 500 error

#

D:

#
$result = $pdo ->query($sql);```
#
#1 {main}
  thrown in /home/u746990723/domains/benzitczostudio.com/public_html/noallowspytic/noallowspyfuck/checkUser.php on line 9
vocal tendon
#

You should quote them

#

Like ’$User’

ashen kestrel
#

@vocal tendon hmm

ashen kestrel
ashen kestrel
vocal tendon
ashen kestrel
#

and there user

vocal tendon
#

No your parameter needs to be quoted

ashen kestrel
#

and there $User = $_POST['User'];

#

?

vocal tendon
#

Because they are string

ashen kestrel
#

yes same string "User"

vocal tendon
#

‘$User’ not just $User

#

Other things too

#

Compare with create account php

ashen kestrel
#

?

#

sorry bad understand

#

xd

vocal tendon
#

Inside of your SELECT query

#

It’s not PHP it is SQL

ashen kestrel
#

there is create account

#

$sql = "SELECT User From users WHERE User = '$User'"

#

and login account

#

$sql = "SELECT User From users WHERE User =$User AND password =$Password ";

#

hmm i see

#

$sql = "SELECT User From users WHERE User = '$User AND password =$Password ' ";

#

probably?

vocal tendon
#

You forgot closing ‘

ashen kestrel
#

@vocal tendon yeah

vocal tendon
#

And password too

ashen kestrel
#

work lol.

vocal tendon
#

Quote $Password too lol

#

Yeah

ashen kestrel
#

Ah missing

#

$sql = "SELECT User From users WHERE User = '$User AND password = '$Password ' ";

#

exactly?

#

error 500 lol

#

what hmm

vocal tendon
#

You forgot closing ‘

#

End of ‘$User

ashen kestrel
#

ah

#

done

#

Work finally @vocal tendon

#

I see

#

but my bad stupid

vocal tendon
#

Good work

ashen kestrel
#

finally finish

#

and okay

#

thx sorry.

#

you cool help.

vocal tendon
#

Have fun with coding

ashen kestrel
ashen kestrel
#

but login web no working werid and there lol

#

oh maybe missing "name="password"" // also forget "select" lol

vocal tendon
#

Making website now?

ashen kestrel
#

wait problem no working.

#

$sql = "SELECT id, user, password FROM users WHERE user = ?,?,?";

#

there think

#

incorrect?

#
// Initialize the session
session_start();
 
// Check if the user is already logged in, if yes then redirect him to welcome page
if(isset($_SESSION["loggedin"]) && $_SESSION["loggedin"] === true){
    header("location: profile.php");
    exit;
}
 
// Include config file
require_once "config.php";
 
// Define variables and initialize with empty values
$username = $password = "";
$username_err = $password_err = $login_err = "";
 
// Processing form data when form is submitted
if($_SERVER["REQUEST_METHOD"] == "POST"){
 
    // Check if username is empty
    if(empty(trim($_POST["user"]))){
        $username_err = "Please enter username.";
    } else{
        $username = trim($_POST["user"]);
    }
    
    // Check if password is empty
    if(empty(trim($_POST["password"]))){
        $password_err = "Please enter your password.";
    } else{
        $password = trim($_POST["password"]);
    }
    
    // Validate credentials
    if(empty($username_err) && empty($password_err)){
        // Prepare a select statement
        $sql = "SELECT id, user, password FROM users WHERE user = ?,?,?";
        
        if($stmt = mysqli_prepare($link, $sql)){
            // Bind variables to the prepared statement as parameters
            mysqli_stmt_bind_param($stmt, "s", $param_username,);
            
            // Set parameters
            $param_username = $username;
            //$param_server = $server;
            
            // Attempt to execute the prepared statement
            if(mysqli_stmt_execute($stmt)){
                // Store result
                mysqli_stmt_store_result($stmt);
                
                // Check if username exists, if yes then verify password
                if(mysqli_stmt_num_rows($stmt) == 1){                    
                    // Bind result variables
                    mysqli_stmt_bind_result($stmt, $id, $username, $hashed_password);
                    if(mysqli_stmt_fetch($stmt)){
                        if(password_verify($password, $hashed_password)){
                            // Password is correct, so start a new session
                            session_start();
                            
                            // Store data in session variables
                            $_SESSION["loggedin"] = true;
                            $_SESSION["id"] = $id;
                            $_SESSION["user"] = $username; 
                            $_SESSION["password"] = $password; 
                            
                            // Redirect user to welcome page
                            header("location: profile.php");
                        } else{
                            // Password is not valid, display a generic error message
                            $login_err = "Invalid username or password.";
                        }
                    }
                } else{
                    // Username doesn't exist, display a generic error message
                    $login_err = "Invalid username or password.";
                }
            } else{
                echo " 3 Oops! Something went wrong. Please try again later.";
            }

            // Close statement
            mysqli_stmt_close($stmt);
        }
    }
    
    // Close connection
    mysqli_close($link);
}
?>```
#

error logs:

#

[18-Aug-2022 06:11:38 UTC] PHP Notice: Undefined index: password in /home/u746990723/domains/benzitczostudio.com/public_html/new/login/index.php on line 29

vocal tendon
#

no password in $_POST?

ashen kestrel
#

uhmm

vocal tendon
#

did you put name=password thing

ashen kestrel
vocal tendon
#

And you better hard reload your browser too

ashen kestrel
#

yes there name="password"

ashen kestrel
#

werid hm

vocal tendon
#

Empty cache too?

ashen kestrel
#

nah okay other broswer

#

moment

#

already no working lol.

#

ah found @vocal tendon error

#
[18-Aug-2022 06:27:02 UTC] PHP Warning:  mysqli_stmt_bind_param(): Number of variables doesn't match number of parameters in prepared statement in /home/u746990723/domains/benzitczostudio.com/public_html/new/login/index.php on line 42
[18-Aug-2022 06:27:15 UTC] PHP Warning:  mysqli_stmt_bind_param(): Number of variables doesn't match number of parameters in prepared statement in /home/u746990723/domains/benzitczostudio.com/public_html/new/login/index.php on line 42```
vocal tendon
#

well it’s different error

ashen kestrel
#

mysqli_stmt_bind_param($stmt, "s", $param_username);

#

think missing password?

ashen kestrel
vocal tendon
#

You have 3 parameters as I see

ashen kestrel
vocal tendon
#

I also think that SELECT sql is wrong, you can ask php people

ashen kestrel
#

xd

#

nothing help who lol

#

waiting reply mod

ashen kestrel
#

werid

#

there found is same code.

#

But probably problem "hash" password

#

success work

#

if (strtoupper(hash("SHA256", $password)) == strtoupper($hashed_password)) { <- solution

ashen kestrel
#

@vocal tendon other

#

found better auto login good done

#

and problem register no work "nickname"

#

lol.

#

there look is okay?

vocal tendon
#

Is your table/column/parameter names all correct

ashen kestrel
#

already.

#

and last problem register no work maybe script unity

#

when "nickname no coinicde" problem why already nickname button

#

no sent sumbit register.

#

@vocal tendon

#

maybe think problem "user" missing text?

vocal tendon
#

Well you need username and password with that php

ashen kestrel
#

Ah

#

but not is == ""

#

wrong maybe.

#

wait second idea

ashen kestrel
#

my idea there is Steam

#

ID steam + nickname

#

not password.

#

Or yes password (random)

#

think my idea.

ashen kestrel
#

is working success

#

and now remove pass and user + nickname test

#

@vocal tendon question how auto text TMP_InputField?

#

think same usertext.text = "nick"?

vocal tendon
#

Yes

ashen kestrel
#

ok

#

@vocal tendon and there is public void start correct?

#

auto text usertext.text = "nick"?

#

right?

#

ok done cool

#

@vocal tendon why problem no work nickname

ashen kestrel
#

is problem solution?

#

is work or bad incorrect?

#

why do not understand problem nickname