Ubuntu php 7.3 install

sudo apt install software-properties-common -y sudo apt-get install python-software-properties sudo add-apt-repository ppa:ondrej/php -y sudo apt-get update sudo apt-get install -y php7.3Now install PHP-FPM 7.1 with all extensions needed.sudo apt install…

linux ubuntu microsoft ODBC  connect

unixODBC developer package. sudo apt-get update sudo apt-get install mssql-tools unixodbc-dev `</pre><pre>`sudo apt-get install freetds-common freetds-bin unixodbc php7.3-sybase`</pre> ubuntu mssql driver [https://www.microsoft.com/en-us/sql-server/developer-get-started/php/ubuntu/step/2.html](https://www.microsoft.com/en-us/sql-server/developer-get-started/php/ubuntu/step/2.html) [](http://selmantunc.tumblr.com/tagged/magento/page/3)[http://selmantunc.tumblr.com/post/180306101827/how-to-install-magento-with-nginx-on-ubuntu-1804](http://selmantunc.tumblr.com/post/180306101827/how-to-install-magento-with-nginx-on-ubuntu-1804) [https://docs.microsoft.com/en-us/sql/linux/quickstart-install-connect-ubuntu?view=sql-server-2017](https://docs.microsoft.com/en-us/sql/linux/quickstart-install-connect-ubuntu?view=sql-server-2017) [https://bitbucket.org/janihur/devoops/wiki/How_To_Connect_Azure_SQL_Database_From_Ubuntu](https://bitbucket.org/janihur/devoops/wiki/How_To_Connect_Azure_SQL_Database_From_Ubuntu) [https://docs.microsoft.com/tr-tr/sql/azure-data-studio/download?view=sql-server-2017](https://docs.microsoft.com/tr-tr/sql/azure-data-studio/download?view=sql-server-2017) [http://sqlserveronlinuxbackup.com/get-microsoft-azure-sql-server-linux-ubuntu-free/](http://sqlserveronlinuxbackup.com/get-microsoft-azure-sql-server-linux-ubuntu-free/) [ ubuntu php…

Git

Remote Push git add . git commit -m "bla bla bla " git push -u origin master Create a new branch: git checkout -b feature_branch_name Edit, add and commit your…

RoundCube: DATABASE ERROR: CONNECTION FAILED!

1. Open /var/lib/roundcube/config/db.inc.php or (db.inc.php.dpkg-bak)and look for the password in the command $rcmail_config[‘db_dsnw’] = 'mysql://roundcube:password@localhost/roundcube’;2. copy that password only3. Open /etc/roundcube/debian-db.php4. find $dbpass='wrongpassword’;5. Paste to replace 'wrongpassword’ with the correct…

How to Laravel admin panel

Simple laravel admin https://github.com/fisayoafolayan/laravel-multiple-authOther https://www.pusher.com/tutorials/multiple-authentication-guards-laravel/https://github.com/jayminpanchal/laravel-multiauthhttps://www.kerneldev.com/2018/02/12/set-up-role-based-access-control-in-laravel/https://www.easylaravelbook.com/blog/adding-a-restricted-administration-console-to-your-laravel-application/https://jamesmcfadden.co.uk/custom-authentication-in-laravel-with-guards-and-user-service-providershttps://dev.to/povilaskorop/laravel-approve-new-registered-users-from-administrator-3nbhpermiison http://itsolutionstuff.com/post/laravel-5-simple-user-access-control-using-middlewareexample.html