Jump to content

kirasama

Members
  • Posts

    4
  • Joined

  • Last visited

Posts posted by kirasama

  1. sorry i think i'am the only one who use this variable :3

    i'am making an program in C# which using MySql Connection to test accounts system in database

    like create accounts , login , Get Profile

    all working successfully without any security gaps

    but i think if me changed this variable to 0 that's will make it more strong

    like multiple people are creating an account in the same time

    anyway that's only test and i ask if me can change the variable only because that's will make it best

    but if you won't i will complete my accounts system journey in C# to know what's the best

    so no problem if you say no , that's my reason and sure 4 is Great enough but for an php [/size]developer as you say not C Progammer ^^

     

     

    I Have found an EPIC SOLUTION!!!

    Just using WebRequest and WebResponse and try to link it to the database using PHP

     

    Hope that will help all programmers like me xD

  2. I'am sorry if me post it in the wrong place

    My cPanel username: dw

    My Main Doamin: dw.heliohost.org

    The Server: johnny.heliohost.org:2083

     

     

    Hello i have found an solution but its not completly helpful

    the problem Simply because using my domain as the server

    //Server

    server = "dw.heliohost.org";

    database = "dw_users";

    uid = "dw";

    password = "<removed>";

     

    string connstring;

    connstring = $"Server={server}; Database={database};User Id ={uid}; Password={password};";

     

    conn = new MySqlConnection(connstring);

    but i change the server to johnny.heliohost.org like that

     

    //Server

    server = "johnny.heliohost.org";

    database = "db_name";

    uid = "dw";

    password = "pass";

     

    string connstring;

    connstring = $"Server={server}; Database={database};User Id ={uid}; Password={password};";

     

    conn = new MySqlConnection(connstring);

     

    and it's working successfully but with a two of connections

  3. How to increase mysql max user connections

     

    Hello i have an test program which used mysql connection string using remote mysql

    the program working successfully but when i give it to my friend while me opened the program or connect to the server using MySQLConnector

    it says Error to connect because user {name} already has more than 'max_user_connections' active connections.

    so i want to learn how to increase the size of it or how to fix it

    and i cannot use database users i have created so i using the default user

    it's the problem because that?

    if that true so how can i use the database users i have created because everytime i entered the password it says the password is wrong to connect to this database user!!

×
×
  • Create New...