WI-FI REPEATER – BASIC SETUP REPETIDOR WI-FI – CONFIGURAÇÃO BÁSICA REPETIDOR WI-FI – configuración básica TIP: if you have already performed a previous configuration, then you need to reset the repeater. There is a button for that. DICA: se já fez uma configuração e não deu certo, pra refazer é necessário antes resetar. Procura um botão … Read More “WI-FI: REPEATERS/REPETIDORES” »
#Notice: Undefined index: media_folder in PLUGIN: Enhanced Media Library PROBLEM: Notice: Undefined index: media_folder in /home/itstuff/public_html/wp-content/plugins/enhanced-media-library/enhanced-media-library.php on line 523 Notice: Undefined index: media_folder in /home/itstuff/public_html/wp-content/plugins/enhanced-media-library/enhanced-media-library.php on line 527 SOLUTION: Go to Settings, Media Settings and check the box “Folder”, as shown in the figure below: ENV: debian 7 php 5 September 10th, 2018
You’re gonna get an email in the same email box of the email that you supplied to be registered on the site. If you get more than two emails, use the most recent one. In the email, you get your login in the “Username”. Click on the email’s link to be redirected to … Read More “WORDPRESS: HOW TO RESET YOUR PASSWORD IN A WORDPRESS SITE” »
Você receberá um email na mesma caixa postal do email você ofereceu para fazer seu login no site. Caso receba mais de um email, utilizar o email de “reset” mais recente. No email, você encontra o seu login em “Username”. Clique no link do email, para ser redirecionado à página onde efeturá … Read More “WORDPRESS: COMO REINICIAR UMA SENHA NUM SITE WORDPRESS (PASSWORD RESET)” »
# THINGS TO REMEMBER WHEN YOU’RE IN MYSTERIOUS ISSUES #PASSWORD AND SPECIAL CHARS Suppose the following scenarios: Oracle rejects your password. ssmt command rejects connection to the email server Check if the password has special characters. For instance, oracle’s login fails if the password has ‘@’ char. If running ssmt, like this: echo “Subject: hello” … Read More “IT: TIPS – CHECKLIST FOR MYSERIOUS ISSUES” »
Basic concepts: -key-value store -NoSql -Values with expiration/ good for security Commands (=> indicates the return expected) SET server:name “fido” – store based into a key SETNX – store if not exists values EXPIRE resource:lock 120 – set a value to exists only for some defined time TTL resource:lock 113 – gets the last duration … Read More “NOSQL: REDIS – ANOTATIONS” »
#PRE-REQUISITES Make sure that your local repository is committed or stashed. If not, Git will complain, since it is basic versioning procedure. ALTERNATIVE#1 Suppose that your current branch is “feature/branch1”. Do: git commit -am “before merging” or if already committed you may mark this operation using: git commit –allow-empty -am”before merging operation with develop branch” … Read More “GIT: MERGE ALTERNATIVES FOR MANY CONFLICTS” »
PROBLEM There many different .gitignore files into your project. The “.gitignore” seams not working at all. Your pull like commands comes with “ignored files”. SOLUTION Create a .gitignore pattern. Fix your repository’s .gitignore file into master, at least. Same to develop or another very used branch. After updating or merging your local stuff, check the … Read More “GIT: RESOLVING .GITIGNORE ISSUE IN A MESSY PROJECT” »
>PROBLEM When running “mvn clean install” you get: Fatal error compiling: invalid target release: >SOLUTION Set JAVA_HOME envvar or include it into the script which runs maven. export JAVA_HOME=”/home/portables_d/jdk1.8.0_144″ >ENV linux/debian
PROBLEM Maven fails to load spring references Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6 Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6 Failure to transfer org.apache.maven.plugins:maven-resources-plugin:pom:2.6 from http://maven.repository.redhat.com/ga/ … Read More “MAVEN: FAILS TO LOAD SPRING REFERENCES” »