Author: mrabd423
There is an issue on Yii2 to redirecting / urls to /frontend/web. In other words we need a way to hidden /frontend/web from addresses. We will do this without changing …
Here is the curl call for to get the chats for Zopim online live chat platform. List of Chats Done in zopim $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://www.zopim.com/api/v2/chats"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, …
If you are getting out of space in your current EC2. Then its time to get some more space. 1. Login in to your AWS account. 2. Go into Elastic …
sudo apt update sudo apt install apache2 sudo apt install zip sudo apt install unzip sudo apt-get install php-curl sudo apt install php-mysqli sudo apt-get install php7.2-mbstring
Here is the line which will remove all non utf-8 characters from string. $string = preg_replace('/*/','', $string);
Here is the list of tables that may effect with new INSERTS if you add new product in your magento. You can use your own prefix instead of ayis_ ayis_cataloginventory_stock_item …
Many people spend hours and hours to get the refresh token when authorizing their app using zoho v2 api. Here are our tip to get it quick. When you are …
Install Extension Guide First of all unzip the extension zip file and open registration.php You will see something like below \Magento\Framework\Component\ComponentRegistrar::register( \Magento\Framework\Component\ComponentRegistrar::MODULE, 'Magebees_Products', __DIR__ ); It means you need to …
Here is the query SELECT ar.ArtistName, GROUP_CONCAT(al.AlbumName) FROM Artists ar INNER JOIN Albums al ON ar.ArtistId = al.ArtistId GROUP BY ArtistName; +————————+—————————————————————————-+ | ArtistName | GROUP_CONCAT(al.AlbumName) | +————————+—————————————————————————-+ | AC/DC …
Step 1 Login to the aws then create a ubuntu instance. It will ask configurations and at the end it will give a pem file. download it and keep it …