Integration of Payum Module to my existing Zend 2 Project - paypal

I have already running a project in Zend Framework 2 Now i trying to integrate the Payum Module(paypal) with my existing project I have followed the instructions from
https://github.com/Payum/PayumModule/blob/master/docs/get-it-started.md
and install and configure the module. it is showing on the ZendDeveloperTools that the module is there now i need to move further on this but not found a way.
Is there any other documentation available that will provide step by step integration?

The repo of the mentioned module has documentation on how to use it:
https://github.com/Payum/PayumModule/blob/master/docs/get-it-started.md

Related

Meteor project update bootstrap-3 to bootstrap-4

I have a meteor project. In this project Bootstrap v3 used. now I want to update this project in Bootstrap v4. What the steps I need to do.
Bootrap have a migration guide -
https://v4-alpha.getbootstrap.com/migration/

Undesrscore.js library is not working with Ionic based MobileFirst project

I have created hybrid application with mobilefirst using ionic. I have included underscore.js library in my project. When I try to access methods of underscore, I get errors like underscore is not defined
If you mean that you have created an app using MobileFirst Studio - that is not the recommended path. The recommended path is to create a Cordova application using the MobileFirst CLI. You can then combine this with Ionic. This approach is more fool-proof.
You can follow these guides:
https://www.raymondcamden.com/2015/03/23/working-with-ibm-mobilefirst-and-the-ionic-framework/
https://mobilefirstplatform.ibmcloud.com/blog/2016/01/13/ionic-hybrid-mobile-app-using-mobilefirst-platform-7-1-cli/
Note that you did not mention the actual error you have received. Without this, the question is moot as there can be a number of possibilities. Please actually mention the error you got.

When developing CloudFoundry apps using Eclipse, what project types are allowed?

May I ask for some clarification on what sorts of projects can be successfully deployed to vcap_dev please? What I'd like to deploy is a dynamic web project that includes java and javascript, but that appears to not be allowed. Is it possible to include javascript/html/css artifacts in a deployed app? If so, what project type should I use?
Thanks,
John
You can use the vmc command line tool to see what runtimes and frameworks are supported in your vcap_dev setup. The commands are slightly different depending on the version of vmc you install:
use vmc runtimes or vmc info --runtimes to see what runtimes are supported
use vmc frameworks or vmc info --frameworks to see what frameworks are supported
This question was also posted to the vcap Google group, see that thread for additional details.
You can use the spring framework by installing the Cloud Foundry Integration Extension for SpringSource Tool Suite (STS) and Eclipse (http://docs.cloudfoundry.com/tools/STS/configuring-STS.html). Then you can add javascript / css / html files as resources.
Let me know if that answers your question.
Thanks,
Hitesh

How do I add Platform Update 1 to my bootstrapper?

I have been playing around with the new StateMachine workflow that has been added to Windows Workflow as part of Platform Update 1 (see also). I now want to look at installing what I've created and therefore need to make sure my bootstrapper is up-to-date. In the future, I will be moving to WIX but right now, for the purposes of prototyping, I'm just using a regular Setup and Deployment project and its bootstrap support.
The list of standard pre-requisites does not include the PU1 as an option. Therefore, how can I add support for it?
Update
I found this answer on StackOverflow regarding custom prerequisites, which led me to this article on MSDN, which led me to creating my own pre-requisite. However, I got a new error about mismatched framework requirements. I suspect I need to pick apart the multi-targeting support and the existing .NET framework prerequisite package to see how to make a new prerequisite that will work correctly.
I've had a stab at creating my own bootstrapper packages for this. The results are here to download. Note that these are entirely untested and provided as-is - use at your own risk. However, feedback is welcome. Hopefully Microsoft will provide an official solution.
See How to detect if the .NET Framework Platform Update 1 is installed
is the Microsoft .NET Framework 4 Platform Update 1 - Runtime Update (KB2478063) what you are looking for? See here for the download.

Building an Issue Tracker Plugin for TortoiseSVN

I've read a lot about IBugTraqProvider interface and implementing an issue tracker into the commit dialog of TortoiseSVN.
IBugTraqProvider is written here.
Is there a more simpler way not to do it, building the plug-in and installing it on TortoiseSVN. The Document is not that clear that a developer can create its own plugin.
I'm working with SalesForce as the Issue Tracker, and retrieved the WSDL file to integrate with the Working Items. Now I need to know how to connect it to TortoiseSVN.
Please any suggestions?
Take a look at issue-tracker-plugins.txt in the contrib directory in the TSVN source code. There's a fairly decent example in C# that should get you heading in the right direction.
When I built a plugin, I built a test harness that passed arbitrary information using the IBugtraqProvider interface, so that I could debug the plugin whilst building it, without having to reinstall the plugin into TSVN each time.