Posts by RodolfoSilva • 141 points
7 posts
-
0
votes1
answer523
viewsA: Problem with Splashscreen on IONIC
Solution given by a member of the Ionic Brasil group Evandro Oliveira in the facebook The splashscreen appearing black is a bug in this latest version of Cordova 6... had it... runs the following…
-
1
votes2
answers381
viewsA: File permission on Linux
Uses the command ls -lah She’ll show you the file permissions. See this link: https://www.vivaolinux.com.br/dica/Entendendo-as-permissoes-de-arquivos-no-Linux I believe the standard is 644...…
-
0
votes1
answer523
viewsQ: Problem with Splashscreen on IONIC
someone already had some error similar to this of the image when trying to give Build in the application? I thought it was the Spalshscreen plugin that gets installed automatically... I upgraded…
-
0
votes2
answers1762
viewsA: How to create a responsive pricing chart?
You can update the table width property to 100% where depending on the screen it would fit. And to avoid that by greatly reducing the screen the table gets very strange you can set a minimum size…
-
1
votes1
answer165
viewsA: Check if the option to clear the cache is active when closing the browser
To solve cache problems in files, I usually add an application version number with a query at the beginning as if it were a querystring type: <script src="meuscript.js?v=131"></script>…
-
1
votes2
answers117
viewsA: How to solve character problems in php require?
There may be a CSS error as well... These blank lines do not influence much to cause the next element to be pushed down. If possible post the code snippet where the <?php require("funcoes.php");…
phpanswered RodolfoSilva 141 -
1
votes4
answers2195
viewsA: Fetch date 7 days before current php date
You can solve it this way too: <?php $data_actula = date("Y-m-d"); $danta_anterior = date("Y-m-d", strtotime($data_actula) - (7 * 24 * 60 * 60)); See running here: http://3v4l.org/0CVHY…
phpanswered RodolfoSilva 141