Questions tagged as 'lado-do-servidor'

3
answers

Remote server / Local server in PHP

One of the options for creating a local web server is to use XAMPP (PHP, SQL). On a web server, do I have to install XAMPP (or any similar suite) either or is it only used on local servers?     
asked by 03.11.2016 / 12:14
1
answer

Paging system not working - SERVER SIDE

This is my file called index.php: <?php $maxlinks = 4; $paginaAtual = (isset($_GET['paginaAtual'])) ? (int)$_GET['paginaAtual'] : 1; $maximo = 5; $inicio = (($maximo * $paginaAtual) - $maximo); $publicacoesUN = DBRead('publicacao', "ORD...
asked by 10.09.2018 / 01:22
2
answers

Error 500 on server- Invalid URL

Whenever I have access to a URL that does not exist on my site, this error appears    The server encountered an internal error or misconfiguration and was   unable to complete your request. Is there any way to customize this error message...
asked by 05.11.2015 / 14:46
3
answers

Problem with users when publishing application

I'm using SQL Server 2012, and when I publish my application, both on the client server and on my pc everything works fine. The connection strings for DB is correct, everything looks fine. Now where's the problem? When trying to authentic...
asked by 04.04.2014 / 17:57
1
answer

Web Helper Chart does not appear in the server application

Action that mounts the Chart: public ActionResult GraficoPedidos() { int [] arrayP = new int[12]; int aux = 0; for(int i = 1;i <= 12;i++) { int numero = Convert.ToInt32(context.Pedidos.Count(p => p.DataPedido....
asked by 07.03.2016 / 21:16
1
answer

Web Hosting or Streaming Hosting?

I'm developing a project, in which the idea is to allow the user to listen (from a player - > plugin in javaSript built into the index.php page) to the selected music ... In the sense of providing a good service , what is the ideal hosting so...
asked by 18.07.2014 / 13:42
0
answers

Remote connection with PostgreSQL only works after PING

I have a JAVA application running on one server and the database running on another. Both servers are connected and on the same network, postgreSQL is enabled to receive external connections. But when I try to connect to the database from...
asked by 03.07.2018 / 22:04
1
answer

Upload a nodjs and mongodb project to a VPS

I developed my project with Nodejs and MongoDB in Windows, now I intend to upload it in a Ubuntu VPS with these software already installed, I already have Putty installed on my machine and I got access to the server, but I do not know how to sen...
asked by 19.02.2014 / 07:43
1
answer

Help with DataTable Server-side

Hello, I wanted to know the best way to create a Server-side DataTable. Some questions I have: The next button does not work, and the log counter does not work either. How do I fix it? I'm using Start and Length in SQL code, is there a sim...
asked by 02.09.2018 / 01:15
1
answer

Escape symbols in NodeJS

I have the following code running on NodeJS /*jshint esversion: 6 */ const express = require('express'); const bodyParser = require('body-parser'); const app = express(); const port = 8080; app.use(bodyParser.urlencoded({extended: fal...
asked by 02.03.2018 / 16:18