Ccavenue payment gateway integration in php Codeigniter framework [closed] - php

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 days ago.
Improve this question
`I have downloaded the kit from ccavenue dashboard which contains dataFrom.html, crypto.php, ccaRequestHandler.php, ccaResponseHandler.php pages.
As Codeigniter follows MVC architecture, I'm not understanding where should I add the above mentioned pages, in which folder either in view or model or controllers.
Please help me through this, I'm new to codeigniter.
I have added all the details like merchant id, working key and access code.
As of now I have added all that pages inside view folder and I have loaded the ccavenueRequestHandler inside the pay function in controller.
I'm not getting what's next step.
Or what should do with the ccaResponseHandler.php page. Or where should I add that page.
Please help me `

Related

Laravel Website multiple homepage. User can change [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I want to know the way to use my multiple homepage design in Laravel. And User can switch homepage design from site settings like wordpress. Can anyone help me to find the way to make laravel website with multiple home page system?
The question is quite general so I'll share my personal approach:
I create several template folders in my view directory with the same blade file structure inside.
Then from the Controller, I just change the call to the view according to the requested template:
return view($template_name . '.index');

Wordpress - Integrating custom web application [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I was tasked to create a file upload workflow that integrates with Wordpress.
I created a backend that is called via REST that does a lot of custom workflows. Thus, I cannot use the current plugins.
It is a single page application that accepts a file as well as some metadata.
My current dilemma: I need to integrate this web application within Wordpress and have no clue where to start.
After consulting with someone who's developed with Wordpress before, he recommended to build a plugin. And since I have no experience with Wordpress, he helped me build it. It was literally 3 lines of PHP.
Thank you all.

how to extract API from websites in laravel 5.2? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am new to the Laravel5 framework , so that I have no idea about this.I want to fetch data from a website and store that in my database.can anyone provide a sample coding that will come under model , view , controller and route, so that I can understand it in better way.
everything except something's come under model controller view and routes.
start from the Tutorials docs and continue to The Basics
navigate in the left navigation from top to bottom

OpenCart Insert/Update Products Api [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am building a new online shop based on OpenCart 2. I am trying to integrate an supplier XML feed to automatically update product prices/stock info/etc. Is there an ADD/UPDATE PRODUCT API to use with OpenCart 2? Could not find any info on their site about this...
I analyzed the database diagram but I think it's very difficult to create a PHP code to add/update these products manually.
You can use existing code that opencart uses to add/update products.
Its in admin/model/catalog/product.php.
There are methods for addProduct and editProduct.

PHP - MVC Render View [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
Im using a custom MVC built by me..
Im fairly new to this approach, and im having some trouble to understand all of this.
My website has a login system that allows the users to log in in any page(view).
What i want to do is:
After the user logs in, the controller will render the view he was on before the call to the controller login function.
So header is out of the options since i need to send a view to be rendered
Does anyone has a solution to do this?
Why don't you track the where the user came from in a session variable?
Session is always available.
Sessions are not accessable to anyone outside you're system.

Categories