Fix "Attribute meta-data#android.support is also present.." on Ionic camera preview plugin Problem Attribute meta-data#android.support.VERSION@value value=(26.1.0) from [com.android.support:support-v4:26.1.0] AndroidManifest.xml:28:13-35 is also present at [com.android.support:exifinterface:25.4.0] AndroidManifest.xml:25:13-35 value=(25.4.0). Suggestion: add 'tools:replace="android:value&
[SOLVED] ERROR: Error response from daemon: Get https://myregistry:5000: http: server gave HTTP response to HTTPS client This is a solution for both: Linux and Windows. You maybe came across this error pushing or pulling to/from a local registry, like Nexus or others. The problem is that Docker is trying to use HTTPS protocol but your registry does not support it, it accepts only HTTP connection.
Develop a chatroom using Ionic3, socket.io and Nodejs Socket.io Socket.io is a Javascript library that enables real-time, bidirectional and event-based communication. Sometimes we hear that socket.io implements a web socket communication but is NOT true. Socket.io uses the WebSocket protocol to provide the interface. Generally, it is divided into two parts, both WebSocket vs
Solve "The image you uploaded was larger than the maximum file size your server allows" on NGINX+Ghost Simply add client_max_body_size 5M; (replace 5M with your needs) on nginx.conf Example { listen 80; .. server_name mydomani.com; client_max_body_size 5M; .. }
Use ncftpput instead of ftp for recursive uploads Problem I came across this problem when i had the need to transfer a Wordpress site from a server to an other. So all the folder (included hidden file) needed to be recurively transferred. Ftp command is too limited and does not support recursive upload, so the solution is to
Set SASS the default style format on Angular/Ionic Angular 6+ ng config defaults.styleExts sass Ionic 4+ ionic config set defaults.styleExts sass