Showing posts with label remotesupport london. Show all posts
Showing posts with label remotesupport london. Show all posts

Thursday, 26 June 2014

Manually set FreePBX timezone

Check here for the correct timezone: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones​

SSH into the server

Run the following, with the relevant TZ database timezone. In this example, Europe/London

​ln -sf /usr/share/zoneinfo/Europe/London /etc/localtime
Then, edit /ect/sysconfig/clock
nano /etc/sysconfig/clock

Change the line to the correct TZ timezone:

ZONE="Europe/London"

Save the file

Run to check all is now correct:
date

Reboot the server

See More....

Join a wireless network before login

Export the existing wifi setup

​netsh wlan export profile %SSIDName% folder=c:\temp
XML files of the existing connections will be exported to c:\temp. Find the one you want all users to access. You need to modify the to false and enter the wireless key.

You will end up with something like this:

<?xml version="1.0"?>
<WLANProfile xmlns="http://www.microsoft.com/networking/WLAN/profile/v1">
<name>Best Network</name>
<SSIDConfig>
<SSID>
<hex>42657374204E6574776F726B</hex>
<name>Best Network</name>
</SSID>
</SSIDConfig>
<connectionType>ESS</connectionType>
<connectionMode>auto</connectionMode>
<MSM>
<security>
<authEncryption>
<authentication>WPA2PSK</authentication>


- See more...

cdr_mysql.c:203 mysql_log: Cannot connect to database server localhost


When restoring FreePBX from backup, you may find the CDR database is not updated. This is because the cdr_mysql.conf file is not overwritten by the restore, and so the password for the CDR database is incorrect.

You can resolve it like this:

SSH onto the server
nano /etc/freepbx.conf

Find the lines:

$amp_conf['AMPDBUSER']  = 'freepbxuser';
$amp_conf['AMPDBPASS']  = '3098SADFSLa';​​


Copy the password, quit nano

- See more...