skip to Main Content

I was facing this error after I installed xampp in my linux manjaro. Previously even with this error, first time I opened phpmyadmin and do some query it is doing fine. But somehow the phpmyadmin show blank white screen. How do I fix it?
my error

UPDATE:
The blank screen is no more, but the warning code is still present. The warning code did nothing to my productivity. But still, it is a bit bothering me

3

Answers


  1. I had a similar problem with phpMyAdmin and I resolved doing:

    [1] sudo nvim /opt/lampp/phpmyadmin/config.inc.php and changing this line:

    // instead of localhost
    $cfg['Servers'][$i]['host'] = '127.0.0.1'; 
    

    [2] Changing in my browser the URL from localhost/phpmyadmin to 127.0.0.1/phpmyadmin

    This worked for me, hope to help someone.

    Login or Signup to reply.
  2. I solved this problem simply by removing the log_success_msg function call in /opt/lampp/bin/mysql.server at line 261, not the most elegant solution, but simple. It is worth noting that this edit does not affect the functionality.

    wait_for_ready () {
          i=0
          while test $i -ne $service_startup_timeout ; do
        
            if $bindir/mysqladmin ping >/dev/null 2>&1; then
              log_success_msg // ***Delete this function call***
              return 0
            elif kill -0 $! ; then
              :  # mysqld_safe is still running
            else
              # mysqld_safe is no longer running, abort the wait loop
              break
            fi
        
            echo $echo_n ".$echo_c"
            i=`expr $i + 1`
            sleep 1
        
          done
        
          log_failure_msg
    
      return 1
    }
    #
    
    Login or Signup to reply.
  3. You have to install the LBS module, since the script uses it to display messages, as mentioned in the documentation of /opt/lamp/bin/mysql.server line 93

    # Use LSB init script functions for printing
    # messages, if possible
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search