Posts by alexjosesilva • 3,119 points
279 posts
-
1
votes2
answers185
viewsQ: Laravel cron error does not execute
I have a cron that should be running every day in an hour. $Schedule->command('inspire')->dailyAt('15:00'); but he is not being executed Code <?php namespace App\Units; use…
-
-1
votes1
answer120
viewsQ: Orange Error: [Reflectionexception] Class App Units Commands Inspire does not exist
I’m getting this mistake: Code consoleKernel.php <?php namespace App\Units; use Illuminate\Console\Scheduling\Schedule; use Illuminate\Foundation\Console\Kernel; use…
-
1
votes1
answer82
viewsQ: SQL: Avoid repeating line and adding values
I have this select: select DISTINCT (clients.name) as nomeempresa, payments.amount_paid as pagamento, receipts.original_amount as recebimento FROM payments, receipts, receipt_status, payment_status,…
-
2
votes1
answer401
viewsQ: Query to sum query total
I have a Query to select a user list with rates I have to make the sum of these debits. SQL /* * PAGAMENTO */ SELECT pe.name as nomepessoa, py.created_at as datapagamento, py.amount_paid as…
-
1
votes1
answer849
viewsQ: Error executing query in Postgresql
After executing this query: SELECT p.name as nomerecebe, r.created_at as datarecebimento, r.original_amount as valorboleto, rs.name as statusr, SUM(r.original_amount) as total FROM people as p,…
-
-1
votes1
answer353
viewsQ: Sql in Postgresql: Do Not Repeat Values from a Table field
I have a select that displays the names, date and amounts paid by customers. I must display a list without repeating the names. SELECT c.name, p.created_at, p.amount_paid FROM payments as p, clients…
-
0
votes3
answers2249
viewsA: Error: Laravel ao Enviar email
Due to the restrictions of gmail cooporativo I was obliged to use my personal gmail account and enable my application access to send email. In any case the code is functional sending emails to each…
-
0
votes3
answers2249
viewsQ: Error: Laravel ao Enviar email
When trying to send email in the Portuguese language I get this error message: [Swift_transportexception] Expected Response code 250 but got code "530", with message "530 5.7.1 Authentication…
-
1
votes1
answer1490
viewsQ: How to test the cron in the Laravel?
I created a cron for sending email every period of time. But how to test the operation ? Code <?php namespace App\Console\Commands; namespace App\Console\Commands\EnvioEmailBlCron; use…
-
0
votes1
answer186
viewsQ: Error inserting Image in Readme.Md in bitbucket
I can’t insert the image into the readme.dm in bitbucket Code: **## Modelo Relacional** ![ER Pessoas ](https://bitbucket.org/xxxx/api-yyyy/public/doc1.2/API yyyy 1.2/BPM/1.2/pessoas.png)…
-
1
votes1
answer417
viewsQ: How to set up sending email in Laravel within cron?
After the creation of cron (code below) is made a scan in the database behind changed data. I have to send an email with this data. How can I do that ??? Code of the cron: <?php namespace…
-
1
votes1
answer544
viewsQ: How to perform a double consultation in the Standard?
I have a query in SQL Ansi: select * from payments as P, receipts as R where P.created_at < CURRENT_DATE AND P.updated_at < CURRENT_DATE AND R.created_at < CURRENT_DATE AND R.updated_at…
-
4
votes1
answer13616
viewsQ: How to create a cron in Laravel?
I have to create a Cron on Laravel to send emails every 24 hours. I’m supposed to upload data from the bank. So after a query in the database cron should send the email with the query data.
-
1
votes1
answer130
viewsA: psqlodbc. h:54:23: fatal error: iodbcinst. h: No such file or directory
I can install the odbc plugin by following these steps:inside the uncompressed odbc postgresql folder: ./configure make sudo make install
-
-3
votes1
answer130
viewsQ: psqlodbc. h:54:23: fatal error: iodbcinst. h: No such file or directory
Error installing postgresql ODBC in Ubuntu 64 How should I proceed ?…
-
0
votes1
answer297
viewsQ: psqlodbca.so: Cannot open shared object file: File or directory not found
I cannot migrate Postegresql database to mysql due to this error: psqlodbca.so: Cannot open shared object file: File or directory not found I am using Ubuntu 64 Postgresql 9x and Workbench 6.x, how…
-
1
votes1
answer413
viewsQ: Error in passing value to View in codeigniter
In a simple application. A value is passed to view. However codeigniter reports an error: PHP code: class User extends CI_Controller { public function __construct(){ parent::__construct();…
-
0
votes2
answers153
viewsQ: Error while displaying array in PHP
I have this array in PHP and I must display the users name and email field. But php display an error message: array(4) { [0]=> object(stdClass)#25 (5) { ["idusuario"]=> string(1) "2"…
-
0
votes1
answer118
viewsQ: Error inserting data into table!
In the student registration system has this logical scheme: How can I enter the correct student data ? SQL -- Geração de Modelo físico -- Sql ANSI 2003 - brModelo. CREATE TABLE Aluno ( idaluno…
-
1
votes1
answer1643
viewsQ: How to create Server in Postgresql with port other than 5432?
It is possible to create a server within the Postgresql database with a port other than 5432 ? It is possible to have Server1: Postgresql at port 5432 and Server2: Test at gate 5433 ??…
-
1
votes1
answer45
viewsQ: How to migrate Posgresql Script to Mysql Script?
I have this database in Postgresql Script, how to convert to Msyql in order to create this database in this database ? -- -- PostgreSQL database dump -- -- Started on 2010-07-03 09:40:14 SET…
-
0
votes2
answers268
viewsQ: Azure phpMyAdmin error: Access denied!
Sometimes, during my work developing my app on Azure, I come across this situation: I use Chrome browser My Mysql database: MySQL no Aplicativo so I only use for one application. Any suggestions on…
-
0
votes1
answer791
viewsQ: Error: Uncaught Syntaxerror: Unexpected token { com easyui
I am developing an application with the easyui framework You are staying at the Azure: http://crudeasyui.azurewebsites.net/ code repository: https://github.com/alexjosesilva/CrudEasyui but giving…
-
1
votes1
answer404
viewsQ: Jasper ireport first record
My report on Jasper ireport only displays the first record Code <?xml version="1.0" encoding="UTF-8"?> <!-- Created with Jaspersoft Studio version 6.4.0.final using JasperReports Library…
jasper-reportsasked alexjosesilva 3,119 -
2
votes1
answer482
viewsQ: How to insert icons in JSF?
In a registration form I have to insert edit and remove icons in a form made in JSF. <h:commandLink action="#{clienteController.editar}">Editar…
-
1
votes1
answer2246
viewsQ: How to redirect page in JSF?
I have a system with a form in which you can edit or remove items. In it there is a link to redirect another page. What form it is possible to redirect a JSF page?…
-
1
votes1
answer463
viewsQ: How to merge <h:column > columns in JSF?
How can I merge columns or rows in JSF 2.0 ? Code <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html…
-
-1
votes2
answers1469
viewsQ: Target Unreachable error, Identifier 'Clientebean' resolved to null
System with error: Error message: Caused by: javax.el.Propertynotfoundexception: /index.xhtml @22,72 value="#{Clientebean.cliente.name}": Target Unreachable, Identifier 'Clientebean' resolved to…
-
1
votes0
answers31
viewsQ: Azure error: I can’t load view from the controller!
I have a news registration system developed in PHP (MVC) in which each url triggers a controller that calls a view. But in Azure is not called the corresponding view while in xampp/apache the system…
-
1
votes1
answer86
viewsA: Azure codeigniter error: does not access subfolders
Resolution: Remove the . htacces file from the system as in Azure it is not used Create the file with web config. with this code(insert into the project root folder). It will allow access to the…
-
1
votes1
answer86
viewsQ: Azure codeigniter error: does not access subfolders
I have an Ecommerce system hosted on Azure( http://lojavirtualcodeigniter1.azurewebsites.net/) Developed in Codeigniter Framework 1.7.2 The system is loaded in index. However, I cannot load the…
-
0
votes1
answer104
viewsA: Error inserting Angular data using $http.post(). then
Error in SQL syntax = $sql = "INSERT INTO tprodutos (id, name, price, quantity) VALUES (NULL, '". $name." ', '". $price." ', '". $Quantity."');";…
-
-3
votes1
answer104
viewsQ: Error inserting Angular data using $http.post(). then
I cannot insert the data into mysql using Angularjs. The data is not sent to the Insert.php file. I believe there is an error $http.post that I am not aware of! Any suggestions ? System:…
-
0
votes1
answer130
viewsA: Jquery Chosen plugin does not filter search on PHP site
The error is in breaking the line within the select option tag <option value="<?php echo $obj->getid() ?>" <?php echo $obj->getid()==$vObject->getidProjeto()?'selected':'' echo…
-
1
votes1
answer130
viewsQ: Jquery Chosen plugin does not filter search on PHP site
I am using the plugin Jquery Chosen does not perform filter in php system. Code to scan database and get data list: <div class="grupo"> <!-- class="borda select2_single form-control…
-
1
votes1
answer913
viewsQ: Filter Select elements with PHP
I have to create a filter in select to perform a search between multiple select results <div class="grupo"> <!-- class="borda select2_single form-control comboauto" --> <select…
-
0
votes1
answer1472
viewsQ: Fpdf PHP page
I’m having trouble making a pagination. It receives the data of the report in array format, then I have to do a foreach to scan the data, it happens that I am doing it within 2 for, and the data…
-
0
votes1
answer212
viewsQ: How to Calculate Pixel Height with PHP
I have a screen on which a report is generated with a limit amount of tables that cannot be broken. I have to paginate this report. How to calculate the height of pixels generated ??
-
0
votes1
answer49
viewsQ: Error inserting Data with Angularjs
I am encountering errors when entering data with Angularjs Codigo Angular: var myapp = angular.module('myapp',[]); myapp.controller('productController',function($scope,$http) { //listar produtos…
-
0
votes1
answer257
viewsA: Error opening file in PHP page
Fix the search.php file <?php //Arquivo para buscar video dentro do explorer $video = $_POST['buscar']; $endereco = "C:/xampp/htdocs/www/"; $iterator = new DirectoryIterator($endereco); foreach (…
-
0
votes1
answer257
viewsQ: Error opening file in PHP page
I have a page in PHP that lists the files of a folder from a search. In the result has a link to the file in order to open it. However, it is not possible to open the listed files. Code index.php…
-
0
votes1
answer135
viewsA: How do I connect a Java application to the Mysql-in App on Azure?
The connection in the Mysql-Inapp database in Azure is very similar to the local connection of the Xampp server. Simply set the user variables: "Azure", password:"passwordDositema" and host:"local"…
-
-2
votes1
answer135
viewsQ: How do I connect a Java application to the Mysql-in App on Azure?
How to connect an application via url to the Mysql database (Myslq-inApp) within Azure ? String urlLOCAL = "jdbc:mysql://localhost:3306/crudjsp"; String urlAzure = "jdbc:";…
-
0
votes1
answer394
viewsA: JDBC Mysql Related Eclipse Error
I solved the problem by inserting the mysql . jar in the classpath and placing port 3306 in the code.
-
-2
votes1
answer394
viewsQ: JDBC Mysql Related Eclipse Error
I am trying to connect the mysql database from my JAVA application. But I get this message: org.apache.Jasper.Jasperexception: An Exception occurred Processing JSP page /index.jsp at line 31 28:…
-
0
votes1
answer269
viewsA: Error when integrating Waze to PHP site?
I was able to solve this problem using an iframe to insert the map of the Waze api: <div id="exibirMapa" class="exibirMapa"> <iframe…
-
0
votes1
answer99
viewsA: Newcomer to Waze. How can I insert on my website?
I was able to solve this problem by inserting an iframe in my PHP system <div id="exibirMapa" class="exibirMapa"> <iframe…
-
-4
votes1
answer99
viewsQ: Newcomer to Waze. How can I insert on my website?
I have a website and need to insert a map of the Waze api. How do I? Code <?php //exibir o Mapa ?> <style> .exibirpainel{ margin-top: 0px; height: 400px; width: 700px; background-color:…
-
0
votes1
answer55
viewsA: Jquery-Ui.css css is blocking page elements
Solved just insert the class in the tag from which had the break of the alignment. .linha{ display: inline; } code: Jsfiddle…
-
0
votes1
answer55
viewsQ: Jquery-Ui.css css is blocking page elements
I have elements arranged on my screen. However due to the use of the jquery.tab plugin css is blocking the page elements. Code Index.php <!doctype html> <html lang="en"> <head>…