Entendendo a Política de Seguraça de Certificados O que são os certificados exigidos pelos browsers? Eles garantem a identidade e procedência de um site, sendo utilizados na segurança de dados, de modo que os mesmos não fiquem expostos enquanto navegam na Internet. Por isso a importância de que sejam certificados e validados por alguma entidade … Read More “SEGURANÇA: ACESSANDO SITES COM CERTIFICADOS NÃO VÁLIDOS” »
DEPLOY REQUIREMENTS AND ISSUES Be sure of something: if you have different environments, the same code that runs successfully were was born in, may fail on a new environment due many causes, like version differences and other system’s idiosyncrasies . So, rule of thumb: always assume that a deploy on a new environment requires full … Read More “DEPLOY: NOTES” »
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 branch. After updating or merging your local stuff, check the .gitignore content. … Read More “GIT: RESOLVING .GITIGNORE ISSUE IN A MESSY PROJECT” »