Posts by spacedogcs • 290 points
10 posts
-
0
votes1
answer17
viewsA: Mail Server on Google Compute Engine
I found that Google blocks any smtp output and it requires you to use an external tool like the Mailgun or Sendgrid I opted for Mailgun to have a plan with minimum value lower than sendgrid Even…
google-cloudanswered spacedogcs 290 -
2
votes1
answer25
viewsA: Divs open everything together, how to solve
You can do this with the next jquery $(document).ready(function(){ $('.item').click(function(){ var $opcoes = $(this).next('.opcoes'); if($opcoes.hasClass('display_off')){…
-
1
votes2
answers148
viewsA: Automatic resizing of div according to window width
You can solve this problem with flexbox a good site to study flexbox in practice is this one you can see in practice the effect of property face .wrapper{ height: 100vh; display:flex; } .menu{…
-
0
votes1
answer17
viewsQ: Mail Server on Google Compute Engine
I’m trying to set up a web server in google cloud, so far I’ve managed to set up apache and database, but the web server part is really complicated I’ve seen dozens of tutorials on how to set up a…
google-cloudasked spacedogcs 290 -
1
votes1
answer115
viewsA: upload multiple images with jqueryform and ajax
The function pathinfo returns the extension without the ., in its variable $allowedExts you specify the extensions with the ., so he’s not passing his test in_array($ext, $allowedExts), remove the…
-
2
votes1
answer76
viewsQ: Page loads normally but with 404 status
Has anyone ever seen anything like? http://engenhariamrc.com.br/admin It’s an Laravel 5.7 project hosted on the king host, the site is running normally on the local server, but on the web server it…
-
0
votes1
answer480
viewsQ: Laravel - Website Authentication and API
I am developing a Chat where it can be accessed both by the web and by an application, so I have done a project in Laravel with an api, both the site and the application will be fed through the api…
-
4
votes1
answer145
viewsQ: Should I feed my website through the API or not?
If I am developing a site that has an integrated API, for example Laravel, I own a site and an API in the same project What is the best way to feed the site? I must create a controller which will…
-
1
votes1
answer261
viewsQ: PHP 7 Syntax error, question mark before specifying the parameter
I developed a website on Laravel using the version PHP 7.2, when I climbed to the server (that is using version 7.0 of PHP) I noticed that I was giving a syntax error in the following line public…
-
1
votes1
answer3766
viewsA: Checkbox alignment
To make a checkbox with a phrase, put a label around each checkbox, so by clicking on the phrase it also clicks on the input: <label> Indicação <input type="checkbox" name="divulg" />…