Posts by Igor Santana • 651 points
24 posts
-
2
votes1
answer234
viewsQ: What encryption does Bitlocker use?
What is the algorithm used by Bitlocker in Windows 10? is AES 128-bit key? I’ve heard that it has AES-256 bit support, but I couldn’t find any place that would allow me to choose that. I’ve even…
windows-10asked Igor Santana 651 -
0
votes1
answer254
viewsQ: Centos 7 - Proxy authentication without saving password
Is there any way to configure the proxy in the "/etc/yum.conf" file without leaving the password saved in this file? Something like, pass the password by parameter? Today the password is written in…
-
4
votes1
answer2112
viewsQ: Apache how to redirect port?
How do I redirect my standard apache website which is at port 80 to a web service at port 8080? Utilizo Centos 7
apacheasked Igor Santana 651 -
0
votes2
answers203
viewsQ: How to use Plone at gate 80?
Good morning! I have a PLONE server running with ZOPE on port 8080. What I would like is to use port 80 so that access is done directly. I have Apache installed and running on port 80, use the…
-
1
votes1
answer1432
viewsQ: Accessing a shared directory through PHP, is it possible?
I have a remote server that has a shared folder ex: \server Inside this directory there are several files that I would like to check the size with PHP. Doubt: With PHP I can access a shared folder…
-
0
votes1
answer1232
viewsQ: How to break lines in the output of an Array?
Good afternoon, I have an array in PHP that shows the date that was made the last backup of each store, and the information is shown as follows: LOJA01 - Bkp 01 teve o ultimo backup em1: 02-01-2017.…
-
0
votes3
answers12797
viewsA: Refresh page after action
From what I understand, what you need is this: <a href="#" onclick="window.opener.location.href='home.php'; window.close()"><input class="btn btn-warning" type="submit" value="Fechar…
-
0
votes2
answers2740
viewsA: Datapicker in Portuguese
To put it in PT-BR, edit the file "jquery-ui.js" and change the block Function Datepicker() for function Datepicker() { this._curInst = null; // The current instance in use this._keyEvent = false;…
-
0
votes2
answers3911
viewsA: How to create local domains to test my websites and apps?
The problem is the door! Remove port from hosts files: Of: localhost:8084 webtest.local To: 127.0.0.1 webtest.local When accessing through the browser, use the port again: http://webtest.local:8084…
-
1
votes1
answer229
viewsQ: How to insert data into the database (mysql) received from an HTML form separated by commas?
Good evening, I will receive information coming from a TEXTAREA html, and I need to receive this in PHP and insert this information into the database, how can I do this? The information comes from…
-
-1
votes1
answer1605
viewsQ: Zip files by command line in Windows?
Does anyone know how I zip files by command line on Windows? Note: I don’t want to compress the file itself, I want to send it to a compressed folder. Example: .txt file --> .zip file…
-
1
votes1
answer49
viewsQ: How to enter several data received from the same field?
I have a form in html that has a field where the user goes inserting the data as it shows the code below, this form is dynamic and the user can insert as much information as he wants, in the…
-
3
votes2
answers131
viewsQ: How to insert a TAG with Comma or Semicolon
I found this project to insert TAGS in a form, but it only adds the TAG when enter key, and when it happens in my form it already sends! I would like to know what I should do in the SCRIPT so that…
jqueryasked Igor Santana 651 -
1
votes1
answer422
viewsA: How to invert the order of loop results in PHP?
In your QUERY code to select the database information enter the ORDER BY option nome_da_tabela_que_voce_quer_ordenar DESC; Example: $query = mysqli_query($dbc, "SELECT * FROM nome_da_tabela WHERE…
-
0
votes2
answers771
viewsA: Open link in another tab when you click button
Hello, maybe what you want is the attribute window.close() This attribute will update a described page every time you close the page by the button. see if this solves:…
-
0
votes0
answers430
viewsQ: How to insert Tags into a MYSQL database using PHP?
good afternoon! I have a knowledge base system where every user can go in there and fill out a form and register the procedure that they know. I am needing to implement a TAG field in this knowledge…
-
1
votes2
answers942
viewsA: How to run code with no open page in PHP
Dear friends, I managed to solve the problem by following the step by step described in the following article: Source: Run PHP script in Windows task scheduler Type in cmd taskschd.msc and click on…
-
4
votes3
answers2365
viewsA: How to verify if connected in the database?
Buddy, maybe you want something like: <?php //hide/show errors ini_set('display_errors', 1); class AcessoDados { public $conn; public function _construct(){ $dsn =…
-
3
votes4
answers5110
viewsA: How to upload images using Ckeditor?
I appreciate the help of all! I managed to solve the problem by doing the following: 1 - I lowered the CKEDITOR and the Kcfinder and unpacked them in the root folder of my website; 2 - I created a…
-
6
votes4
answers5110
viewsQ: How to upload images using Ckeditor?
I’m building a Knowledge Base system and I’m using Ckeditor to edit the texts, but I wish I could upload images inside the text. I am using PHP with MYSQL and the text part is already working. How…
-
4
votes1
answer4360
viewsQ: How to remove the UNIQUE KEY attribute from a column in Mysql?
I created a table in Mysql that uses a column called loja_num with the attribute key dish UNIQUE KEY loja_num (loja_num, But now, I would like to remove this attribute from this column. I have…
-
1
votes2
answers3969
viewsQ: How to create a link to run a ". bat" file that is inside the PHP directory?
Everybody, good afternoon, everybody! Next, I have a page in PHP that is open monitoring a link, I would like to know how I put a link that opens a file. bat that is in the same page directory...…
-
5
votes2
answers942
viewsQ: How to run code with no open page in PHP
I have a PHP code that uses FSOCKOPEN to check the port of a server, and depending on the answer it logs in log... But for this the page has to always stay open, I would like to know if there is any…
-
10
votes3
answers9773
viewsQ: How to log in PHP?
I have a php code that keeps checking the server and when it is online or offline it returns a different message: <?php $server='LOJA 01 - '; $conectado = @ fsockopen('10.200.0.100', 135,…
phpasked Igor Santana 651