[Vtigercrm-developers] Marketplace encryption

Conrado Maggi comaggi at gmail.com
Thu Mar 19 10:40:20 GMT 2015


Hello Uma,

Good to know.  Quick question: how is the review process performed when the
code is encrypted? You need the two files, encrypted and no encrypted?




On Thu, Mar 19, 2015 at 6:34 AM, Uma S <uma.s at vtiger.com> wrote:

> Hi,
>
> You can encrypt the extension for submitting to market-place, this is left
> to developer. Encryption is not provided by vtiger.
>
> On Thu, Mar 19, 2015 at 12:37 AM, Conrado Maggi <comaggi at gmail.com> wrote:
>
>> There isn't any.
>>
>> As far as I know, marketplace extensions are not encrypted
>>
>> Regards
>> El 18/03/2015 16:51, "Mike van Egmond" <mvanegmond at egmmedia.nl> escribió:
>>
>>> Hi guys,
>>>
>>> I had a question about the submission process, especially the encryption
>>> loader.
>>> Already submitted an app but did not see a possibility to encrypt the
>>> extension throught this vtiger loader.
>>>
>>> Please enlighten me :)
>>>
>>> Met vriendelijke groet/Kind regards,
>>>
>>> Mike van Egmond
>>> +31 6 21 53 43 42
>>> mvanegmond at egmmedia.nl
>>>
>>> *EGM Media*
>>> http://www.egmmedia.nl
>>>
>>> [image: Linkedin]
>>> <http://nl.linkedin.com/pub/mike-van-egmond/61/863/986> [image: Skype]
>>> <http://htmlsig.com/mike.van.egmond>
>>>
>>> This e-mail message may contain confidential or legally privileged
>>> information and is intended only for the use of the intended recipient(s).
>>> Any unauthorized disclosure, dissemination, distribution, copying or the
>>> taking of any action in reliance on the information herein is prohibited.
>>> E-mails are not secure and cannot be guaranteed to be error free as they
>>> can be intercepted, amended, or contain viruses. Anyone who communicates
>>> with us by e-mail is deemed to have accepted these risks. egmMedia is not
>>> responsible for errors or omissions in this message and denies any
>>> responsibility for any damage arising from the use of e-mail. Any opinion
>>> and other statement contained in this message and any attachment are solely
>>> those of the author and do not necessarily represent those of the company.
>>>
>>> 2015-03-17 13:00 GMT+01:00 <
>>> vtigercrm-developers-request at lists.vtigercrm.com>:
>>>
>>>> Send vtigercrm-developers mailing list submissions to
>>>>         vtigercrm-developers at lists.vtigercrm.com
>>>>
>>>> To subscribe or unsubscribe via the World Wide Web, visit
>>>>
>>>> http://lists.vtigercrm.com/cgi-bin/mailman/listinfo/vtigercrm-developers
>>>>
>>>> or, via email, send a message with subject or body 'help' to
>>>>         vtigercrm-developers-request at lists.vtigercrm.com
>>>>
>>>> You can reach the person managing the list at
>>>>         vtigercrm-developers-owner at lists.vtigercrm.com
>>>>
>>>> When replying, please edit your Subject line so it is more specific
>>>> than "Re: Contents of vtigercrm-developers digest..."
>>>>
>>>>
>>>> Today's Topics:
>>>>
>>>>    1. Re: Ways to create bulk users (apcloic)
>>>>
>>>>
>>>> ----------------------------------------------------------------------
>>>>
>>>> Message: 1
>>>> Date: Tue, 17 Mar 2015 02:33:32 -0700 (PDT)
>>>> From: apcloic <apcloic at gmail.com>
>>>> To: vtigercrm-developers at lists.vtigercrm.com
>>>> Subject: Re: [Vtigercrm-developers] Ways to create bulk users
>>>> Message-ID: <1426584812801-15639.post at n4.nabble.com>
>>>> Content-Type: text/plain; charset=us-ascii
>>>>
>>>> Hi Pranav,
>>>>
>>>> The link point to old forum URL.
>>>> I remember someone on the new discussion forum found a simple way to
>>>> access
>>>> old forums threads by changing URL but I don't remember the syntax.
>>>> Maybe someone else.
>>>> For CSV import, I've been using something like the following script :
>>>>
>>>> <code>
>>>> <?php
>>>> include_once('vtwsclib/Vtiger/WSClient.php');
>>>>
>>>> $url= 'http://your_vtiger_url';
>>>> $client = new Vtiger_WSClient($url);
>>>>
>>>> $login =  $client->doLogin('admin', 'your_admin_key');
>>>> if (!login) echo 'Login Incorrect';
>>>> else {
>>>>
>>>>         $assoc=array();
>>>>         $first=true;
>>>>         if (($handle = fopen("your_csv_file.csv", "r")) !== FALSE) {
>>>>                 while (($data = fgetcsv($handle, 0, ";")) !== FALSE) {
>>>>                         if ($first) {
>>>>                                 $assoc=$data;
>>>>                                 $first=false;
>>>>                         }
>>>>                         else {
>>>>                                 $send=array();
>>>>                                 foreach ($assoc as $key=>$name) {
>>>>                                         $send[$name]=$data[$key];
>>>>                                 }
>>>>                                 // var_dump($send);
>>>>                                 // echo '<hr/>';
>>>>
>>>>
>>>>                                 $module = 'Users';
>>>>                                 $record =
>>>> $client->doCreate($module,$send);
>>>>
>>>>
>>>>                                 if($record) {
>>>>                                                 $recordid =
>>>> $client->getRecordId($record['id']);
>>>>                                 print_r($recordid);
>>>>
>>>>                                 }
>>>>
>>>>
>>>>
>>>>
>>>>                         }
>>>>                 }
>>>>                 fclose($handle);
>>>>         }
>>>> }
>>>> ?>
>>>> </code>
>>>>
>>>> Remember that you there is multiple mandatory fields.
>>>> Regards,
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> View this message in context:
>>>> http://vtiger-crm.2324883.n4.nabble.com/Ways-to-create-bulk-users-tp7333p15639.html
>>>> Sent from the vtigercrm-developers mailing list archive at Nabble.com.
>>>>
>>>>
>>>> ------------------------------
>>>>
>>>> _______________________________________________
>>>> vtigercrm-developers mailing list
>>>> vtigercrm-developers at lists.vtigercrm.com
>>>> http://lists.vtigercrm.com/cgi-bin/mailman/listinfo/vtigercrm-developers
>>>>
>>>>
>>>> End of vtigercrm-developers Digest, Vol 110, Issue 30
>>>> *****************************************************
>>>>
>>>
>>>
>>> _______________________________________________
>>> http://www.vtiger.com/
>>>
>>
>> _______________________________________________
>> http://www.vtiger.com/
>>
>
>
>
> --
> With
> Best Regards
> Uma.S
> Vtiger Team
>
> _______________________________________________
> http://www.vtiger.com/
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20150319/89949251/attachment-0001.html>


More information about the vtigercrm-developers mailing list