Member
Last active 14 years ago
From what I can see the atxfer AMI command is included by default on 1.6.1 and not 1.6.0 if this is right you would have to patch it in as I read that FOP2 will try do attended transfers on 1.6 versions. Maybe you could ask Andrew to add it into Trixbox 2.8.
Can Fop2 do assisted transfers? If not then that would get my vote.
Edit fop2/lib/dbgrid.php
Find:
private $allow_export=true;
Add under:
private $allow_import=true;
Find:
if ($this->allow_export) { $req=$this->set_request('dbgrid_action','csv',false); if($sep==1) { $buttons.=" <div class='btnseparator'></div>"; } $buttons.=" <div class='fbutton'> <span class='tbImgLink icon_export'> </span> <span class='btnText' onclick='javascript:location=\"".SELF.$req."\"'>".trans('Export')."</span> </div> "; $sep=1; }
Add Above:
if ($this->allow_import) { $req=$this->set_request('dbgrid_action','csv',false); if($sep==1) { $buttons.=" <div class='btnseparator'></div>"; } $buttons.=" <div class='fbutton'> <span class='tbImgLink icon_export'> </span> <span class='btnText' onclick='javascript:location=\"import.php\"'>".trans('Import')."</span> </div> "; $sep=1; }
Save and upload
Upload import.php to the fop2 root dir
Upload output.sql to the fop2 root dir and CHMOD 777
Update phonebook.csv with your names, numbers, etc etc and upload to fop2 root dir
Login to fop2 and click Visual Phonebook then import and all should be done.
[url=http://domain1647423.sites.fasthosts.com/csvimport.zip:fypvwofn]Download Files[/url:fypvwofn]
I'll have a look once I complete my Cisco XML Services, been a while since I've touched php and MySQL, I'm a ASP.NET and MS SQL guy :lol:
I suggested this a while back(import CSV) so I'm not sure if Nicolas is intending to add this in a later version, my suggestion also included a "Import Field Map" so you don't have to change the CVS headers before Importing
firstname -> first_name
lastname -> second_name
phone1 -> home_phone
phone2 -> mobile_number
etc etc
Not sure what the error is so hopefully Nicolas will be about soon but I wouldn't put it in the sip.conf as this will get over written by freePBX sooner or later, pop it into the sip_custom.conf
I'm guessing that your "#exec autoconfig-users-freepbx.sh" is overwriting your users with the freepbx ones try commenting that line out, restart fop2 and then try login to the panel again
Hi,
1st request;
CSV import for the Visual Phonebook and maybe a import field map i.e.
firstname <- first_name
lastname <- last_name
phone1 <- homephone
etc etc
2nd request;
Set "CALLER NAME" on transfer, my thinking behind this is
3rd request;
The ability to only show "CALLER NAME" (if it has one) and when you hover the "CALLER NAME" it would display the number.I've found that, if it has both, it seems to knock the layout off in IE7/IE8 as it adds a new line e.g
Line 1: John Doe 00:05:23 012345678944 ------------------------------------- Line 2: Inactive
Hope this all makes sense, if not just let me know and I will try elaborating more on each one