yum install php-zip
service php-fpm restart
Tag Archives: phpmyadmin
phpmyadmin – Your password does not satisfy the current policy requirements
mysqli_query(): (HY000/1819): Your password does not satisfy the current policy requirements
I generally use the PHPMyAdmin to generate the passwords,
what I’v done in this case, but I got the following error….
SHOW VARIABLES LIKE 'validate_password%';
Variable_name | Value | |
---|---|---|
validate_password_check_user_name | OFF | |
validate_password_dictionary_file | ||
validate_password_length | 8 | |
validate_password_mixed_case_count | 1 | |
validate_password_number_count | 1 | |
validate_password_policy | MEDIUM | |
validate_password_special_char_count | 1 |
SET GLOBAL validate_password_policy = 0;
phpMyAdmin – session_start(): open(SESSION_FILE, O_RDWR) failed: Permission denied (13)
phpMyAdmin – Error
Error during session start; please check your PHP and/or webserver log file and configure your PHP installation properly. Also ensure that cookies are enabled in your browser.
session_start(): open(SESSION_FILE, O_RDWR) failed: Permission denied (13)
Try to chown /var/lib/php/session/ with the user who is running httpd.
In my case it was nginx.
chown nginx: /var/lib/php/session/
How to unhide a hidden table in PHPMyAdmin?!
Well…
I went to pma__navigationhiding table on phpmyadmin database and delete the proper entry…
phpMyAdmin 2.5.4 – a blast from the past
phpMyAdmin – Error You should upgrade to MySQL 5.5.0 or later
This is the second time that I get this error phpMyAdmin – Error You should upgrade to MySQL 5.5.0 or later.
We need to comment the following lines in libraries/common.inc.php.
#if (PMA_MYSQL_INT_VERSION < 50500) {
# PMA_fatalError(
# __('You should upgrade to %s %s or later.'),
# array('MySQL', '5.5.0')
# );
#}