Category Archives: PHP

PHP, which stands for Hypertext Preprocessor, is a widely-used open-source server-side scripting language primarily designed for web development. It was created by Danish-Canadian programmer Rasmus Lerdorf in 1994 and has since become one of the most popular programming languages for web development.

How to install imap php extension with Amazon Linux

To install the IMAP PHP extension on Amazon Linux, you can follow these steps: sudo yum groupinstall “Development Tools” sudo amazon-linux-extras install epel yum install epel-release sudo yum install libc-client-devel uw-imap-static openssl-devel sudo ln -s /usr/lib64/libc-client.a /usr/lib Desires to download the code for the version of PHP that it uses https://www.php.net/downloads.php. You must replace your php version in below file path.   cd ~ wget https://www.php.net/distributions/php-7.x.x.tar.gz OR cd ~… Read More »

How to prevent magento create order with such a potentially harmful or malformed billing address

The placeholder {{var this.getTemp%00lateFilter().filter(firstname)}} in Magento indicates an attempted injection attack or a misconfiguration. To prevent Magento from creating orders with such a potentially harmful or malformed billing address, you can implement several security measures: 1. Input Validation and Sanitization: Validate User Input: Ensure that all user inputs, including billing addresses, are validated. This means… Read More »

How to use 3rd party FedEx account shipping label via FedEx Rest API Oauth 2.0

Using a third-party FedEx account for generating shipping labels via the FedEx REST API with OAuth 2.0 involves several steps. This process includes obtaining OAuth credentials, authenticating, and making API requests with third-party billing information. Here’s a step-by-step guide on how to achieve this: Step 1: Obtain FedEx REST API and OAuth 2.0 Credentials Register… Read More »

How to use 3rd party ups account shipping label via UPS Rest API Oauth 2.0

Using a third-party UPS account for generating shipping labels via the UPS REST API with OAuth 2.0 involves several steps, including obtaining OAuth credentials, authenticating, and making API requests with third-party billing information. Here’s a detailed guide on how to achieve this: Step 1: Obtain UPS REST API and OAuth 2.0 Credentials Register for a… Read More »