The Cisco 79XX Services Button – Web Interface
I wrote about this app in the past, you can view the video demo here. Now I have decided to share it with others -you can find the source here.
Here is how to install it (presuming you are using Trixbox):
- Copy the source to /var/www/html – untar it, the folder should be named services
- Create a database mysqladmin -u root -p create services
- cd services/
- mysql -u root -p services < services.sql
- nano system/application/config/database.php (match your Trixbox MySQL settings)
- nano system/application/config/config.php and change the base_url to your Trixbox IP address / services.
- chmod 777 -R /var/www/html/services/cisco
- chmod 777 -R /var/www/html/services/grandstream
That should do it, you can now visit http://trixbox-ip/services and begin adding contacts / RSS feed.
Links are provided at the bottom of the application to copy and paste into your phone configurations.
This app supports GXP2000 & Cisco 79XX IP Phones.




Hi,
Tried to download but the store says that the file no longer exists.
Jimmy
All fixed – thanks for the heads up!
This app looks cool. I tried to install, but end up with a blank page. Using it on a PiaF distro.
Thanks for your time, work and sharing.
First you guys are my saviours! App works perfectly. My problem is that it killed my webmin connection. Have you had this yet?
No issues with webmin, don’t know why that would happen, If you are getting a blank screen enable error debugging in php.ini.
This may also help :
1. (in /etc/php.ini): allow_call_time_pass_reference = On
2. yum install php-xml
3. service httpd restart
That is all I had to do to get this working in PiaF, enjoy.
@admin
No Dice!
Firefox can’t establish a connection to the server at 192.168.6.225:10000.
this is what I get. Not a blank page. Also has the new source on this been released?
@midinate
Also The program is working with this Trixbox. In that I can input data and it rewrites the files for grandstream. The phone doesn’t download it. I am using firmware 1.1.6.44
@midinate
My bad. On further review I was a dumbass and did not remove the gs_phonebook from the string.
Nice, glad it worked – expect some more cool things in the near future.
@admin
When are you guys releasing the updated Cisco services?
Development has been moved to asteristickies – I am attempting to modularize the whole app so you can choose only the modules you need as well as allow others to develop modules for it.
I may brew some tea and get started on it now.
@aster1sk
I see. Sounds cool!
How can I get a password to download the Asterisk Stickies
At the top of the page – click “Asterisk Stickies Installation”
The password is : aster1sk
Hi,
I tried to download, but it saids it’s no longer available.
David
All of this products features have been moved into Asteristickies!
Check out the asteristickies link at the top of the page – password : aster1sk
Hi,
I have installed it, but at first, it\\\’s giving me an error about the MySQL settings, I\\\’ve fixed it and then now it\\\’s giving me a 404 \\"The requested URL /phonebook/session was not found on this server.\\"
index.php redirected to session
Any idea?
Sure, first of all which distro are you running?
Also – Did you reload apache / amportal?
Were all of the system checks green?
Let me know.
I am running Elastix which is CentOS. And I did restart apache and amportal… Also I wasn’t able to get to the system check page because index.php is redirecting me to phonebook/session
Ahh yes – Elastix does not use the /etc/pbx/httpdconf/pbx.conf
Instead paste the following into /etc/httpd/conf.d/vhost.conf
(If the file doesn’t exist – feel free to create it)
<Directory /var/www/html/phonebook>
AllowOverride All
Allow from All
</Directory>
The you must restart apache :
/etc/init.d/httpd restart
Then visit your web UI and see how it goes.
The reason for this is asteristickies was developed for use with PiaF – but can be installed on pretty much anything. PiaF uses a custom httpd conf in /etc/pbx and Elastix / Trixbox do not.
Let me know how it goes!