Posts by BackFront • 331 points
6 posts
-
-2
votes4
answers265
viewsA: Phpmailer without ajax
if($send){ echo 'E-mail enviado com sucesso!'; sleep(1); echo '<script>window.history.go(-1)</script>'; } else { echo 'Erro : '.$mail->ErrorInfo; }…
-
0
votes2
answers381
viewsA: Change Wordpress login method
With the function below you can log in with the email or password. Just put the code on functions.php //remove wordpress authentication remove_filter('authenticate',…
-
0
votes1
answer51
viewsQ: Use the same disk for 2 Vms in Azure
I am with 2 Vms (Ubuntu 15.10) and a load Speaker at port 80 to balance and distribute access to them. In these Vms I will use a Wordpress application, but I would like to know how I share a disk…
-
18
votes1
answer897
viewsQ: Streaming type 'livestreaming' with javascript
I’m developing a project of Livestreaming(Live video streaming) and would like to know if it is possible to make this broadcast using websockets, javascript and html5 video capture where would have…
-
3
votes3
answers931
viewsQ: How to check the empty values of a dynamic form?
How to use Jquery to attack the attribute name of all inputs and check if there is value Current Code Form: ... <input type="text" name="nome[]" value=""> <input type="text" name="nome[]"…
-
2
votes3
answers1471
viewsQ: How do I use a constant within a class method?
I defined a constant in a file and would like to call it within a method in a class. Example: Filing cabinet: Configuracao.php <?php define('FOO','Hello World'); require_once('Classe.php'); ?>…