Posts by Rafael Guimarães • 144 points
7 posts
-
0
votes1
answer56
viewsA: Error Hosting - Zend Framework 2
use __DIR__ to take the right path, if using autoloader revise it is carrying what you need. require_once(__DIR__."path/arquivo.php")
-
0
votes1
answer108
viewsA: Problem performing API requests
You must have the login data (username, password or token), make a request for the api url with the data by your controller use Zend\Http\Client; $client = new Client();…
-
0
votes1
answer55
viewsA: Sending of ZEND email
Voce should point the ajax url to a route, and process the data in the controller and make the call via http client Zend_1 $client = new Zend_Http_Client(); $client->setMethod('GET');…
-
0
votes1
answer42
viewsA: How to restrict hours and minutes in javascript
Add to your project https://sweetalert2.github.io/ then change to more or less this: if (totalHoras >= 30){ Swal.fire( 'Passou da hora', 'Voce ja tem 30 ou mais horas', 'success' ) }…
-
1
votes1
answer18
viewsA: Perform an external-based query in the Zend Framework
Create a model <?php class Application_Model_Inusuarios extends Zend_Db_Table_Abstract { protected $_name = 'in_usuarios'; protected $_primary = array('id'); protected $_dependentTables = array(…
-
1
votes1
answer59
viewsA: Android Kotlin - App minimizes but maximizes the app starts again
I found that has nothing to do with Activity Lifecycle, and yes what makes it happen is the android system itself installed on a tablet Hyunday - API 7.1.1 on any other android device (emulators),…
-
0
votes1
answer59
viewsQ: Android Kotlin - App minimizes but maximizes the app starts again
Hello, I have an app that minimizes and maximizes restarts in Activity.MAIN, every time. I found this question but the answer does not solve the problem MAINTAIN ACTIVITY BY MINIMIZING because the…