Search (advanced search) | ||||
Use this Search form before posting, asking or make a new thread.
|
12-01-2014, 01:15 AM
Post: #41
|
|||
|
|||
RE:
Can anyone confirm this same problem that I've had with every version shared here. First this version shared solved the blank csv and graph not working which is completely awesome.
On the flip side when you click on the date and time stamp of a call from incoming call section it takes you to the map where you can see where the call came from and you can add a note or email the call link to the an email address. When I attempt to email the email fails and never sends with this I notice too that invoice emails are not being sent via billing either. My smtp is set correctly and connects but no emails are sent. Anyone else facing this issue? |
|||
12-01-2014, 01:33 AM
(This post was last modified: 12-01-2014 08:41 AM by PMedia.)
Post: #42
|
|||
|
|||
RE:
2.5 latest version working all normal and all files i have is decoded and still working all normaly. I will try this version and later posted the feedback. Ratzazz thak you for share!
|
|||
12-04-2014, 06:06 AM
Post: #43
|
|||
|
|||
RE:
Hey do you guys think we could get an updated mirror with the changes that have been made?
|
|||
12-04-2014, 10:27 AM
Post: #44
|
|||
|
|||
RE:
(12-04-2014 06:06 AM)mrtick Wrote: Hey do you guys think we could get an updated mirror with the changes that have been made? . You need to be more specific. What "changes that have been made" exactly are you talking about? Around 65% of the mirrors still work. Do your part! RA . .
.
~ ~ ~ ~ ~ ~ BBHF IS THE BEST! ~ ~ ~ ~ ~ ~ . |
|||
12-05-2014, 12:52 AM
(This post was last modified: 12-05-2014 12:53 AM by chikfilet.)
Post: #45
|
|||
|
|||
RE:
I don't want to keep beating a dead bush here. I really need some help on this to narrow down if its a script problem or a server problem. All errors point to a script problem but if its working for you then maybe you can help cross reference the issues I'm having.
Everything works but sending emails from within the script don't. I can't send call details within the script and billing emails don't get sent out either. This is the only error I get but its encoded and I don't have the means to decode it. 1 i don't know which software to use or how to begin. Code: [Thu Dec 04 14:22:37 2014] [error] [client my ip] mod_fcgid: stderr: PHP Notice: Undefined variable: is_popout_dialer in /home/www/mydomain/tracking/include/css.php(3) : eval()'d code on line 118 Thanks in advance just in case I get busy between now and a solution. |
|||
12-05-2014, 01:40 AM
(This post was last modified: 12-05-2014 01:42 AM by PMedia.)
Post: #46
|
|||
|
|||
RE:
I have it also this issues i fixed check what you have inside php code if is correct open or closed <?php ?> sometimes is inside the code witch is not correct to be when you decode file..
|
|||
12-05-2014, 01:41 AM
Post: #47
|
|||
|
|||
RE:
(12-05-2014 12:52 AM)chikfilet Wrote: I don't want to keep beating a dead bush here. I really need some help on this to narrow down if its a script problem or a server problem. All errors point to a script problem but if its working for you then maybe you can help cross reference the issues I'm having.Hey mate, i noticed you have been having some issues with the script. It works fine for me. So i am guessing it could be a server issue. I am not sure though, i am using a smtp provider for the email transactions. What are you using? Provide me some more details and i might be able to offer some help. |
|||
12-05-2014, 03:44 AM
Post: #48
|
|||
|
|||
RE:
(12-05-2014 01:40 AM)iSimon Wrote: I have it also this issues i fixed check what you have inside php code if is correct open or closed <?php ?> sometimes is inside the code witch is not correct to be when you decode file..I have been unsuccessful at decoding the file to edit it can you assist me on this? |
|||
12-05-2014, 03:54 AM
Post: #49
|
|||
|
|||
RE:
(11-20-2014 04:14 AM)DNS01 Wrote:Can you share your files? Please!(11-20-2014 03:17 AM)gash Wrote: DNS01....do you have it working properly with the changes you made?Yeah mate, it's working smooth. No errors whatsoever. I also added a bit of my own script to it. So i am kind of offering the same as whitelabelled panel to my clients. So you have a registration form. Once you fill it up and pay the fee, it installs my own custom branded script on my subdomain for the users. Working smooth for me. |
|||
12-05-2014, 04:29 AM
Post: #50
|
|||
|
|||
RE:
If you have in line 1 between this code <?php global $build_number, $lcl; any characters remove it.. Must be like this..
line 1 do line 12 when you close php.. <?php global $build_number, $lcl; $today_ = new DateTime('now'); if ($build_number == "[[build_number]]") $build_number = $today_->format("U"); if (!isset($_SESSION)): @session_start(); endif; if (isset($_SESSION['user_id']) and& isset($_SESSION['sel_co']) and& $lcl >= 2) { if ($db->checkAddonAccess($_SESSION['user_id'], 10003) || $db->isUserAdmin($_SESSION['user_id'])) { require 'twilio_header.php'; } } ?> |
|||