Posts by Luiz Felipe Weber • 149 points
6 posts
-
2
votes2
answers78
viewsA: Change date language captured in RSS
Hi @Felipe-Stoker. Try to use the function strftime() instead of date(). Also, before the main execution, add the php locale functions to our region ( setlocale ). Your code would look like this:…
-
1
votes0
answers235
viewsQ: What is the best way to work with continuous integration without using Docker?
I have an e-commerce application in php that has more than 30k files. I am implementing the continuous integration process with Jenkins + SVN + Automated testing ( build and deploy ). But the…
-
8
votes2
answers635
viewsA: How to know the key of the 3 greatest results array?
Quite simple, you can only use native PHP functions for this. 1 - The function arsort to sort by the highest value, keeping the keys in the same state they were. 2 - Then you can use the function…
-
0
votes1
answer69
viewsA: Joomla site error: 0 Invalid controller: name='', format='' joomla Administrator
@user40862, according to the link to the official Joomla forum, it seems to me that it has not included the tag of the archive of controller in the configuration xml of the component:…
-
0
votes1
answer84
viewsA: How to use a Joomla component with git
William, it really is necessary to do the versioning within the structure of Joomla? In this case, most developers ( including me ), publish the source code of the installable package in the SVN or…
-
0
votes1
answer56
viewsA: Joomla with security problems in the GSC
Miguel, if we have already checked all the files of the site, searching for malicious scripts, then we should look for other alternatives: Indexing check By a quick search here, according to the…