ERROR: (gdb)
#0 0x00007ffff7a66067 in __GI_raise (sig=sig@entry=6)
at ../nptl/sysdeps/unix/sysv/linux/raise.c:56
#1 0x00007ffff7a67448 in __GI_abort () at abort.c:89
#2 0x00007ffff7aa41b4 in __libc_message (do_abort=do_abort@entry=1,
f...
I'm doing a page with a main view, which has the search button, load user and show user list.
All finally end up calling the controller that has functions according to value of the buttons. They work perfect for me, except for the user...
I need to join a file mp4 (with audio included, recorded from the camera), a song in mp3 (or aac , or the format that is, I am indifferent in this case). The only condition is that I can not use FFMPEG .
I found on the...
I have a search engine in laravel for teams by its ip and by its bar code for that create two scopes
public function scopeBuscarip($query, $ip)
{
if (trim($ip) != '') {
$query = $query->where('ip', $ip);
}
}
public...
In the PC that I develop has a Windows 10 OS, I installed some time ago VS2013, SQL Server 2008 R2 Express and SQL Server Management Studio (for issues of clients that work with this version of the DB).
I'm trying to generate a query to a tab...
I am working in an Online Store.
On my system:
There are several registered users in the database.
Each user adds their products, their categories, and has their own
customers.
Upon entering the administration panel everyone sees the...
I am developing an app with phonegap and jquery mobile. I have a screen similar to the uber map screen. Uber has on the map screen a standing panel which when you touch it and go up the panel goes up. What is it called or how could that effect b...
I have these tables:
db.define_table('marcas_definiciones',
Field('marca', 'string', label=T('Marca GG')),
Field('razon_zocial_gg', 'reference razones_zociales_gg'),
Field('ruc', 'string...
I have two views, A and B, each with its respective driver.
From view A I can go to B. And from the B I open a new controller that has no associated view, but I create it programmatically.
From the new controller created I have a button th...