All posts by PF

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_nameValue
validate_password_check_user_nameOFF
validate_password_dictionary_file
validate_password_length8
validate_password_mixed_case_count1
validate_password_number_count1
validate_password_policyMEDIUM
validate_password_special_char_count1
SET GLOBAL validate_password_policy = 0;

FIGHT FOR THE FUTURE

Fight for the Future is dedicated to protecting and expanding the Internet’s transformative power in our lives by creating civic campaigns that are engaging for millions of people. Alongside internet users everywhere we beat back attempts to limit our basic rights and freedoms, and empower people to demand technology (and policy) that serves their interests. Activating the internet for the public good can only lead to a more vibrant and awesome world. More coming soon.

https://www.fightforthefuture.org

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/

TinyPic Has Ceased Operations

TinyPic Has Ceased Operations
Due to an inability to support a high-quality free digital service that derives 100% of its revenue from ever declining on-site revenues, TinyPic has shut down its operations. As previously announced on this website, September 16, 2019 was the last day for our users to access their accounts to download their images.

What Should You Do Now?
We recommend checking out our sister company, Photobucket, for image hosting. They are currently offering an unlimited image hosting and storage plan for $5 per month (regularly priced at $11.99 per month). We would like to personally thank you for choosing TinyPic as your hosting service. Many of you have been utilizing our services since we launched back in April 2004.

nginx – failed (13: Permission denied)

In a fresh CENTOS, while installing & testing nginx i’v faced the following error..

2019/10/10 17:54:11 [crit] 18960#0: *1 stat() "/home/www/html/index.php" failed (13: Permission denied), client: 94.61.69.69, server: 51.158.69.69, request: "GET /index.php HTTP/1.1", host: "51.158.69.69"

This is how I’v solved.

chcon -R -t httpd_sys_content_t /home/www/html/

More readings
https://stackoverflow.com/questions/22586166/why-does-nginx-return-a-403-even-though-all-permissions-are-set-properly#answer-26228135