hi Karel,<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; thanx 4 your response.<br> But still i have the same problem, when i type&nbsp; the "Pear install db" it gives the messege&nbsp; "Package 'DB' already installed, skipping" .<br> <br> My serweb directory is at the path&nbsp; /var/www/html/serweb in fedoracore4, when i&nbsp; type http://localhost/users in the browser , i get's this messege.<br> <div>"The requested URL /users was not found on this server."<br> </div> <div>even i configured the ./config&nbsp;&nbsp; file.according to instructions.<br> </div> <div>If i makes any file with .php extension and puts that file in the html root it works properly....I am surprised...plz hep me solve this problem...<br> M.F.B<br> </div> <br><b><i>Karel Kozlik &lt;karel@iptel.org&gt;</i></b> wrote:<blockquote class="replbq" style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;"> PEAR is extension repository for php. See
 http://pear.php.net/<br>Yes you have to install it. I don't know the how-to bellow, but it seems <br>very obsoleted. Why you do not follow oficial installing instructions <br>included in serweb in INSTALL file?<br><br>And please use mailing list for next questions.<br><br>Karel<br><br><br>fay butt napsal(a):<br>&gt; hi,<br>&gt;    sorry, I don't know exectly what is peer?...I have to install it <br>&gt; seperatly?...i just followed these instructions..... you can check what <br>&gt; paths i am using...thanx again<br>&gt; <br>&gt; <br>&gt;     Step by Step Installation of WEBSER on RedHad Fedora Core 1<br>&gt; <br>&gt; When the original distribution is installed the directory locations do <br>&gt; not match up with the typical apache file locations. These notes <br>&gt; document all the changes needed. SUGGESTION: For the Tutorial we should <br>&gt; develop a new install TAR so delegates do not spend 30 minutes editing <br>&gt; all the files.<br>&gt;  <br>&gt; <br>&gt;    
 * Get the TAR, un-tar and place the files in the right directory<br>&gt;           o<br>&gt;             from SER <http:> or from this server<br>&gt;             <http:><br>&gt;           o<br>&gt;             untar<br>&gt;             *tar -xvzf serweb_2004-01-04.tar.gz*<br>&gt;           o change directory to where the files were untared to<br>&gt;             *cd serweb_2004-01-04*<br>&gt;           o<br>&gt;             Create the directory and move the files there<br>&gt;             *mkdir /var/www/phplib<br>&gt;             chown root /var/www/phplib<br>&gt;             chgrp root /var/www/phplib<br>&gt;             chmod 755 /var/www/phplib<br>&gt;             cp ./phplib/* /var/www/phplib/ -R *<br>&gt;           o<br>&gt;             # Move the html files to the DocumentRoot directory<br>&gt;             *mkdir /var/www/html/serweb/<br>&gt;             chown apache /var/www/html/serweb/<br>&gt;             chgrp root /var/www/html/serweb/<br>&gt;             chmod
 755 /var/www/html/serweb/<br>&gt;             cp ./html/* /var/www/html/serweb -R*<br>&gt;     * edit these lines in */etc/php.ini*<br>&gt;       and change short_open_tag = Off" to "On"<br>&gt;       and change register_globals = Off" to "On"<br>&gt;     *<br>&gt;       Create these files as part of the serweb module.<br>&gt;       vi /var/www/html/serweb/prolog.html<br>&gt;       </http:></http:><h1>AARNet SER SIP Server</h1><br>&gt; <br>&gt;       vi /var/www/html/serweb/separator.html<br>&gt;       <hr><br>&gt; <br>&gt;       vi /var/www/html/serweb/epilog.html<br>&gt;       <h1>End of page text</h1><br>&gt;     * ALL the files that follw are with respect to /var/www/html/serweb<br>&gt;       cd /var/www/html/serweb<br>&gt; <br>&gt;     * edit these lines in ./config.php<br>&gt; <br>&gt;       In general replace all 192.168.2.16 with 192.94.63.28<br>&gt; <br>&gt;       #If you have changed the mysql username, dbname or password you<br>&gt;       need to change
 these:<br>&gt;       $this-&gt;db_name="ser"; //database name<br>&gt;       $this-&gt;db_user="ser"; //database conection user<br>&gt;       $this-&gt;db_pass="heslo"; //database conection password<br>&gt;       # NOTE: The above relate to the mysql database, see<br>&gt;       /usr/sbin/ser_mysql.sh.<br>&gt; <br>&gt;       $this-&gt;root_path="/serweb/";<br>&gt;       #The above must match where the serweb html directory is put<br>&gt; <br>&gt;       this-&gt;user_pages_path = this-&gt;root_path."user*_interface*/";<br>&gt; <br>&gt;       $this-&gt;prolog="/serweb/prolog.html";<br>&gt;       $this-&gt;separator="/serweb/separator.html";<br>&gt;       $this-&gt;epilog="/serweb/epilog.html";<br>&gt;       # /* email address for questions concerning registration */<br>&gt; <br>&gt;       $this-&gt;root_uri.$this-&gt;root_path."user*_interface*/my_account.php?#session#\n\n".<br>&gt;      
 $this-&gt;root_uri.$this-&gt;root_path."user_*interface*/reg/confirmation.php?nr=#confirm#\n\n".<br>&gt; <br>&gt; <br>&gt;       # There is heaps more to customise in this file which we will<br>&gt;       leave to the user. These include more email references<br>&gt;       # and text used in emails to users who register. Here are some<br>&gt;       example which do not need to be changed for this tutorial:<br>&gt;       $this-&gt;mail_header_from="Stephen.Kingham@aarnet.edu.au";<br>&gt;       $this-&gt;web_contact="sip:Stephen.Kingham@aarnet.edu.au";<br>&gt;       $this-&gt;title="The AARNet IP Telephony Site";<br>&gt;       $this-&gt;infomail = "Stephen.Kingham@aarnet.edu.au";<br>&gt;       $this-&gt;regmail = "Stephen.Kingham@aarnet.edu.au";<br>&gt; <br>&gt; <br>&gt;     * Edit /var/www/phplib/db_mysql.inc<br>&gt;       # You need to add the following to /* public: connection parameters */<br>&gt;       var $Host = "192.94.63.28";<br>&gt;       var $Database =
 "ser";<br>&gt;       var $User = "ser";<br>&gt;       var $Password = "heslo";<br>&gt; <br>&gt; The follwoing changes can be applied two ways:<br>&gt; 1. Get and extract this tar file  <br>&gt; get the file fixupserwebphp.tar <br>&gt; <http:> <br>&gt; from this server<br>&gt; put it in the directory /usr/local/src/ser<br>&gt; issue these commands<br>&gt; cd /var/www/html/serweb<br>&gt; tar -xvf fixupserwebphp.tar<br>&gt; *OR*   <br>&gt; 2. Manualy make all these changes  <br>&gt; Generaly you have to add "../" to all these files so that they point <br>&gt; correctly to where the phplib is.<br>&gt; <br>&gt;     *<br>&gt;       Edit ./admin/prepend.php<br>&gt;       # change $_PHPLIB["libdir"] = "*../*../../phplib/";<br>&gt;     * Edit ./user_interface/prepend.php<br>&gt;       # change $_PHPLIB["libdir"] = "*../*../../phplib/";<br>&gt;     * Edit ./user_interface/reg/prepend.php<br>&gt;       # change $_PHPLIB["libdir"] = "*../*../../../phplib/";<br>&gt;     * Edit
 ./admin/acl.php<br>&gt;       # change require "*../*../../phplib/oohforms.inc";<br>&gt;     * Edit ./admin/index.php<br>&gt;       # require "*../*../../../phplib/oohforms.inc";<br>&gt;     * Edit ./admin/users.php<br>&gt;       # require "*../*../../../phplib/oohforms.inc";<br>&gt;     * Edit ./user_interface/accounting.php<br>&gt;       # require "*../*../../../phplib/oohforms.inc";<br>&gt;     * Edit ./user_interface/find_user.php<br>&gt;       # require "*../*../../../phplib/oohforms.inc";<br>&gt;     * Edit ./user_interface/index.php<br>&gt;       # require "*../*../../phplib/oohforms.inc";<br>&gt;     * Edit ./user_interface/missed_calls.php<br>&gt;       # require "*../*../../phplib/oohforms.inc";<br>&gt;     * Edit ./user_interface/my_account.php<br>&gt;       # require "*../*../../phplib/oohforms.inc";<br>&gt;     * Edit ./user_interface/phonebook.php<br>&gt;       # require "*../*../../phplib/oohforms.inc";<br>&gt;     * Edit ./user_interface/send_im.php<br>&gt;
       # require "*../*../../phplib/oohforms.inc";<br>&gt;     * Edit ./user_interface/notification_subscription.php<br>&gt;       # require "*../*../../phplib/oohforms.inc";<br>&gt;     * Edit ./user_interface/reg/finish.php<br>&gt;       # require "*../*../../../phplib/oohforms.inc";<br>&gt;     * Edit ./user_interface/reg/get_pass.php<br>&gt;       # require "*../*../../../phplib/oohforms.inc";<br>&gt;     * Edit ./user_interface/reg/index.php<br>&gt;       # require "*../*../../../phplib/oohforms.inc";<br>&gt; <br>&gt;  <br>&gt; LAST STEP: START APACHE<br>&gt; /etc/rc.d/init.d/httpd start<br>&gt; <br>&gt; Plz, help me about that....<br>&gt; Best regards<br>&gt; <br>&gt; <br>&gt; <br>&gt; <br>&gt; <br>&gt; */Karel Kozlik <karel @iptel.org="">/* wrote:<br>&gt; <br>&gt;      &gt;<br>&gt;      &gt; What kind of errors are you facing? Me, I am having trouble finding<br>&gt;      &gt; DB.php (this file comes with PEAR).<br>&gt; <br>&gt;     Hi,<br>&gt;     it seems PEAR is
 not installed correctly. Check the 'include_path'<br>&gt;     directive in your php.ini if contain path to dir where PEAR is<br>&gt;     installled.<br>&gt; <br>&gt;     Karel<br>&gt; <br>&gt; <br>&gt;     _______________________________________________<br>&gt;     Serusers mailing list<br>&gt;     serusers@lists.iptel.org<br>&gt;     http://lists.iptel.org/mailman/listinfo/serusers<br>&gt; <br>&gt; <br>&gt; ------------------------------------------------------------------------<br>&gt; Yahoo! Messenger with Voice. <br>&gt; <http: //us.rd.yahoo.com/mail_us/taglines/postman3/*http://us.rd.yahoo.com/evt="39666/*http://beta.messenger.yahoo.com"> <br>&gt; PC-to-Phone calls for ridiculously low rates.<br></http:></karel></http:></blockquote><br><p>
                <hr size=1>New Yahoo! Messenger with Voice. <a href="http://us.rd.yahoo.com/mail_us/taglines/postman5/*http://us.rd.yahoo.com/evt=39666/*http://beta.messenger.yahoo.com">Call regular phones from your PC</a> and save big.