Posts by Nícolas santos Souza • 17 points
8 posts
-
1
votes1
answer415
viewsA: ADODB.Recordset error '800a0e79' Operation not allowed when object is open
This occurred because rs was repeating itself in the code even though it is inside include. Below follows the corrected code. <% sql="select id, nome from matricula_online.situacoes" ql=sql &…
-
-2
votes1
answer415
viewsQ: ADODB.Recordset error '800a0e79' Operation not allowed when object is open
ADODB.Recordset error '800a0e79' Operation not allowed when the object is open. /intranet/portal/sistemas/MAN6/includes/inc_cmbDropSituacaoReserva.Asp, line 12 <% sql="select id, nome from…
-
0
votes1
answer38
viewsQ: Error exporting to excel
This below is my controller. public function atletaExport(AtletaModalidadeRequest $request){ $alunosModalidade =…
-
0
votes2
answers141
viewsQ: Error Methodnotallowedhttpexception in Routecollection.php line 218
My route Route::put('equipes/insereAluno/{equipe}',['as'=>'equipes.insereAluno','uses'=>'EquipesController@insereAluno']); My side. {!!…
-
1
votes1
answer45
viewsQ: My form does not save the data in the database
dry my view: {!! Notification::showAll() !!} {!! Form::open() !!} <div class="panel panel-default"> <div class="panel-heading"><h2> Cadastro Escola </h2></div> <div…
-
0
votes0
answers22
viewsQ: Unauthorized json php error
I’m hoping that when selecting a municipality the regional automatically select but this error is making me break Muringa. Can someone help me? The route is correct I’ve checked several times. below…
-
0
votes1
answer45
viewsQ: Fill a select by clicking the previous select
My php code public function getCadastro(Request $request) { $redes = Rede::lists('nome','id'); $municipios = Municipio::select('nome', 'id')->pluck('nome','id')->all(); $municipios_id =…
-
-1
votes1
answer203
viewsQ: Error accessing mysql Workbench using Docker-Compose
I’m starting to work with containers and I ran into a problem. Configure my Docker-Compose.yml file version: '3.3' volumes: data: services: mysql: image: mysql:5.7 ports: - "3306:3306" volumes: -…