–no-check-certificate Don’t check the server certificate against the available certificate authorities. Also don’t require the URL host name to match the common name presented by the certificate. As of Wget 1.10, the default is to verify the server’s certificate against the recognized certificate authorities, breaking the SSL handshake and aborting the download if the verification… Continue reading wget without checking certificate
ispconfig 3, debian, php.ini upload_max_filesize=20M
creating a file .user.ini in the web/ folder (should be found automatically) which contains upload_max_filesize=20M service apache2 restart https://www.howtoforge.com/community/threads/upload_max_filesize-unchangeable.56787/
move one directory up
cp -rf . .. rm -rf *
sql server, find foreign keys associated with given primary key
If you work with an unknown schema and try to investigate the relationships between primary and foreign keys, there is a great answer on stackoverflow originally posted by db2. SELECT o1.name AS FK_table, c1.name AS FK_column, fk.name AS FK_name, o2.name AS PK_table, c2.name AS PK_column, pk.name AS PK_name, fk.delete_referential_action_desc AS Delete_Action, fk.update_referential_action_desc AS Update_Action FROM… Continue reading sql server, find foreign keys associated with given primary key
embedding ftp client in your android app
Open your favorite IDE for android development and create a new project. Unless you choose to implement RFC 959 on your own, include a good ftp client library like this one http://commons.apache.org/proper/commons-net/download_net.cgi If you already know how to include a jar in your android project, skip the following bullets. For android studio fans: copy-paste jar to libs folder of your project,… Continue reading embedding ftp client in your android app