Recently My One of the Product PayPal IPN was not working. I thought my code had some problems but after changing whole codes, it was not working. Then I discovered using Paypal IPN Simulator (https://developer.paypal.com/developer/ipnsimulator/) that IPN was not handshaking with my domain as my domain was using very basic SSL. So, I found that […]
// // MainView.swift // MySwiftLearning1 // // Created by Arifur Rahman Jerin on 4/30/21. // import SwiftUI struct Bookmark: Identifiable { let id = UUID() let name: String let icon: String var items: [Bookmark]? // some example websites static let apple = Bookmark(name: […]
I am developing a flutter project called ZTutor. While testing in Android my login was not working, my app was sending data to localhost, which is my local pc. My localhost url was http://192.168.0.105/ztutor/login.php but that url was not receiving any request from the App. So, I changed in the android/app/src/main/AndroidManifest.xml: I have added this […]
I have recently updated our MySQL server to MySQL 5.7. Then I have found that in all the projects that has “SELECT DISTINCT and ORDER BY” SQL statements, are not working anymore. In Order to Fix that I followed the below procedure: Logged in To Server (CentOS 7). In console mode typed # mysqld –help […]
Recently while working & testing on my own app Zbotics (That assist with Robot Voice when to do what to my family member) which has been made by flutter 2, I have found that App loads data using http.get properly in IOS Simulator & real device but it was not working in Android Device at […]