My tickets
 
Submit ticket
 
Login
 
Other
Home
>
Developers help
>
Other
Enabling HTTP PUT and DELETE Requests for PHP Applications on Microsoft IIS
If you are using a Microsoft IIS server, it is possible that, by default, it does not accept HTTP PUT and DELETE requests. In this case, you need to explicitly allow these methods by specifying them in the verb parameter within your web.config file. Example web.config Entries <add name="php-5.6.30_1" path="*.php" verb="GET,HEAD,POST,PUT,DELETE" modules="FastCgiModule" scriptProcessor="C:\PHP_versioner\5.6N\php-cgi.exe" resourceType="Either" requireAccess="Script" /> <add name="php-5.6...
How to Monitor Network Requests Across All Chrome Tabs
It would be highly beneficial to have an option to automatically open Developer Tools in Chrome with each new tab or popup window in order to inspect the network requests generated by these instances. Currently, this feature is not available in Chrome browsers. However, there is a partial workaround: To capture all network requests occurring in the Chrome browser, simply open a new tab and enter the following URL: chrome://net-internals/#events This will display network traffic from all open...
How to Bulk Delete Mailchimp List Members using API
One of our team members needed to remove Mailchimp list members who were subscribed before a specified date. Since this action is not possible directly through the Mailchimp user interface, we developed a PHP script that utilizes the Mailchimp API to delete all list members who subscribed before a defined date. PHP Script Example Below is an example script you can use for this task: <?php date_default_timezone_set('UTC'); function mailchimpRequest($type, $target, $data = false) { $a...
Instant Payment Notifications - what is it?
Instant Payment Notification (IPN) enables you to automate various aspects of your business by sending transaction details to your server whenever a payment is received or a transaction status changes. When used with credit card or Express Checkout transactions, IPN is not intended for obtaining real-time payment status; rather, it is designed to provide asynchronous notifications, such as when an eCheck clears or a chargeback occurs. When a customer makes a payment, the payment gateway sends a...