Posts

Showing posts from March, 2021

SOLVED - ftp:// URLs not opening in Google Chrome but works in other browser like Firefox and IE

  Google adds temporary flag to Chrome to allow FTP protocol. By default, you cannot open a FTP site like ftp://ftp.sj.edu.org. Solution: Change the default setting. 1. On chrome open :  chrome://flags/ 2. Look for   Enable support for  FTP  URLs 3. Change the setting  Default to Enabled  from the dropdown. 

[Solved] Wordpress Permalink settings set to 'Post Name' breaks the page.

 Solution: Edit the Apache file below #vim /etc/apache2/apache2.conf <Directory /var/www/>         Options Indexes FollowSymLinks         AllowOverride  None         Require all granted </Directory> Change to : <Directory /var/www/>         Options Indexes FollowSymLinks         AllowOverride  All         Require all granted </Directory>

Regenerate and configure SSL certificates for Freeradius for Eduroam

 1. Remove the old certificates: # rm /etc/freeradius/3.0/certs/* 2. Copy the original files # cp /usr/share/doc/freeradius/examples/certs/* /etc/freeradius/3.0/certs/ 3. Edit the lines under the  certificate_authority  section as needed for the following two files: # vim /etc/freeradius/3.0/certs/ca.cnf # vim /etc/freeradius/3.0/certs/server.cnf [ CA_default ] . . . default_days = 1825 . . . [server] countryName = BT stateOrProvinceName = Samdrup Jongkhar localityName = Dewathang organizationName = JNEC emailAddress = sj@gmail.com commonName = "ITSU" . . . 5. Generate the certificate: # cd /etc/freeradius/3.0/certs/ # cd /etc/freeradius/3.0/certs/ # make ca.der # make printca # make dh # make server.pem # chown freerad:freerad * # service freeradius restart