Posts by MCunha98 • 113 points
11 posts
-
0
votes0
answers66
viewsQ: GIT with local network server as repository
Hello, I have a situation particularly similar to this one Configuring git for local network And at the same time, I think this one would also be a strong candidate for my scenario How to create a…
-
-1
votes1
answer138
viewsA: Upgrading MYSQL to MYSQLI
Try to use the connection to perform the processes, IE, store it in a variable to then have execution management... mysqli_report(MYSQLI_REPORT_STRICT); try { self::$connection = new…
-
1
votes1
answer32
viewsQ: Makefile linux - is it possible to restrict the compilation per machine?
Hello I have the following scenario, several machines shared in network, and with directories visible to each other. A developer called the program build on machine 1, but the program only compiles…
-
-4
votes4
answers142
viewsA: Does calling dozens of classes in a system noticeably influence the performance of the application?
Just to reinforce, a very important context for OOP is to use Estatic classes when your goal is to limit the functionality of an object (thus not getting a lot of generic functions in the code),…
-
-1
votes1
answer49
viewsQ: Access google Analytics via PHP API [Impossible ? ]
Hello, I’m trying to two days to find a way to connect the google api Analytics via PHP (I will use in CLI mode) to get data from a certain view. The problem is that the api is EXTREMELY CONFUSING…
-
0
votes1
answer69
viewsA: Do not download when exporting to Xls using PHP
I believe the error is in the content direction, if you try to change to simply generate the file without touching the page header, and also adding the relative path should solve. Note that in your…
-
0
votes1
answer50
viewsA: How to send a parameter through an iframe to a page on another server?
Probably you will need synchronous responses, so it is best to make the conversation between the two applications through a protocol (ajax preference) with typed return (for example json). Because…
-
1
votes2
answers1276
viewsA: Integration boleto Itau Shopline in PHP
Good morning, Just to contribute to other people going through the same situation I’ve been through, the problem actually is that the damn documentation tells the client that he must generate the…
-
6
votes2
answers5738
viewsA: What is PHP Injection? How does it differ from SQL Injection? And how do you avoid it?
Just to contribute to the discussion and given that I went through this bad experience on a site I administer I will detail the incident. On this site the user is allowed to send ZIP files and…
-
1
votes2
answers144
viewsQ: Reuse AJAX calls with jQuery
Hello It is very common to see on the internet calls ajax blocks that always repeat exhaustively the same structure, I would like to improve my calls using parameterization patterns and save code of…
-
2
votes1
answer141
viewsQ: Deploying with SVN
I need to configure my environment to do PHP code versioning, but I’m having doubts about 'where to start'. The repository on the Linux/Apache server is created and I already installed Tortoise on…