Jump to content
Froxlor Forum

JavaLink

Members
  • Posts

    7
  • Joined

  • Last visited

Posts posted by JavaLink

  1. OK thanks. installed.

    i have couple of another questions about froxlor:

    0 - Where is admin login page? after installation i got to first page for installation..

    1- What is difference between froxlor with DirectAdmin and Cpanel... i see that i install it without clean server. I mean why DirectAdmin need clean server to installing it.. but in froxlor i now just install it on my production server with previous site without any problem.

    2- Can froxlor damage another database or user's. i am now on a production server. for example delete my previous database .. or i dont know apache config or mysql or anythings.

     

    Thanks.

       
  2. On 9/2/2019 at 2:02 PM, d00p said:

    usually, froxlor uses the given root-user to create the unprivileged user and its database. My best guess is that there's some special character in the password that mysql/php-pdo somehow does not like. Could you try without any special characters to be sure?

    OK . you mean change password of myuser to simpler password?

  3. CCCC.png

    Hi

    I try install Froxlor several times bu every time i get error

     SQLSTATE[HY000] [1045] Access denied for user 'myuser'@'localhost' (using password: YES)

    I do these things for create use:

    CREATE USER 'myuser'@'localhost' IDENTIFIED BY 'pP123!@#Hello';

    then

    create database froxlor;

     

    and then

    GRANT ALL PRIVILEGES ON `froxlor` TO 'myuser'@'localhost';


     

    FLUSH PRIVILEGES;

     

    I check connection with a file called con.php contain this ---> and it's OK.

    <?php
    $servername = "localhost";
    $username = "myuser";
    $password = "pP123!@#Hello";
    
    // Create connection
    $conn = new mysqli($servername, $username, $password);
    
    // Check connection
    if ($conn->connect_error) {
        die("Connection failed: " . $conn->connect_error);
    }
    echo "Connected successfully";

     

    but after run froxlor to install it and fill all information, i get that error.

    Also i check again with server and find out that the `myuser` user is deleted...What happened? What Froxlor do?

×
×
  • Create New...