Asterisk and multitenant module for vtiger 6 - vtiger

I am new to vtiger. I would like to know is there any modules available for Asterisk and multitenant. If so can you please give me the link. I saw some post saying it will be in future release.

as per developers, setting PBX Manager back in action is planned in version 6.1
Meantime, you'll need to wait or create your custom module.

check out http://www.vtigerexperts.com/vtiger-crm-6-1-demo/
PBX manager is available in 6.1. For multi-tenancy you have to customize.

Related

Update Hash to HMAC-SHA-512

I am trying to use a payment module in OpenCart version 2.0.1.1, and I need to update our Hash to HMAC-SHA-512, so the checkout page authorizes successfully.
I just donĀ“t know how to change the hash and where exactly I can do this.
We use Plesk, with PHP 7. The domain is www.didikong.de
The payment module is WireCard Checkout Page version 1.2.0.
So this wirecard generates a Fingerprint, which is encrypted via HMAC-SHA-512. And our website uses SSL.
Thanks in Advance.
I am really not sure if the version 1.5.2 of opencart-wcp was still compatible with 2.0.1.1 but I would try that first. There was a client library update between 1.2.0 and 1.5.2 in which the algorythm was updated. If you don't have a test system where you could try it out just check the changes in the client lib. More in particular look into the /system/library/wirecard/vendor/wirecard/checkout-client-library/library/WirecardCEE/QPay/FrontendClient.php file and see if the setHashAlgorithm is using the WirecardCEE_Stdlib_Fingerprint::HASH_ALGORITHM_HMAC_SHA512 constant. If not, just change it to the mentioned constant and you should be good to go. If you get any errors regarding some missing things consider updating the /system/library/wirecard/vendor/wirecard/checkout-client-library/library/WirecardCEE/Stdlib/Client/ClientAbstract.php to the newest version.

Detecting PCF version(s)

I have access to our corporate PCF, though both the Apps Manager webpage and the "cf" CLI (and thus the API).
How can I detect what version of PCF they're running? There's nothing in the website that lists it, and the best I can find is using cf api which returns:
api version: 2.98.0
How can I map that to the PCF version, or is there another way to detect it?
Usually via Ops Manager however another quick way is to click on the 'Docs' in Apps Manager it should take you to the documentation of relevant PCF version. For ex: https://docs.pivotal.io/pivotalcf/2-6/pas/intro.html means PCF 2.6
Please be advised that documentation link requires to be updated during upgrades so if someone doesn't do - it will be pointing out to older version..
I don't believe Apps Manager or the API (i.e. Cloud Controller) will report that information. Both are just single parts of the entire system, so I think you could really only expect them to publish their own version information.
If you want to see versions of what is installed, you need to look at Ops Manager. That will show you the tiles that are installed and each version.
If you don't have access to Ops Manager, you'd need to ask your platform operators.
Hope that helps!

How can develop module in Sitecore?

I have started Sitecore learning few months ago.That time first question come in my mind is that how can I develop module? but can not able to find documentation. Can anybody provide me documentation how can I develop custom module?
If you mean you would like to create a module for the Sitecore marketplace, as others have done, then the process is fairly simple.
Write your code (ASCX, ASPX, CS, JS, etc.)
Create your Sitecore items (Layouts, renderings/sublayouts, custom buttons, etc.)
Create your configuration files (if necessary) for the App_Config\Include folder.
Build your solution and test it in a Sitecore instance locally.
Package the published files and item together using the Sitecore packaging utility.
Contribute your module on the marketplace and upload the package for review.
What you are hoping to achieve here is that another person could grab your package, install it on their system, and be able to use it without needing to recompile your source code.
If you want to develop a module, come up with the idea and then build it.
You can then submit it to the Sitecore a Marketplace under the contribute section.
https://marketplace.sitecore.net/Contribute.aspx?sc_lang=en
Typically you'll submit a package to this section and documentation on how to setup and use the module.
Sitecore will then test the module and inform you whether it is suitable for the marketplace. Your module will then be published on the marketplace ready for others to download.
When developing your module you should consider compatibility with Sitecore versions, and you should also test it thoroughly.
Here's some more info on best practices when building modules:
https://kb.sitecore.net/articles/831724

JIRA Plugin that Creates ServiceNow ticket

I was wondering if there was a plugin available that would listen to changes to a JIRA ticket such as Build Requests set to Staging and from there create a ticket within ServiceNow. If there is no plugin available for this, could someone point me in the right direction to get this project going?
there is no ready-to-use plugin available for that use case.
We created our own plugin for that but unfortunately this plugin is not available for the public.
On top of that it would be very complicated to create a plugin which could be used by everybody because you would need a huge amount of configuration options.
I think you will have to contact a consultant to create your own plugin for your desired use-cases.

Is there a way to connect thunderbird/lightning to the redmine's calendar?

I just started my adventure with the Redmine 3.0, the project manager.
I can't Google out if there is an option to export its calendar to e.g. thunderbird-ligthning. There are some plugins, but they are not compatible with current Redmine 3.0. I couldn't find out anything relevant in the changelog, too.
Can anyone tell me from their own experience, if (and how) this feature is available?
Generally, anything that exports to the ics format can be made available to Thunderbird/Lightning, or any other calendaring program. The other option is to make use of the caldav protocol, which is also standardized.
I have heard reports that this fork of the redmime ics export plugin works for 3.x, but I haven't tested it myself. Maybe you can give it a try.
If you would like to create your own, I'd suggest adapting sabreDAV to use redmime as a backend. As an example for how to write a custom sabre frontend for a different service, check out this work.