Posts by Felipe Kusk • 41 points
5 posts
-
0
votes0
answers27
viewsQ: Meta tag, Open Graph script generated
Next the metatag works normal when added in the . html, but when using the same metatag in the angular Meta is not recognized. someone has already gone through this trouble to give a helping hand?…
angularasked Felipe Kusk 41 -
0
votes0
answers141
viewsQ: Special characters difference XAMPP and NGINX
Well I am migrating a system that is running in the xampp to the Nginx, only that the special characters in xampp works normal, but in error Nginx, some hint to solve this problem, the php of xampp…
-
0
votes1
answer85
viewsA: Create directory (mkdir) with PHP 7.3 in Centos 7
I solved it this way: // create folder $dir = '/usr/local/openresty/nginx/html/nome_da_pasta'; mkdir($dir, 0777, true); // error log if (!@mkdir($dir)) { $error = error_get_last(); echo…
phpanswered Felipe Kusk 41 -
1
votes1
answer85
viewsQ: Create directory (mkdir) with PHP 7.3 in Centos 7
The shell command works normal via SSH, but PHP does not execute: $cmd = '/bin/bash /usr/local/nginx/html/pHpServer-PG/api/dir.bash'; echo $cmd; shell_exec($cmd); BASH: #!/bin/bash /usr/bin/sudo…
phpasked Felipe Kusk 41 -
2
votes1
answer121
viewsQ: Regex to get comments from a CSS
I have this CSS: :root{ --bodyBackgroundColor: #ffffff; // pegar o comentário não importando o tamanho --bodyTextColor: #ffffff; // outro --buttonBorderFocus: #1d2124; // testando } Response…