Most voted "apache" questions
Apache HTTP Server, commonly referred to as Apache, is an open-source HTTP server. Use this tag for software development issues that specifically involve Apache HTTP Server. Do not post Apache HTTP Server configuration and support issues, these are not within the scope of the site.
Learn more…631 questions
Sort by count of
-
-1
votes1
answer167
viewsProblems in "Hello, world!" in PHP
It sounds funny, but it’s true. I made my first code in PHP and tested it, but it didn’t come out what I expected. See the image with the program windows used in this test. In short, I don’t know…
-
-1
votes1
answer178
viewsHow to restrict GET requests from other sites?
I’m trying to stop other sites from copying my download links, but they’re unconventional (they don’t have format at the end), so I can’t block through Apache mod_rewrite. So I decided to block GET…
-
-1
votes1
answer519
viewsWhat is the correct way to install LAMPP?
I started using Linux (Ubuntu 18.04) recently and have come across many difficulties. So, I tried a few times to install the lampp stack on Ubuntu and I was unable to succeed. There was always some…
-
-1
votes1
answer49
viewsError obtaining time with Row.getCell()
I’m getting data from a spreadsheet in excel. public void Hora() Cell horaAgen = null; if(row.getCell(7) != null ){ horaAgen = row.getCell(7); System.out.println("hora: "+horaAgen); } } On the…
-
-1
votes1
answer343
viewsHow to perform an auto-update on a local web system?
Talk, you guys, blz? I have developed a web system (in Codeigniter) for a customer and the same runs on a local machine inside your office. Whenever I need to update the system, I perform the…
-
-1
votes1
answer426
viewsConnect php container + Apache container + mysql container without Docker-Compose
I have access to a Linux server and I don’t have access to the internet. I only have Docker without Docker-Compose installed, and I have 3 images already loaded in Docker (apache, php and mysql).…
-
-1
votes1
answer134
viewsExtension pgsql Does not load in PHP7.x
I am changing from PHP5 to PHP7 in windows 10 (development machine), all my settings have gone up good, Mysql, Firebird, PDO Mysql, PDO PGSQL, but the blessed Native PGSL does not go up, I have…
-
-1
votes0
answers9
viewsI cannot save password encrypted with bcrypt in the database
I encrypt the password with bcrypt and when I will enter in the database it just won’t go but if I put anything else works what I can do ? $senha = \DarkDevs\Bcrypt::hash($senha); $registro =…
-
-1
votes1
answer57
viewsError 403 in Android project with Webservice using Wampserver
After implementing Webservice in my project and using Debug to check if everything is right, it returned me the same error 403 is in the image. After searching about, I confirmed that the app’s…
-
-1
votes1
answer194
viewsCreate Apache Vhosts on Windows: Does not exceed htdocs
I’m following a tutorial on the net teaching to create Virtualhosts on Apache in Windows environment Man http-vhosts.conf <VirtualHost _default_:80> DocumentRoot "${SRVROOT}/htdocs"…
apacheasked 5 years, 5 months ago Carlos Rocha 1 -
-1
votes1
answer164
viewsProblems in making android build in Cordova
Failed to restore plugin "cordova-plugin-file-transfer" from config.xml. You might need to try adding it again. Error: Version of installed plugin: "[email protected]" does not satisfy…
-
-1
votes1
answer530
viewsForce https, www and bar at the end of the URL with . htaccess
Good afternoon Personal. I’m trying to get . htaccess to force three things. Always access with https, www before the domain and a bar at the end of the URL. Always following this pattern:…
-
-1
votes1
answer699
viewsNot operating route in production
I’m having a problem, I recently deployed a 6 Airframe project in production. I have the following route: Route::get('/', function () { return view('welcome'); }); Route::resource('email',…
-
-1
votes1
answer664
viewsRedirect with . htaccess, from www folder to public project folder
I need to set up a redirect through . htaccess. My "DOCUMENT_ROOT" (using Apache and PHP) is set to "www", which is the root of the project, but index.php is in the "public" folder". I don’t know if…
-
-1
votes1
answer166
viewsHow to create an Arraylist with constructor method with String
Hello, I would like to know how I could add these variables within this Arraylist. The program says it is not possible to put String in Publication, I tried casting and did not give. Thanks in…
-
-1
votes0
answers17
viewsPHP connection to ORACLE 12C database
I’m trying to make the connection to an ORACLE 12C database for some information query. My application runs on PHP 5.4 Debian Linux server. I tried various types of connections I found, but always…
-
-2
votes1
answer716
viewsApache does not read subfolders or other files
Recently, I formatted my computer and installed Ubuntu 14.04 and as always, I changed the apache root Document to: /home/user/Workspace/web. Inside this folder I cloned a project of mine made in…
-
-2
votes1
answer105
viewsFile does not open or is not recognized on the Fedora Linux localhost?
On the terminal screen, permissions are correct: But on my localhost, the page is opening with error: But on the IDE screen, it’s there too, see: The question is, how do I make my localhost…
-
-2
votes1
answer142
viewsHow to block access to a particular file on the server?
Basically, I have a file JSON in my project that contains information I wish not to access by typing in the address bar something like: www.meusite.com/file.json And that goes for other files. How…
-
-2
votes1
answer69
views"/" Site root in PHP
Friends sorry if I’m repeating any questions here, but I searched and did not specifically find my problem, so let’s go. I took a course in videaula, and created a PHP site in which, on my machine…
-
-2
votes1
answer71
viewsHide page extension and skip bar at the end
I currently use the following code to hide the extension on the pages of the site: RewriteEngine On Options +FollowSymLinks RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d…
-
-2
votes1
answer408
viewsError redirecting to https UOL Host
I have a website hosted on UOL HOST. I’m setting up a .htaccess in the hope that 2 things will happen: A) All access by http be converted to httpS B) Any and all access (Links existing and…
-
-2
votes1
answer284
viewshtaccess removes a bar (/) from the url when using WWW in the Prestashop
I have a version 1.7.6 multi-store installation enabled. At first, Prestashop set up htaccess already. Each store is accessed as follows: https://meudominio.com/loja-a https://meudominio.com/loja-b…
-
-2
votes2
answers33
viewsForwarding of domains
I’m having trouble setting up the redirect Htaccess 301 for a domain. The main domain is the https://www.webfreela.com I need the combinations below to be directed to the main: https://webfreela.com…
-
-2
votes1
answer519
viewsHow to access a safe local site by firefox?
I’m looking to release a site that I’m developing through the Chrome browser and need to fix the CSS bugs that are occurring in Firefox. But I’m having trouble accessing it through Firefox. Message…
-
-2
votes1
answer177
viewsHow to Disable caching on specific links via htaccess?
After doing a lot of research on the subject, I will rephrase my question. It’ll get clearer: On my website Wordpress, i would like to set the expiration of html files only on the homepage of the…
-
-3
votes1
answer336
viewsHow to redirect addresses on the internal network by modem?
I would like to know how to redirect local addresses within the internal network through the modem, for example: if someone inside the network accesses the address www.exemplo.com.br should be…
-
-3
votes1
answer83
viewsxampp error on linux Ubuntu
Error updating Poser, please someone can help me.…
-
-3
votes1
answer2234
viewsHow to change the website folder in Apache2?
I need help setting up the LAMP. Everything is working perfectly. The things I’d like to change are mere whims, but I still find it interesting. I would like to change the root directory. In case it…
-
-3
votes1
answer737
viewsProblem in Xampp
i am having trouble starting apache in Xampp when start hit appears the message sequinte: This may be due to a blocked door, lack of dependencies, 18:17:44 [Apache] improper privileges, a failure or…
-
-3
votes1
answer95
viewsAPI query blocked by CORS
Expensive, I am calling an API, but it is being blocked by CORS. I have installed an extension in my browser that enables and disables CORS. When enabled the API returns the expected data, but when…