This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Don't show errors which contain full path diclosure (FPD) | |
| # Use that line only if PHP is installed as a module and not per CGI | |
| # try using a php.ini in that case. | |
| # Change mod_php5.c to mod_php7.c if you are running PHP7 | |
| <IfModule mod_php5.c> | |
| php_flag display_errors Off | |
| </IfModule> | |
| # Protect XMLRPC (needed for Apps, Offline-Blogging-Tools, Pingback, etc.) | |
| # If you use that, these tools will not work anymore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| var preTags = document.getElementsByTagName('pre'); | |
| var preWithHeaderInfo = preTags[0]; | |
| var preWithContent = preTags[2]; | |
| var lines = preWithContent.textContent.split('\n'); | |
| // get data about the formatting (changes between different versions of chrome) | |
| var rgx = /^(0{8}:\s+)([0-9a-f]{2}\s+)[0-9a-f]{2}/m; | |
| var match = rgx.exec(lines[0]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo dseditgroup -o edit -a 'soyunusuario' -t user soyungrupoexistente |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Cambiar contraseña VPS OVH | |
| 1.- Entrar en modo rescate (reniciando vps) | |
| 2.- Buscar los accesos temporales en el correo, por si no te deja entrar al vps:: ssh-keygen -R ip-vps | |
| 3.- Comprobar el disco donde esta montado el vps : | |
| # fdisk -l | |
| El dispositivo seguido del * es el disco booteable (la partición del vps principal) | |
| (http://docs.ovh.ca/en/guides-ovh-rescue.html#mounting-disk-s ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| php -i | grep "Loaded Configuration File" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Dirigirse a /etc/postfix/ | |
| y editar: | |
| vi /etc/postfix/main.cf | |
| buscar esta linea | |
| mydestination = tudominio.com, localhost, localhost.localdomain | |
| y borrar tudominio.com, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <set xmlns:android="http://schemas.android.com/apk/res/android"> | |
| <rotate | |
| android:duration="70" | |
| android:fromDegrees="-5" | |
| android:pivotX="50%" | |
| android:pivotY="50%" | |
| android:repeatCount="5" | |
| android:repeatMode="reverse" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Solución: | |
| export PATH="~/.composer/vendor/bin:$PATH" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| edit ~/.bash_profile | |
| add laravel via composer example | |
| export PATH="$PATH:~/.composer/vendor/bin" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| UPDATE mysql.user SET authentication_string = PASSWORD('123') WHERE User = 'root' AND Host = 'localhost'; |
OlderNewer