Search This Blog

Showing posts with label disable. Show all posts
Showing posts with label disable. Show all posts

Friday, February 24, 2023

Apache2 disable directory listing

Step 1: The best way to do this is disable it with webserver apache2. In my Ubuntu 14.X - open /etc/apache2/apache2.conf change from


Sample

<Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride None
        Require all granted
</Directory>

to

<Directory /var/www/>
        Options FollowSymLinks
        AllowOverride None
        Require all granted
</Directory>

Monday, February 21, 2022

How to enable JavaScript in your Chrome browser for localhost

 

Google Chrome

  1. On the web browser menu click on the "Customize and control Google Chrome" and select "Settings".
  2. In the "Settings" section click on the "Show advanced settings..."
  3. Under the the "Privacy" click on the "Content settings...".
  4. When the dialog window opens, look for the "JavaScript" section and select "Allow all sites to run JavaScript (recommended)".
  5. Click on the "OK" button to close it.
  6. Close the "Settings" tab.
  7. Click on the "Reload this page" button of the web browser to refresh the page.


Thursday, May 28, 2020

Ubuntu Disable Each time Password Entering

sudo nano -w /etc/sudoers
 
 
Replace 

%sudo  ALL=(ALL) ALL 
  
TO

%sudo  ALL=(ALL) NOPASSWD:ALL
 
 
 
- Enjoy
 

Tuesday, February 18, 2020

How to disable warning in Joomla - Continue to Continue 2

Go to Administrator->System menu -> Global Configuration -> Server -> Error reporting -> NONE

OR

Open configuration.php

public $error_reporting = 'none';






Enjoy

Hit Counter


View My Stats