If the IP address has been changed and other clients keep using the old IP address, run “ipconfig /flushdns” to update the IP address in the client (For Windows only).
Cannot find or connect to SQL instance showing when connecting to SQL server from SSMS
Checklist
-SQL Browser service is running on the DB server, this one listens to UDP broadcast to tell clients of its presence.
-UDP 1434 is allowed in the firewall of the server(inbound rule), this is so that UDP broadcasts from clients can reach server.
-TCP 1433 and 1434 are allowed in the firewall(inbound rule), this is so that SSMS can connect to SQL server instance.
-TCP and UDP protocols are enabled in SQL Configuration Manager.
-The SQL instance allows remote connections, check this by opening SSMS inside the server, connect to local instance, right click, choose Properties and check the option to allow remote connections.
-There is no IP conflict in the network with another server (if using Virtual machines, check that MAC addresses are different to have different IPs, otherwise SSMS may try to connect to wrong server).
Cloned VirtualBox VMs having same IP addresses
If this happens, turn off the VM, in the settings->Network->Adapter, expand Advanced, and click on the refresh button next to MAC address.
IP addresses are generated by DHCP from MAC addresses. Cloned VMs by default will have the same MAC address as the original VM, so need to change to another one.
Show textfield as multiline text in Unity Editor
Simply add the following directive right above the public property
[TextArea(numberOfLines, numberOfColumns)]
public string MyProperty;
Creating Domain controller and joining domain in VirtualBox
Make sure you use Host-Only network adapters for both DC and guest machines, Host-Only network adapter provides DHCP and DNS service.
If you’re using internal network, either configure your own DHCP or set static IP addresses.
Configure the DC also as a DNS server, so that it can resolve domain name to IP address when query. If not, register the DC to the DNS server.
If the DC is also a DNS server, set its IP address to the network adapter of member machines, so those machines can find the DC to join domain.
Make sure ports are allowed in firewall settings.
Mapping hostnames to IPs in Android without hosts file
There comes a time when you need to map a host name to an IP address to be used in Android development.
Follow this guide here, use Daedalus
https://blog.silocitylabs.com/post/2018/03/02/changing-dns-settings-for-android-development/
Issue with Cordova plugins in cordova app
Try to run cordova clean android, and build again.
Unauthorized device android emulator, cannot do usb debugging
Try to change the image with Google Play to an image with Google APIs
Capture web traffic using Fiddler for Android and iOS devices
Follow the blog posts:
For Android:
For iOS:
Could not find support-vector-drawable.aar (com.android.support:support-vector-drawable:27.1.1)
In build.gradle under platforms/android
Under allprojects => repositories, add google() before jcenter()