<div dir="ltr">Hi Guys,<div><br></div><div>I am having an issue with blank module list screens (module=XXXXX&view=list).</div><div>It doesn't seem to be a permission issues and I am not getting any errors.</div><div><br></div><div>Any suggestions/help would be greatly appreciated.<br><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature"><div dir="ltr"><div class="gmail_signature"><div dir="ltr"><div>
      <p style="font-family:Helvetica,Arial,sans-serif;font-size:12px;line-height:14px"><span style="font-family:Helvetica;font-size:medium">Met
          vriendelijke groet/Kind regards,</span></p>
      <p style="font-family:Helvetica,Arial,sans-serif;font-size:12px;line-height:14px"></p>
      <p style="font-family:Helvetica,Arial,sans-serif;font-size:12px;line-height:14px"><span style="color:rgb(153,153,153);font-weight:bold">Mike
          van Egmond</span><br></p></div></div></div></div></div></div><div class="gmail_quote">2015-05-14 5:34 GMT+02:00  <span dir="ltr"><<a href="mailto:vtigercrm-developers-request@lists.vtigercrm.com" target="_blank">vtigercrm-developers-request@lists.vtigercrm.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Send vtigercrm-developers mailing list submissions to<br>
        <a href="mailto:vtigercrm-developers@lists.vtigercrm.com">vtigercrm-developers@lists.vtigercrm.com</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://lists.vtigercrm.com/cgi-bin/mailman/listinfo/vtigercrm-developers" target="_blank">http://lists.vtigercrm.com/cgi-bin/mailman/listinfo/vtigercrm-developers</a><br>
<br>
or, via email, send a message with subject or body 'help' to<br>
        <a href="mailto:vtigercrm-developers-request@lists.vtigercrm.com">vtigercrm-developers-request@lists.vtigercrm.com</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:vtigercrm-developers-owner@lists.vtigercrm.com">vtigercrm-developers-owner@lists.vtigercrm.com</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of vtigercrm-developers digest..."<br>
<br>
<br>
Today's Topics:<br>
<br>
   1. vtws_query does not return any result. (deamen)<br>
   2. Re: Charts on the dashboard (Hamono, Chris (DPC))<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Wed, 13 May 2015 20:02:08 -0700 (PDT)<br>
From: deamen <<a href="mailto:deamen@gmail.com">deamen@gmail.com</a>><br>
To: <a href="mailto:vtigercrm-developers@lists.vtigercrm.com">vtigercrm-developers@lists.vtigercrm.com</a><br>
Subject: [Vtigercrm-developers] vtws_query does not return any result.<br>
Message-ID: <<a href="mailto:1431572528520-16230.post@n4.nabble.com">1431572528520-16230.post@n4.nabble.com</a>><br>
Content-Type: text/plain; charset=us-ascii<br>
<br>
Hi All,<br>
I am trying to use vtws_query to inquiry the database but with out any<br>
success. I am using the following code:<br>
include_once 'include/Webservices/Utils.php';<br>
include_once 'include/Webservices/Query.php';<br>
$current_user = CRMEntity::getInstance('Users');<br>
$current_user->retrieveCurrentUserInfoFromFile(1);<br>
try {<br>
        $q = "SELECT * FROM Leads WHERE lastname LIKE '%NA%'";<br>
        $q = $q . ';'; // NOTE: Make sure to terminate query with ;<br>
        $records = vtws_query($q, $current_user);<br>
        echo "1:";<br>
        print_r($records);<br>
<br>
} catch (WebServiceException $ex) {<br>
        echo $ex->getMessage();<br>
}<br>
<br>
The $records is always NULL.<br>
I did some debug, it seems the code was terminated in function<br>
return_application_language() inside /include/utils/utils.php.<br>
The procedure is: vtws_query() -> vtws_listtypes() -><br>
return_application_language().<br>
And return_application_language() is calling<br>
return_app_list_strings_language($language) which is defined in<br>
/vtlib/Vtiger/Deprecated.php.<br>
<br>
Can anyone advise me what did I do wrong?<br>
Thanks<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://vtiger-crm.2324883.n4.nabble.com/vtws-query-does-not-return-any-result-tp16230.html" target="_blank">http://vtiger-crm.2324883.n4.nabble.com/vtws-query-does-not-return-any-result-tp16230.html</a><br>
Sent from the vtigercrm-developers mailing list archive at Nabble.com.<br>
<br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Thu, 14 May 2015 13:04:39 +0930<br>
From: "Hamono, Chris (DPC)" <<a href="mailto:Chris.Hamono@sa.gov.au">Chris.Hamono@sa.gov.au</a>><br>
To: "<a href="mailto:vtigercrm-developers@lists.vtigercrm.com">vtigercrm-developers@lists.vtigercrm.com</a>"<br>
        <<a href="mailto:vtigercrm-developers@lists.vtigercrm.com">vtigercrm-developers@lists.vtigercrm.com</a>><br>
Subject: Re: [Vtigercrm-developers] Charts on the dashboard<br>
Message-ID:<br>
        <<a href="mailto:6CC78B54517348498CB1E58845C8F3D13620A65842@EMSCM005.sagemsmrd01.sa.gov.au">6CC78B54517348498CB1E58845C8F3D13620A65842@EMSCM005.sagemsmrd01.sa.gov.au</a>><br>
<br>
Content-Type: text/plain; charset="utf-8"<br>
<br>
It may be that the issue is related to my version of PHP (5.5.12)<br>
<br>
According to the requirements for Yetiforce some things must be turned on which are no longer available<br>
<br>
allow_call_time_pass_reference: on  < == No longer available<br>
short_open_tag: On < == not a good idea. Short open tags cause issues<br>
<br>
Anyway I have spent half a day trying to get it to work. It even changed my language to polish so I am giving up.<br>
<br>
So getting charts to work on the dashboard would be nice?.<br>
<br>
<br>
From: <a href="mailto:vtigercrm-developers-bounces@lists.vtigercrm.com">vtigercrm-developers-bounces@lists.vtigercrm.com</a> [mailto:<a href="mailto:vtigercrm-developers-bounces@lists.vtigercrm.com">vtigercrm-developers-bounces@lists.vtigercrm.com</a>] On Behalf Of Hamono, Chris (DPC)<br>
Sent: Thursday, 14 May 2015 12:26 PM<br>
To: <a href="mailto:vtigercrm-developers@lists.vtigercrm.com">vtigercrm-developers@lists.vtigercrm.com</a><br>
Subject: Re: [Vtigercrm-developers] Charts on the dashboard<br>
<br>
I have two installs on my windows dev box (running latest WAMP)<br>
<br>
Vtiger (heavily developed)<br>
Yetiforce (fresh clean install)<br>
<br>
Vtiger is snappy<br>
Yetiforce doesn?t want to play<br>
<br>
Not sure why.<br>
<br>
Am about to reboot my system to see if it has caught a cold<br>
<br>
Chris<br>
<br>
From: <a href="mailto:vtigercrm-developers-bounces@lists.vtigercrm.com">vtigercrm-developers-bounces@lists.vtigercrm.com</a><mailto:<a href="mailto:vtigercrm-developers-bounces@lists.vtigercrm.com">vtigercrm-developers-bounces@lists.vtigercrm.com</a>> [mailto:<a href="mailto:vtigercrm-developers-bounces@lists.vtigercrm.com">vtigercrm-developers-bounces@lists.vtigercrm.com</a>] On Behalf Of Stacey Johnson<br>
Sent: Thursday, 14 May 2015 11:51 AM<br>
To: <a href="mailto:vtigercrm-developers@lists.vtigercrm.com">vtigercrm-developers@lists.vtigercrm.com</a><mailto:<a href="mailto:vtigercrm-developers@lists.vtigercrm.com">vtigercrm-developers@lists.vtigercrm.com</a>><br>
Subject: Re: [Vtigercrm-developers] Charts on the dashboard<br>
<br>
Dont know Windows but linux works like charm here. old code mess has been improved from what I can see and read on git<br>
<br>
Stacey<br>
<br>
On Thu, May 14, 2015 at 7:53 AM, Hamono, Chris (DPC) <<a href="mailto:Chris.Hamono@sa.gov.au">Chris.Hamono@sa.gov.au</a><mailto:<a href="mailto:Chris.Hamono@sa.gov.au">Chris.Hamono@sa.gov.au</a>>> wrote:<br>
Thanks<br>
<br>
I have installed yetiforce and tried it on my local windows machine<br>
<br>
The first thing that struck me was how slow it is.<br>
<br>
Unfortunately it still shares much of the very poor coding that is inherent in vtiger.<br>
<br>
Chris<br>
<br>
From: <a href="mailto:vtigercrm-developers-bounces@lists.vtigercrm.com">vtigercrm-developers-bounces@lists.vtigercrm.com</a><mailto:<a href="mailto:vtigercrm-developers-bounces@lists.vtigercrm.com">vtigercrm-developers-bounces@lists.vtigercrm.com</a>> [mailto:<a href="mailto:vtigercrm-developers-bounces@lists.vtigercrm.com">vtigercrm-developers-bounces@lists.vtigercrm.com</a><mailto:<a href="mailto:vtigercrm-developers-bounces@lists.vtigercrm.com">vtigercrm-developers-bounces@lists.vtigercrm.com</a>>] On Behalf Of Phasaphon Kwanrutai<br>
Sent: Wednesday, 13 May 2015 2:56 PM<br>
To: <a href="mailto:vtigercrm-developers@lists.vtigercrm.com">vtigercrm-developers@lists.vtigercrm.com</a><mailto:<a href="mailto:vtigercrm-developers@lists.vtigercrm.com">vtigercrm-developers@lists.vtigercrm.com</a>><br>
<br>
Subject: Re: [Vtigercrm-developers] Charts on the dashboard<br>
<br>
Instead of dreaming of ripping of vtiger online version have a look here: <a href="https://github.com/YetiForceCompany/YetiForceCRM/blob/master/README.md" target="_blank">https://github.com/YetiForceCompany/YetiForceCRM/blob/master/README.md</a><br>
Amazing solutions implemented in OS. Load of functionalities you normally have to pay for here (with fear that your data is not really safe as suppose to be). No need to beg for few lines of code...go and get it :-)<br>
Phasap<br>
<br>
On Wed, May 13, 2015 at 6:39 AM, Hamono, Chris (DPC) <<a href="mailto:Chris.Hamono@sa.gov.au">Chris.Hamono@sa.gov.au</a><mailto:<a href="mailto:Chris.Hamono@sa.gov.au">Chris.Hamono@sa.gov.au</a>>> wrote:<br>
Hmm<br>
<br>
Rather than start from scratch wouldn?t it be better if I started from whatever was done for the online version?<br>
<br>
Chris<br>
<br>
From: <a href="mailto:vtigercrm-developers-bounces@lists.vtigercrm.com">vtigercrm-developers-bounces@lists.vtigercrm.com</a><mailto:<a href="mailto:vtigercrm-developers-bounces@lists.vtigercrm.com">vtigercrm-developers-bounces@lists.vtigercrm.com</a>> [mailto:<a href="mailto:vtigercrm-developers-bounces@lists.vtigercrm.com">vtigercrm-developers-bounces@lists.vtigercrm.com</a><mailto:<a href="mailto:vtigercrm-developers-bounces@lists.vtigercrm.com">vtigercrm-developers-bounces@lists.vtigercrm.com</a>>] On Behalf Of Uma S<br>
Sent: Tuesday, 12 May 2015 3:23 PM<br>
<br>
To: vtigercrm-developers<br>
Subject: Re: [Vtigercrm-developers] Charts on the dashboard<br>
<br>
Hi,<br>
<br>
You can share an patch with us through trac ticket, which will be reviewed and integrated for release.<br>
<br>
On Tue, May 12, 2015 at 11:09 AM, Hamono, Chris (DPC) <<a href="mailto:Chris.Hamono@sa.gov.au">Chris.Hamono@sa.gov.au</a><mailto:<a href="mailto:Chris.Hamono@sa.gov.au">Chris.Hamono@sa.gov.au</a>>> wrote:<br>
Can I help?<br>
<br>
Chris<br>
<br>
From: <a href="mailto:vtigercrm-developers-bounces@lists.vtigercrm.com">vtigercrm-developers-bounces@lists.vtigercrm.com</a><mailto:<a href="mailto:vtigercrm-developers-bounces@lists.vtigercrm.com">vtigercrm-developers-bounces@lists.vtigercrm.com</a>> [mailto:<a href="mailto:vtigercrm-developers-bounces@lists.vtigercrm.com">vtigercrm-developers-bounces@lists.vtigercrm.com</a><mailto:<a href="mailto:vtigercrm-developers-bounces@lists.vtigercrm.com">vtigercrm-developers-bounces@lists.vtigercrm.com</a>>] On Behalf Of Uma S<br>
Sent: Tuesday, 12 May 2015 3:00 PM<br>
To: vtigercrm-developers<br>
Subject: Re: [Vtigercrm-developers] Charts on the dashboard<br>
<br>
Hi,<br>
<br>
For now this feature is supported only in vtiger online, will get this into open-source soon.<br>
<br>
On Tue, May 12, 2015 at 8:22 AM, Hamono, Chris (DPC) <<a href="mailto:Chris.Hamono@sa.gov.au">Chris.Hamono@sa.gov.au</a><mailto:<a href="mailto:Chris.Hamono@sa.gov.au">Chris.Hamono@sa.gov.au</a>>> wrote:<br>
<br>
According to this page we can pin chart reports to the dashboard.<br>
<a href="https://wiki.vtiger.com/vtiger6/index.php/Reports#Charts" target="_blank">https://wiki.vtiger.com/vtiger6/index.php/Reports#Charts</a><br>
<br>
I cannot find the paperclip icon in VT6.2<br>
<br>
Is this broken or vtiger online only?<br>
<br>
Chris<br>
<br>
_______________________________________________<br>
<a href="http://www.vtiger.com/" target="_blank">http://www.vtiger.com/</a><br>
<br>
<br>
<br>
--<br>
With<br>
Best Regards<br>
Uma.S<br>
Vtiger Team<br>
<br>
_______________________________________________<br>
<a href="http://www.vtiger.com/" target="_blank">http://www.vtiger.com/</a><br>
<br>
<br>
<br>
--<br>
With<br>
Best Regards<br>
Uma.S<br>
Vtiger Team<br>
<br>
_______________________________________________<br>
<a href="http://www.vtiger.com/" target="_blank">http://www.vtiger.com/</a><br>
<br>
<br>
_______________________________________________<br>
<a href="http://www.vtiger.com/" target="_blank">http://www.vtiger.com/</a><br>
<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <<a href="http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20150514/b529bc0c/attachment.html" target="_blank">http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20150514/b529bc0c/attachment.html</a>><br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
vtigercrm-developers mailing list<br>
<a href="mailto:vtigercrm-developers@lists.vtigercrm.com">vtigercrm-developers@lists.vtigercrm.com</a><br>
<a href="http://lists.vtigercrm.com/cgi-bin/mailman/listinfo/vtigercrm-developers" target="_blank">http://lists.vtigercrm.com/cgi-bin/mailman/listinfo/vtigercrm-developers</a><br>
<br>
<br>
End of vtigercrm-developers Digest, Vol 112, Issue 57<br>
*****************************************************<br>
</blockquote></div><br></div></div></div>