<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-16463612</id><updated>2011-10-28T08:50:35.876+02:00</updated><title type='text'>A.S.T.R.A.</title><subtitle type='html'>Asterisk Server for Telephony and Routing Applications</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://asteriskpr.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16463612/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://asteriskpr.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Asterisk Parma</name><uri>http://www.blogger.com/profile/07499502442662528776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-16463612.post-113308783145604831</id><published>2005-11-27T11:37:00.000+01:00</published><updated>2006-01-28T12:49:25.230+01:00</updated><title type='text'>Progetto ASTRA</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/4311/1563/1600/astra5.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/4311/1563/320/astra5.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;ASTRA è un progetto nato dai lavori di tesi su Asterisk svolti presso il Laboratorio di Telecomunicazioni dell'Università di Parma.&lt;br /&gt;Al momento ne fanno parte:&lt;br /&gt;Cosimo Fadda&lt;br /&gt;Nicola Ghirardi&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16463612-113308783145604831?l=asteriskpr.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asteriskpr.blogspot.com/feeds/113308783145604831/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16463612&amp;postID=113308783145604831' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16463612/posts/default/113308783145604831'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16463612/posts/default/113308783145604831'/><link rel='alternate' type='text/html' href='http://asteriskpr.blogspot.com/2005/11/progetto-astra.html' title='Progetto ASTRA'/><author><name>Asterisk Parma</name><uri>http://www.blogger.com/profile/07499502442662528776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16463612.post-112614171575673316</id><published>2005-09-08T03:07:00.000+02:00</published><updated>2005-09-08T03:08:35.760+02:00</updated><title type='text'>Guide to install Web-MeetMe. by Ghirardi Nicola</title><content type='html'>&lt;span style="font-size:85%;"&gt;1. Download and extract Web-MeetMe gui in the root direcotry of your Web Server (usually /var/www/).  The actual version of the package is 1.3.3.  Run :&lt;br /&gt;wget http://www.fitawi.com/Asterisk/Web-MeetMe_v1.3.3.tgz&lt;br /&gt;As root run:&lt;br /&gt;cd /var/www/&lt;br /&gt;mv Web-MeetMe_v1.3.3.tgz /var/www/&lt;br /&gt;tar -xzf Web-MeetMe_v1.3.3.tgz&lt;br /&gt;mv Web-MeetMe web-meetme (it's not necessary, if you do this you'll have to edit the index.html file in the same folder in order to match the address)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. Edit the file Web-MeetMe/lib/defines.php in order to match the configuration of your system ( database configuration). Here is an  example of the configurable part of the file with some comment.&lt;br /&gt;&lt;br /&gt;define ("WEBROOT", "http://192.168.0.1/");&lt;br /&gt;// IP address of you asterisk server&lt;br /&gt;define ("FSROOT", "/var/www/Web-MeetMe/");&lt;br /&gt;// Absolute address of the folder where the package was extracted&lt;br /&gt;define ("LIBDIR", FSROOT."lib/");&lt;br /&gt;define ("HOST", "localhost");&lt;br /&gt;// Server alias&lt;br /&gt;define ("PORT", "3306"); &lt;br /&gt;// The standard port used by Asterisk is 3306&lt;br /&gt;define ("USER", "root");&lt;br /&gt;define ("PASS", "");&lt;br /&gt;// Username and password of your database.&lt;br /&gt;//Default password for mysql if it was installed by asterisk@home is&lt;br /&gt;//passw0rd, otherwise the default password for root user in a normal&lt;br /&gt;//mysql installation is empty (“”).&lt;br /&gt;// It's really dangerous use default password for an obvious security&lt;br /&gt; //issue.&lt;br /&gt;define ("DBNAME", "meetme");&lt;br /&gt;// Database name. Don't change if you want to follow this guide.&lt;br /&gt;define ("DB_TYPE", "mysql"); // mysql o postgres&lt;br /&gt;//This guide is for mysql but can easily be adaptable to postgresql.&lt;br /&gt;// Comment the following three lines if you don't want any kind of&lt;br /&gt;// authentication (every user can handle or delete the conference of&lt;br /&gt;// another user). The only authentication method supported by now is&lt;br /&gt;// based on an Active Directory Server.&lt;br /&gt;define ("AUTH_TYPE", "adLDAP"); // adLDAP or ""&lt;br /&gt;define ("ADMIN_GROUP", "Domain Admins");&lt;br /&gt;include (FSROOT."lib/".AUTH_TYPE.".php");&lt;br /&gt;// In order to configure your Active Directory Server parameters you&lt;br /&gt;// have to edit /lib/adLDAP.php&lt;br /&gt;define ("DB_TABLECDR", "cdr");&lt;br /&gt;define ("DB_TABLESCHED", "booking");&lt;br /&gt;// Name of two tables used by the program. Don't change if you don't&lt;br /&gt;//have any partucoular aim.&lt;br /&gt;&lt;br /&gt;3. Download and compile app_cbmysql in /usr/src/asterisk/apps or wherever you have the Asterisk source. Run as root:&lt;br /&gt;cd /usr/src/asterisk/apps&lt;br /&gt;wget http://www.fitawi.com/Asterisk/app_cbmysql.c&lt;br /&gt;Edit the Makefile in that folder using the patch www.fitawi.com/Asterisk/Makefile-cbmysql-patch.txt . Compile Asterisk : run make install in the Asterisk source directory (not the subdirectory apps!!!!). In this way you will compile only app_cbmysql.c and not all the other parts of Asterisk.&lt;br /&gt;&lt;br /&gt;Note: A comman error is:  /usr/bin/ld: cannot find -lpq. You can avoid this error installin the package postgresql-devel (or the equivalent of your distribution). You have to install it even if you will use mysql as database.&lt;br /&gt;&lt;br /&gt;4. Create the database meetme and the table booking folling the file www.fitawi.com/Asterisk/db-tables-v2.txt. Here is the sql code used to create the table.&lt;br /&gt;&lt;br /&gt;CREATE TABLE `booking` (&lt;br /&gt;`bookId` INT( 11 ) DEFAULT NULL NOT NULL AUTO_INCREMENT ,&lt;br /&gt;`clientId` INT( 11 ) DEFAULT '0' NOT NULL ,&lt;br /&gt;`roomNo` VARCHAR( 30 ) DEFAULT '0' NOT NULL ,&lt;br /&gt;`roomPass` VARCHAR( 30 ) DEFAULT '0' NOT NULL ,&lt;br /&gt;`silPass` VARCHAR( 30 ) DEFAULT '0' NOT NULL ,&lt;br /&gt;`startTime` DATETIME DEFAULT '0000-00-00 00:00:00' NOT NULL ,&lt;br /&gt;`endTime` DATETIME DEFAULT '0000-00-00 00:00:00',&lt;br /&gt;`dateReq` DATETIME DEFAULT '0000-00-00 00:00:00' NOT NULL ,&lt;br /&gt;`dateMod` DATETIME DEFAULT '0000-00-00 00:00:00' NOT NULL ,&lt;br /&gt;`maxUser` VARCHAR( 30 ) DEFAULT '10' NOT NULL ,&lt;br /&gt;`status` VARCHAR( 30 ) DEFAULT 'A' NOT NULL ,&lt;br /&gt;`confOwner` VARCHAR( 30 ) NOT NULL ,&lt;br /&gt;`confDesc` VARCHAR( 30 ) NOT NULL ,&lt;br /&gt;PRIMARY KEY ( `bookId` )&lt;br /&gt;);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5. Download cbmysql.conf and copy it in /etc/asterisk. Run:&lt;br /&gt;cd /etc/asterisk&lt;br /&gt;wget http://www.fitawi.com/Asterisk/cbmysql.conf&lt;br /&gt;Edit with your system parameters. A possible configuration is:&lt;br /&gt;[global]&lt;br /&gt;hostname=localhost&lt;br /&gt;dbname=meetme&lt;br /&gt;password=&lt;br /&gt;user=root&lt;br /&gt;port=3306&lt;br /&gt;// database port, the same used in defines.php&lt;br /&gt;sock=/var/run/mysqld/mysqld.sock&lt;br /&gt;//Where the used socket is. Default path is ok for red hat flavour while Debian (and his flavors like Ubuntu) has that file in &lt;br /&gt;/var/run/mysqld/mysqld.sock&lt;br /&gt;OptsAdm=dp&lt;br /&gt;OptsUsr=dp&lt;br /&gt;ConfApp=MeetMe&lt;br /&gt;ConfAppCount=MeetMeCount&lt;br /&gt;&lt;br /&gt;6. Edit  /etc/asterisk/manager.conf&lt;br /&gt;It's necessary to enable the global user and create the phpagi one if it's not already present adding this code:&lt;br /&gt;[phpagi]&lt;br /&gt;secret = phpagi&lt;br /&gt;deny=0.0.0.0/0.0.0.0&lt;br /&gt;permit=127.0.0.1/255.255.255.0&lt;br /&gt;read = system,call,log,verbose,command,agent,user&lt;br /&gt;write = system,call,log,verbose,command,agent,user&lt;br /&gt;It's dangerous to leave default password (in every cas). In order to chacge it you have to use the same password in manager.conf and in phpagi.conf in /etc/asterisk.&lt;br /&gt;If that file not exist you have to create it editing phpagi.example.conf in ../Web-MeetMe/phpagi/ .&lt;br /&gt;&lt;br /&gt;7.  Edit extensions.conf. You can add:&lt;br /&gt;        exten =&gt; 8600,1,Answer&lt;br /&gt;        exten =&gt; 8600,2,Wait(1)&lt;br /&gt;        exten =&gt; 8600,3,CBMysql()&lt;br /&gt;        exten =&gt; 8600,4,Hangup&lt;br /&gt;&lt;br /&gt;8.   Check if you have “register_globals = On” in php.ini and the line&lt;br /&gt;“extension=mysql.so” have to be not commented.&lt;br /&gt;&lt;br /&gt;9.Reload Asterisk.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16463612-112614171575673316?l=asteriskpr.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asteriskpr.blogspot.com/feeds/112614171575673316/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16463612&amp;postID=112614171575673316' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16463612/posts/default/112614171575673316'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16463612/posts/default/112614171575673316'/><link rel='alternate' type='text/html' href='http://asteriskpr.blogspot.com/2005/09/guide-to-install-web-meetm_112614171575673316.html' title='Guide to install Web-MeetMe. by Ghirardi Nicola'/><author><name>Asterisk Parma</name><uri>http://www.blogger.com/profile/07499502442662528776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16463612.post-112610795225074929</id><published>2005-09-07T17:45:00.000+02:00</published><updated>2006-01-28T12:44:33.296+01:00</updated><title type='text'>Modifica per Web-Meetme</title><content type='html'>Modifiche apportate al programma Web-MeetMe per farlo funzionare con una sorta di autenticazione fasulla.&lt;br /&gt;Unico neo: tratta tutti come admin.&lt;br /&gt;Da togliere quando si installarà un server Active Directory&lt;br /&gt;&lt;br /&gt;Sono state commentate le seguenti righe attorno alla riga 100 del file defines.php nella directory /var/www/web-meetme/libs :&lt;br /&gt;&lt;br /&gt;$adldap = new adLDAP();&lt;br /&gt;&lt;br /&gt;if ($adldap -&gt; authenticate($user,$password)){&lt;br /&gt;&lt;br /&gt;if ($adldap -&gt; user_ingroup($user, ADMIN_GROUP)){&lt;br /&gt;&lt;br /&gt;e le due graffe di chiusura dei cicli.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16463612-112610795225074929?l=asteriskpr.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asteriskpr.blogspot.com/feeds/112610795225074929/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16463612&amp;postID=112610795225074929' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16463612/posts/default/112610795225074929'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16463612/posts/default/112610795225074929'/><link rel='alternate' type='text/html' href='http://asteriskpr.blogspot.com/2005/09/modifica-per-web-meetme.html' title='Modifica per Web-Meetme'/><author><name>Asterisk Parma</name><uri>http://www.blogger.com/profile/07499502442662528776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-16463612.post-112610180115613360</id><published>2005-09-07T16:02:00.000+02:00</published><updated>2005-09-07T16:03:21.160+02:00</updated><title type='text'>prova</title><content type='html'>Siamo online!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/16463612-112610180115613360?l=asteriskpr.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://asteriskpr.blogspot.com/feeds/112610180115613360/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=16463612&amp;postID=112610180115613360' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/16463612/posts/default/112610180115613360'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/16463612/posts/default/112610180115613360'/><link rel='alternate' type='text/html' href='http://asteriskpr.blogspot.com/2005/09/prova.html' title='prova'/><author><name>Asterisk Parma</name><uri>http://www.blogger.com/profile/07499502442662528776</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
