Skip to main content

Posts

Showing posts from June, 2021

Microsoft Windows 11 - Download Insider Preview | Wallpaper | Check new upgrade Error | Watch Live Launch Event

Windows 11 - Wallpapers - From Microsoft Windows  Watch Windows 11 Trailer   A new Windows experience,  bringing you closer to the people and things you love. Watch Live Microsoft Windows June 24th, 2021 Event Microsoft Windows 11 Livestream Event | Microsoft Check whether your PC meets the requirements to upgrade to Windows 11. Windows PC Health Check Setup 26th June, 2021. Upgrade Error Insider Preview Download Windows 10 Insider Preview ISO (microsoft.com)

Error while installing ~ vtiger CRM

 MySQL Server should be configured with: sql_mode = ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION solution:  Fire this query through the root user in MySQL SET GLOBAL sql_mode = 'ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' And check if the settings are applied by firing the query as follows SHOW GLOBAL VARIABLES LIKE 'sql_mode' ; vtigercrm -> Database charset or collation not compatible with UTF8 Solution: create a db with utf8mb4_general_ci

Error while running a reactjs app 17.0.1 with typescript 4.1.2

import   React   from   'react' ; import   ReactDOM   from   'react-dom' ; import   './index.css' ; import   App   from   './App' ; import   reportWebVitals   from   './reportWebVitals' ; ReactDOM . render (    < React.StrictMode >      < App   />    </ React.StrictMode > ,    document . getElementById ( 'root' ) ); // If you want to start measuring performance in your app, pass a function // to log results (for example: reportWebVitals(console.log)) // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals reportWebVitals (); in index.tsx file under src. error below: ----------------------------------------------------- Could not find a declaration file for module 'react'. 'f:/laragon/www/oddo/o...