martes, 19 de noviembre de 2024

changing vicidial recording link

 

Edit   user_stats.php  (https://github.com/inktel/Vicidial/blob/master/www/vicidial/user_stats.php)


     $location_public = str_replace("172.31.82.237", "dialer.1callclosers.com", $location); // changed added for change recs addresss amb.

                $MAIN.="<td align=left><font size=2> $row[4] </td>\n";

                $MAIN.="<td align=left><font size=2> $row[8] </td>\n";

                $MAIN.="<td align=left><font size=2> $row[0] </td>\n";

                $MAIN.="<td align=center><font size=2> $row[10] </td>\n";

                //$MAIN.="<td align=right><font size=2>  $location &nbsp; </td>\n";

                    $MAIN.="<td align=right><font size=2>  $location_public &nbsp; </td>\n";




apply  permissions for avoid 403 errors


 chmod 755 /var/spool/asterisk

viernes, 15 de noviembre de 2024

vicidial holliday


Postby mflorell » Mon Oct 26, 2009 9:18 am

There is currently no holiday function in ViciDial. You can just change the call times scheme to change the hours up to 6 days in advance.

 
https://vicidial.org/VICIDIALforum/viewtopic.php?t=9381




Re: Holiday definitions for temporarily closing

Postby mflorell » Fri Oct 12, 2018 9:35 am

The only workaround for that is to use crontab entries with SQL to alter a call time and then alter it back at those times.

Opening, or operating, times are not able to have two active time periods in the same day.
http://www.eflo.net/VICIDIALforum/viewtopic.php?f=4&t=38807

miércoles, 23 de octubre de 2024

Install viciphone and change default registration time

 1 cd /srv/www/htdocs/


2 git clone https://github.com/vicimikec/ViciPhone.git

3 nano /srv/www/htdocs/ViciPhone/src/js/sip.js

3 Change Registerer.defaultExpires from 600 to 3200:



4 Registerer.defaultExpires = 3200;

5 Update the Webphone URL: https://ambiorixg12-dialer.ddns.net/Vic ... iphone.php

6 Check the SIP registration logs to verify if the new registration expiration time has taken effect.

[Oct 23 11:20:24] Contact: <sip:9cc82b9h@192.0.2.186;transport=wss>;expires=3200
[/list]
[/i]

o far, everything look

jueves, 4 de enero de 2024

Re: Too many login attempts

 


Re: Too many login attempts

Postby blackbird2306 » Mon Oct 14, 2019 12:10 pm

Why don't you wait and try it 15 minutes later? If you don't want to wait this time you can unlock the user (6666) by typing this in linux cli:
CODE: SELECT ALL
mysql -D asterisk -e 'UPDATE `vicidial_users` SET `failed_login_count` = "0" WHERE `user` = "6666";'

and if you have forgotten the password for a certain user, you can change the password by this line:
CODE: SELECT ALL
mysql -D asterisk -e 'UPDATE `vicidial_users` SET `pass` = "HERENEWPASSWORD" WHERE `user` = "6666";'