Hi marcel.
I had similar problems after upgrading from 710 to 810. I'll try to explain what I did to get rid some of them.
Asterisk Manager Connection Failure
Failed to connect to the Asterisk manager through port: 5038
- check your /etc/asterisk/manager.conf file and make sure that the following options are set correctly:
enabled = yes
port = 5038
bindaddr = 0.0.0.0
you might need to restart asterisk if you made any changes: /etc/init.d/asterisk restart
- check your /etc/amportal.conf and make sure that:
AMPWEBADDRESS=- now try re-loading FreePBX
Could not reload FOP server
Could not reload the FOP operator panel server using the bounce_op.sh script. Configuration changes may not be reflected in the panel display.
I believe that FOP is not included in standard LinuxMCE installation (it wasn't in mine anyway). Normally it should be located in /var/www/htdoc/panel. At the moment I'm trying to add this option manually to my lmce 810 to get rid of yellow warning "OP Panel" button in FreePBX GUI and this error message.
symlink from modules failed
retrieve_conf failed to sym link the /etc/asterisk/sip.conf file from modules
Do the following:
mv /etc/asterisk/sip.conf /etc/asterisk/sip.conf.old
mv /etc/asterisk/iax.conf /etc/asterisk/iax.conf.old
mv /etc/asterisk/extensions.conf /etc/asterisk/extensions.conf.old
mv /var/lib/asterisk/bin/fax-process.pl /var/lib/asterisk/bin/fax-process.pl.old
/var/lib/asterisk/bin/retrieve_conf
Failed to copy from module agi-bin
Retrieve conf failed to copy file(s) from a module's agi-bin dir: copy(/usr/share/asterisk/agi-bin/list-item-remove.php): failed to open stream: Permission denied
copy(/usr/share/asterisk/agi-bin/dialparties.agi): failed to open stream: Permission denied
copy(/usr/share/asterisk/agi-bin/recordingcheck): failed to open stream: Permission denied
copy(/usr/share/asterisk/agi-bin/checksound.agi): failed to open stream: Permission denied
copy(/usr/share/asterisk/agi-bin/directory): failed to open stream: Permission denied
copy(/usr/share/asterisk/agi-bin/fixlocalprefix): failed to open stream: Permission denied
copy(/usr/share/asterisk/agi-bin/enumlookup.agi): failed to open stream: Permission denied
This one is tricky. There is two ways to solve this problem. You can either change apache to run as asterisk in in /etc/apache2/envvars or what I did:
- add www-data to asterisk group:
adduser www-data asterisk- change folder permissions:
chown www-data.asterisk -R /usr/share/asterisk- and add two additional lines at the end of /etc/amportal.conf file:
AMPASTERISKUSER=www-data
AMPASTERISKGROUP=asteriskDefault SQL Password Used
You are using the default SQL password that is widely known, you should set a secure password
This is just a warning message. I think it's just a matter of changing user name and password in /etc/amportal.conf and in mysql database (using phpMyAdmin for example). I'll post an update when I do that on mine.
No email address for online update checks
You are automatically checking for online updates nightly but you have no email address setup to send the results. This can be set on the General Tab. They will continue to show up here.
Go to "General Settings" on FreePBX GUI and:
either disable Check for Updates option or insert your e-mail address.
I hope this will help.