Posts by Rafael Dias Zendron • 67 points
11 posts
-
0
votes1
answer71
viewsQ: Counting the quantity of products
Is there any query that returns the quantity of products example I have 10 cell phones, 5 brand a and 5 brand b. This way and not the total count, if yes how to do? Counting them by id.
sqlasked Rafael Dias Zendron 67 -
0
votes0
answers28
viewsQ: I can’t reinstall wordpress
I have a server vhost Nginx called site-responsive.test follows below the configuration server { listen 80; server_name site-responsivo.test; root…
-
0
votes1
answer1584
viewsA: Fontawesome does not carry correctamete carries squares
managed to solve the problem by correctly changing the $fa-font-path previously so: $fa-font-path: "./bower_components/fontawesome/web-fonts-with-css/webfonts" !default; now thus: $fa-font-path:…
-
0
votes1
answer1584
viewsQ: Fontawesome does not carry correctamete carries squares
After performing the settings and installing the font-awesome with the Bower and call you through my file Sass through a name file Sass plugin. The same is not run only appear a few squares. Before…
-
-4
votes1
answer37
viewsQ: Help with installing php 7.0 in Ubuntu as per video tutorial
Following this tutorial video https://www.youtube.com/watch?v=onVSVC_C1GE&t=717s. Already at the beginning of the default change, made the default changes, the default Nginx index should be…
-
1
votes1
answer968
viewsA: Uncaught Typeerror: Cannot set Property 'innerHTML' of null
Actually in my code the original #messageView was being called as . messageView so it didn’t work <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta…
javascriptanswered Rafael Dias Zendron 67 -
2
votes1
answer968
viewsQ: Uncaught Typeerror: Cannot set Property 'innerHTML' of null
The code snippet below is giving error because _element is returning null some idea of how to solve? class View { constructor(seletor) { this._elemento = document.querySelector(seletor); }…
javascriptasked Rafael Dias Zendron 67 -
1
votes1
answer139
viewsA: how to resolve the problem Task 'scripts' is not in your gulpfile
I realized the error in my own code is on a call from the watch // task para watch gulp.task('watch', function(){ gulp.watch('sass//.sass', ['sass']); gulp.watch('scripts//.js', ['scripts']); }); I…
gulpfileanswered Rafael Dias Zendron 67 -
1
votes1
answer139
viewsQ: how to resolve the problem Task 'scripts' is not in your gulpfile
this is my gulpfile: var gulp = require('gulp'); var sass = require('gulp-sass'); var watch = require('gulp-watch'); var babel = require('gulp-babel'); var minify = require('gulp-minify'); // task…
gulpfileasked Rafael Dias Zendron 67 -
0
votes1
answer72
viewsQ: plan selector showing value at other imput
//função exibe data de hoje no campo cancelamento var dia, mes,ano; function Data(){ data = new Date(); dia = data.getDate(); mes = data.getMonth()+1; ano = data.getFullYear(); if (dia <10){ dia…
-
1
votes1
answer213
viewsQ: Function calculates date and returns invalid date
I have the following code: //função exibe data de hoje no campo cancelamento function Data(){ data = new Date(); dia = data.getDate(); mes = data.getMonth()+1; ano = data.getFullYear(); if (dia…