Monthly Archives: November 2019
google captcha – no curl_exec
$response = file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=".$secret."&response=".$response); $response = json_decode($response, true); if($response["success"] === true){ // actions if successful }else{ // actions if failed }
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;
savefrom.net
donwload or save media from the net?
savefrom.net
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
PDF – NGINX for Commercial Quality Streaming Services
Agenda
https://www.nginx.com/wp-content/uploads/2018/12/NGINX-Conf-2018-slides_Choi-streaming.pdf
– Introduction to streaming
– Turn NGINX into a streaming server
– HLS/DASH VOD by NGINX – How?
– Supporting HLS 7
– Encrypting HLS
– High-bitrate streaming (4K/8K UHD) by NGINX
– Low-latency live by NGINX
FINN – ‘Sometimes The Going Gets A Little Tough’
As heard on Househead Samira – HOUSEHEAD SAMIRA on RADAR RADIO [17/01/2018] (25min)
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/