Posts by Kaue Alves • 303 points
26 posts
-
1
votes2
answers1943
viewsQ: Problems accessing the application from the browser
I want to be able to access/view my applications through the browser using Docker. I installed Docker for Windows, did not make any additional configuration, and created the files below, along with…
-
0
votes1
answer193
viewsQ: C++ Compiling/Including all files . cpp from the subdirectories of the /src folder
I use Visual Studio Code + Mingw. My project is the https://github.com/KaueAlves/Grimorie-Tabuleiro As some IDES link between classes automatically, when using VSCODE I came across the need to pass…
-
0
votes1
answer376
viewsQ: C++ - Read the name of a directory’s files
I am making a program to read all files from a folder, and clear the name of them ( take any accent ). I wonder if there is a standard library to work with directories(Read). I am using Windows 10,…
c++11asked Kaue Alves 303 -
2
votes1
answer64
viewsQ: How to assemble a collection of derived objects, and use specific functions of each?
I want to create a dynamic list that contains all Component derived objects. I’m trying to do it this way: map<string, Componente> tabuleiro_componentes;…
-
0
votes0
answers87
viewsQ: Include of file . h is not enough to create a class instantiation
I created a class called Board, make the prototypes in the file Tray. h and keep the code on Board.cpp, during the study I saw that just adding the Tray. h at the index.cpp would already be possible…
c++asked Kaue Alves 303 -
2
votes0
answers71
viewsQ: Refresh a page based on chat information
I have 2 sites, the first one is www.chat.com.br and the second is www.view.com.br. My goal is: 1 - Collect chat alerts 2 - Update the site view constantememte with the alerts collected from the…
-
0
votes1
answer122
viewsQ: Magic Constants Returning Null or Halfway
Work on a Wordpress site using: PHP 7.0 and Microsoft-IIS/10.0. The site is up and running, but occasionally errors appear in the log, usually errors related to Constants __DIR__ and __FILE__…
-
0
votes1
answer20
viewsQ: Error when setting constants
PHP Warning: include_once(): Failed opening '/classes/class.rslib.php' for inclusion (include_path='.;C:\php\pear\') in on line 26 I logged this error in the log, I debugged and found the only file…
-
0
votes1
answer74
viewsQ: Import featured images without having to download them. - WORDPRESS
I’m working on a website that has news since 2001. I would like to export only your ( posts + featured images) from 2015 backwards, but I don’t need to download the images so I imagine everything is…
-
0
votes2
answers51
viewsQ: Perform multiple functions when the page loads
I’m doing some Javascript studies and would like to know how to make my browser create a window, and perform a number of functions as soon as it is fully charged. I’m running all the codes through…
javascriptasked Kaue Alves 303 -
0
votes0
answers306
viewsQ: Browser Console - JS - Running a JS function after the page loads completely.
I am doing Javascript tests using my browser and would like to do the following steps: Create an array containing 3 tabs janelas = Array(); janelas.push(window.open(link_site1));…
-
0
votes2
answers68
viewsQ: PHP - How to add content to the log?
The log points error of undefined variables and functions. But it is not constant (error/s). These variables are defined through POST, so if a GET is made the error is generated. Analyzing the file…
phpasked Kaue Alves 303 -
1
votes0
answers45
viewsQ: How to write in the log every time an error is generated?
Sirs, 1 - I would like to know what are the methods for analyzing and handling errors for websites with great traffic. I am working with a site that is in wordpress, and I have come across some…
-
1
votes0
answers132
viewsQ: Wordpress - Lock Wait timeout exceeded - wp_cron
Sirs, I am facing the following log, but I don’t have enough knowledge to fully understand it. How can I solve such a problem ? It has been happening constantly, but do not know how it is generated,…
-
2
votes1
answer52
viewsQ: Microsoft Azure - php
How to make Microsoft Azure capture my errors? I am currently dealing with errors with this function: <?php /** Plugin Name: TESTE Description: testando log novo Version: 1.0 Author: Vteste…
-
0
votes0
answers37
viewsQ: Error Handling - Wordpress
How do I make so that every time an error occurs on my site, I can write in the log the way I set ? I am working with wordpress so I am trying to make a plugin that does this, I tried to use the…
-
5
votes1
answer92
viewsQ: Configure log of errors
I’m working with PHP and I’m in the support part, but I’m not really familiar with the bug system. Is there any material I can read to help me? My biggest problem is the following, many errors are…
-
1
votes2
answers90
viewsQ: Jquery - Is there a way to connect buttons?
I am beginner in programming I am working with wordpress. On the site I’m helping I have a Slider Revolution with 4 balloons that will serve as buttons. And in the body of the site I have a…
-
1
votes0
answers36
viewsQ: Only on my hosting - session_start(): Cannot send Session cache Limiter
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/grupoemais/public_html/cameder.com.br/consulta/index.php:1) in…
-
0
votes1
answer198
viewsQ: How to prevent a link redirect and still change the url?
I have a side menu with several links, I am using ajax so that when someone clicks on one of the links the central content of the page is modified. How would you do this operation ?? I’m currently…
-
1
votes2
answers1539
viewsQ: How to add Jquery to a wordpress page?
$(document).ready(function(){ $('.data-encerramento').each(function (){ var $this = $(this); var timestamp = $this.html(); var a = new Date( timestamp * 1000); var months =…
-
0
votes0
answers32
viewsQ: How to put the value of a field acquired with jquery in php?
I want to do a try check as parameter the date of a datepicker and the id of an item. <script> $('.menu-item').click(function() { var item = $(this).attr('value'); alert(item); });…
-
1
votes2
answers454
viewsQ: Is there a way to know which file a piece of html is in?
I am working on a website that all functions have been divided into several folders and subfolders. (I suspect this is the most common) I wonder if there is an effective way to identify in which .…
-
0
votes2
answers887
viewsQ: How to send a full PHP page by email ?
I’m having trouble sending an email template. I have the following page : <?php session_start(); ?> Contact - Piscouachou Email sent successfully ! <section id="conteudo"> <p>…
-
0
votes1
answer528
viewsQ: Google Maps Geolocation API
I’m willing to check the status my client is in to show the nearby establishments in that region. How do I get this information through Google Maps Geolocation API? There’s another better way? The…
-
0
votes1
answer20
viewsQ: Wordpress - Backup/clone help
I’ve been doing a job that the customer has required their site to stay online and the same way until all the changes are made. How can I do that ?? Would I have to use another domain?? I would like…