Questions tagged as 'servidor'

2
answers

Execute Script when starting Ubuntu

I want that when I start Ubuntu 16.04, I automatically run a script, so far I have the following: script.sh: #!/bin/bash mkdir prueba_carpeta and what I have done to run automatically is as follows: I give you permission. sudo c...
asked by 18.07.2017 / 17:03
1
answer

JsonObject Android

I am making a listview through a json that I bring from a server. The detail is that I can not pass my data to listview in this function I try to save them from there to move them to listview public ArrayList<String>...
asked by 11.08.2017 / 08:54
1
answer

Intentions when uploading some images to the server with PHP

SOLVED THE PROBLEM. The problem is already solved and I explain it to you next in case someone else happens the same. The code initially worked without any problem but when uploading the images some of them failed and were uploaded in a c...
asked by 04.08.2018 / 19:04
1
answer

I can not activate the cgi on my lighttpd server

[Solved, below there is another error] I do not understand why I can not activate the cgi on my lighttpd server. Here I leave my /etc/lighttpd/lighttpd.conf so you can see if I have something wrong. server.modules = ( "mod_acc...
asked by 28.08.2017 / 23:06
2
answers

Upload File Server PHP

I have to upload 2 images. One is a product image and another is a QR. Also the code I want to insert in a MySQL database the URL of each image. I managed to get the URL of each image registered in the database and upload one of the two images,...
asked by 28.10.2018 / 23:43
1
answer

Problem when encrypting and decrypting in client and server

I want to send a message (in this case simply "123456") encrypted from the client to the server so that the latter can decipher it. All this I do with a symmetric key that both have. The objective with this would be in a basic way to know that t...
asked by 22.05.2018 / 17:41
1
answer

Server upload in nodejs

a query, how would you do a server upload in nodejs, with a load balancer like nginx? I give you this scenario. Server A, Server B, the 2 with the same app running on a port, and balancing it with nginx, for example I have a form which wil...
asked by 15.02.2017 / 17:30
1
answer

Remote server with reverse tunnel, the busy port is sometimes closed

What happens is that I have two remote servers (serv1 and serv2) what happens is that when I enter the serv1 to then make the entry through the tunnel inverse to the serv2 there are times that the port through which entry is closed or it does no...
asked by 22.11.2018 / 20:33
0
answers

Problem with DNS in an AD DC

I have a problem that I do not understand. I would appreciate help. The thing is like that. I have a Windows server 2012, with an AD DC and right there a DNS. The name of the machine is: ws. The domain is: dom.inetserver.lo The NETBIOS of...
asked by 31.08.2018 / 14:58
0
answers

How can I deny access to public folder files on the Apache server?

Try putting a .htaccess in the root of the project this way: Options -Indexes IndexIgnore * <FilesMatch "\.(htaccess|htpasswd|ini|jpg|log|bak|txt)$"> Order Allow,Deny Deny from all Allow from 192.168.0.9 </FilesMatch> But the...
asked by 15.06.2018 / 00:11