NetSuite SCA customization to support credit card payments

Proposal summary The proposal covers the scope of implementing credit card payments for product purchases. Currently, the website does not allow credit card payment. Allow customers to place orders from shopping carts and pay with credit cards. Also need to integrate a payment method solupay. Requirement Adding new customers to the store and should be… Continue reading NetSuite SCA customization to support credit card payments

lost Project files for the magento project during an system restart

Copied the project file from a colleague an pasted it in the location “/var/www/html”. Also copied the database from them and pasted it in the same location an created a database with the following commands mysql> CREATE DATABASE DatabaseName; mysql> CREATE USER ‘DatabaseUser’@’localhost’ IDENTIFIED BY ‘password’; mysql> GRANT ALL ON DatabaseName.* TO ‘DatabaseUser’@”localhost”; mysql> FLUSH… Continue reading lost Project files for the magento project during an system restart

Published
Categorized as Magento

Sample Restlet

/** * @NApiVersion 2.1 * @NScriptType Restlet */define([“N/record”], (record) => { /** * Defines the function that is executed when a GET request is sent to a RESTlet. * @param {Object} requestParams – Parameters from HTTP request URL; parameters passed as an Object (for all supported * content types) * @returns {string | Object} HTTP… Continue reading Sample Restlet