RADIUSdesk

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
getting_started:install_ubuntu_update_17_0_1 [2017/03/19 21:38] – [Updating the CakePHP APPs] admingetting_started:install_ubuntu_update_17_0_1 [2017/04/06 11:27] (current) – [Update the Login Pages] admin
Line 21: Line 21:
 </code> </code>
 </WRAP> </WRAP>
-<WRAP center round tip 100%> 
-Should you wish to replace the **RADIUSdesk** etc from the optimised content edit the following file and look for the word **RADIUSdesk** (There should be three occurrences) 
-<code> 
 #If served out of Webroot #If served out of Webroot
 sudo vi /usr/share/nginx/html/app.js  sudo vi /usr/share/nginx/html/app.js 
Line 54: Line 51:
  
 #================ #================
-#NOTE You might be asked questions on some files, simply choose cf / tc (Their side) each time+#NOTE You might be asked questions on some files, simply choose tc / tf (Their side) each time
 #================ #================
  
Line 71: Line 68:
 <code bash> <code bash>
 cd /usr/share/nginx/html/cake3/rd_cake/setup/db/ cd /usr/share/nginx/html/cake3/rd_cake/setup/db/
-sudo mysql -u root rd < rd_photo_more_enhancements.sql +#You can run this multiple times they are non-destructive 
-sudo mysql -u root rd < captive_portal_dns.sql+#Rename the key column to avoid clashing with SQL reserved words 
 +sudo mysql -u root rd < /usr/share/nginx/html/cake3/rd_cake/setup/db/rd_rename_key_column.sql  
 +#Add feature to enable / disable photos 
 +sudo mysql -u root rd < /usr/share/nginx/html/cake3/rd_cake/setup/db/rd_photo_add_active_column.sql 
 +#Some more enhancements 
 +sudo mysql -u root rd < /usr/share/nginx/html/cake3/rd_cake/setup/db/rd_photo_more_enhancements.sql 
 +#Some DNS Enhancements 
 +sudo mysql -u root rd < /usr/share/nginx/html/cake3/rd_cake/setup/db/captive_portal_dns.sql 
 +#Adjust ACOs rights 
 +sudo mysql -u root rd < /usr/share/nginx/html/cake3/rd_cake/setup/db/correct_realm_acos.sql
 </code> </code>
  
Line 83: Line 89:
  
   * **After this your system should contain the very latest code from SVN**   * **After this your system should contain the very latest code from SVN**
 +
 +<WRAP center round important 100%>
 +== Please Take Note ==
 +  * The current version of FreeRADIUS available on the repository (3.0.12) has this bug: http://lists.freeradius.org/pipermail/freeradius-users/2016-October/085317.html
 +  * While we wait for the maintainer of the repository to update to the latest stable release please follow the instructions in this page to [[getting_started:install_ubuntu_freeradius_upgrade|Upgrade FreeRADIUS]] using our own set of packages.
 +  * Once the repository has been updated we will remove this //'detour'// instructions 
 +</WRAP>
 +