Cannot connect to FreePBX Website on my Asterisk anymore

Dear All really could use any input top this issue

Setup:

Asterisk 1.2
Debian 4.0
Apache 2
PHP 5
MySQL 5

Problem:

since yesterday evening i can connect to FreePBX interface anymore (all my other pages are working / Asterisk is working and i can make call in and out.

if i want to connect to the webpage it there is no error and if i check in the asterisk console i get hundreds of time the message:

== Parsing ‘/etc/asterisk/manager.conf’: Found
== Manager ‘admin’ logged on from 127.0.0.1
== Manager ‘admin’ logged off from 127.0.0.1
== Parsing ‘/etc/asterisk/manager.conf’: Found
== Manager ‘admin’ logged on from 127.0.0.1
== Manager ‘admin’ logged off from 127.0.0.1
== Parsing ‘/etc/asterisk/manager.conf’: Found
== Manager ‘admin’ logged on from 127.0.0.1
== Manager ‘admin’ logged off from 127.0.0.1

if i check in the apache2 error Log i get:
[Wed Dec 05 10:05:13 2007] [error] [client 10.44.xxx.xxx] user Admin not found: /html/admin/config.php
[Wed Dec 05 10:05:13 2007] [error] [client 10.44.xxx.xxx] user Admin not found: /html/admin/config.php
[Wed Dec 05 10:05:13 2007] [error] [client 10.44.xxx.xxx] user Admin not found: /html/admin/config.php

thanks
marco

Hi there,

I don’t know if you’re still having this problem, but I ran into exactly the same thing. Here’s how I fixed it, for posterity:

  1. Added an admin user to the wwpasswd file:

htpasswd /usr/local/apache/passwd/wwwpasswd admin

  1. Edited /etc/trixbox/httpdconf/trixbox.conf:

#Password protect /var/www/html/admin
<Directory /var/www/html/admin>
AuthType Basic
AuthName "Restricted Area"
AuthUserFile /usr/local/apache/passwd/wwwpasswd
Require user wwwadmin admin maint

I added the admin user to the access list. I don’t know why it wasn’t there or what happened to it.

  1. Restarted amportal:

amportal restart

  1. Restarted httpd (I’m using trixbox, so Centos is the OS)

service httpd restart

That worked, at last. It just stopped working today for no apparent reason.

Robyn