Posts by Panda • 455 points
23 posts
-
1
votes1
answer238
viewsA: Login to Github via SSH
If you need to do it just once git push ssh://<temp_user>@<host>/<repo_path> <local_branch>:<remote_branch> If you need two SSH keys enters @editoDeTextoPreferity ~/.…
-
1
votes1
answer152
viewsA: How to protect a php page that runs something
Edgar, As the comments there is no simple and correct way to do this and what you will learn, will never be used or even harassed. The best way would be to build a consume API via REST with a token…
-
0
votes1
answer67
viewsA: Language to develop a live system
Martins For this you will need a communication between the two you may have to create a server that communicates this or use a ready with API. For example, Nexmo provides a voice and video channel.…
-
0
votes1
answer223
viewsA: Phpjasper does not return database data
Tries to do the implementation as the documentation says to return it keyed in the correct way. $input = '/your_input_path/your_report.jasper'; $output = '/your_output_path'; $options = [ 'format'…
-
1
votes2
answers437
viewsA: Redirect after login into Wordpress
In order for it to work it has to send in the email URL a parameter as URL for the login example: http://www.henrique.com.br/wp-login?url=http%3A%2F%2Flocalhost%2Fjamil%2Fconsulta%2F Remember to put…
-
1
votes3
answers6930
viewsA: Asset Help (Laravel Blade)
Remembering that this may depend on the configuration of your Webpack and Htdocs path. But I believe that this should work : <script src="{{ asset('assets/js/formCurriculo.js') }}"…
-
1
votes2
answers777
viewsA: Retrieve data returned via json with PHP
To turn direct into Array can do so : <?php function get_web_page( $url ) { $options = array( CURLOPT_RETURNTRANSFER => true, // return web page CURLOPT_HEADER => false, // don't return…
-
0
votes2
answers285
viewsA: How to align text with the image when the image has a vertical format
.logos .box-images img { display: block; margin-left: auto; margin-right: auto; } I added this to the CSS ...…
-
0
votes2
answers1128
viewsA: How to upload this Header using Nusoap PHP?
First Voce creates a file that will contain your SOAP instructions such as server.php. Inside that file first you have to have this <?php //Chama a lib require_once "lib/nusoap.php"; //Starta o…
-
3
votes2
answers1685
viewsA: How to return all fields of a "Mysql" line by the "id" of the line?
First make the connection by starting a Mysqli object $mysqli = new mysqli("example.com", "user", "password", "database"); if ($mysqli->connect_errno) { echo "Failed to connect to MySQL: " .…
-
2
votes2
answers1081
viewsA: Error in mysqli: "expects Exactly 2 Parameters, 1 Given"
There should be two parameters to connect like this: <?php $con=mysqli_connect("localhost","my_user","my_password","my_db"); // Checa a database if (mysqli_connect_errno()) { echo "Deu errado…
-
1
votes1
answer127
viewsA: Event Tracking Google Tag Manager
The default tag manager does not recognize Jquery selector, a practical solution is to put the default snippet code as custom HTML and put the code below as custom and do not forget to have Jquery…
-
2
votes1
answer936
viewsA: Run the next sound in Javascript?
Planex, There are some projects that can help you make a very good player using only Javascript and angular; http://danielstern.github.io/ngAudio/#/audio/audio%7Csong1.mp3 - Allows you to create…
-
1
votes2
answers764
viewsA: How to query data from a table using INNER JOIN in a sub-query in PHP
This depends on the view you will create. In case it may be a INNER JOIN to the chat table. As long as all chats have a user. Follow an example: Select * From 'chat' INNER JOIN 'usuarios' ON…
-
1
votes2
answers594
viewsA: Collect Google Analytics data for Mysql tables
This is not a limitation of the tool by capacity but by price ( https://developers.google.com/analytics/devguides/config/mgmt/v3/limits-quotas ). They set the search limit based on a request every…
-
3
votes1
answer395
viewsA: Streaming Server.. Listening/Downloading/Uploading Audio
Welcome to the PHP. There’s this French open-source that I think is exactly what you need. You’ll be able to customize it the way you think it best. http://ampache.org/demo.html Take a look at their…
-
1
votes1
answer1517
viewsA: how to implement jquery in php?
Good afternoon, Edited: From what I understand you want to give an alert to the user that what he searched for was not found. You should have a page like www.lovedevelopment.com.br/vusca.php? q=0 (…
-
2
votes3
answers415
viewsA: I want to test my test site on my tablet and wanted to know how
Hello can be done by but sometimes it’s not perfect. I really like to use this one, it has the main devices in terms of resolution.. http://mobiletest.me/ipad_mini_emulator/?…
-
1
votes1
answer772
viewsA: LINK Anchor to Section Does Not Work in Firefox
It does not recognize the post via Strange Script not only work on Firefox. Two things I would try. Put the Full URL follows a test I put on my website ( http://papoinformal.com.br/teste/anchor.html…
-
0
votes1
answer335
viewsA: web service nusoap hangs with no ascii characters
This sounds like server problems to me. But it passes the error or print. The error I once had was XML solved so function nusoap_parser($xml,$encoding='UTF-8',$method='',$decode_utf8=true){…
-
0
votes2
answers481
viewsA: Javascript problems reading getElementByID in IE and Chrome
I’m not sure about the mistake but what you can do is this if ( navigator.userAgent.toLowerCase().indexOf('chrome') > -1 ){ //Faz alguma coisa se for chrome } Anything gives a touch and checks if…
-
0
votes1
answer96
viewsA: Conflict when loading jQuery on the page
You can try using the conflict remove tag https://api.jquery.com/jquery.noconflict/ as in jQuery link. But I believe it’s some class of your AJAX that’s using this class. It is better to publish…
-
1
votes2
answers491
viewsA: Transform a PHP variable into an array
As your variable is in Javascript do the replace similarly, take care of the layers of variables. <script> var fin = "02:00:00"; res = fin.replace(/\:/g,'.')…