Cant install Intel HAXM via Android Studio

Preparing “Install Intel x86 Emulator Accelerator (HAXM installer) – Deprecated v.7.6.5”.Downloading https://dl.google.com/android/repository/extras/intel/haxm-windows_v7_6_5.zip“Install Intel x86 Emulator Accelerator (HAXM installer) – Deprecated v.7.6.5” ready.Installing Intel x86 Emulator Accelerator (HAXM installer) – Deprecated in C:\Users\Computer Master\AppData\Local\Android\Sdk\extras\intel\Hardware_Accelerated_Execution_Manager“Install Intel x86 Emulator Accelerator (HAXM installer) – Deprecated v.7.6.5” complete.“Install Intel x86 Emulator Accelerator (HAXM installer) – Deprecated v.7.6.5” finished.Parsing C:\Users\Computer Master\AppData\Local\Android\Sdk\build-tools\33.0.1\package.xmlParsing … Read more

How to Create Valid SSL in localhost for XAMPP

1. Navigate to Apache directory in XAMPP. In regular install it’s in C:\xampp\apache. 2. Create a folder in that page. This is where we will store our cert. In this example I will create “crt” folder. So we will have C:\xampp\apache\crt 3. Add this files. 4. Edit cert.conf and Run make-cert.bat Change {{DOMAIN}} text using the domain we … Read more

Steps to convert localhost into a custom domain in XAMPP in Windows

To set up a custom domain in localhost we have to apply the change in three places: Setting local development in XAMPP & identifying directory, pointing a custom domain to local computer from Windows host file, and redirecting the domain to a specific application folder through VirtualHost. Locate Application directory (folder) Generally, application/website files are located … Read more

Webhooks not working between GitHub and Hostinger

ERROR: I successfully deployed my website from GitLab to Hostinger, and have set up a webhook to sync any changes. However, whenever I push any changes to GitLab I get the following message in Hostinger and the changes do not sync. What am I doing wrong?! TIA Solution I got the same error with GitHub and to … Read more

Dynamically generated form field loses value when new field is added – vanilla javascript

I am generating a dynamic fieldset with javascript. For adding fields, I use the following function (this function actually adds more than one field) //add test I use innerHTML instead of append because there is a lot of code i’d have to append, the markup is so much shorter this way. Now, my problem is that whenever I add … Read more

! [rejected] main -> main (fetch first) error: failed to push some refs to ‘https://github.com/imrangconnect/thehaijobs.git’ hint: Updates were rejected because the remote contains work that you do hint: not have locally. This is usually caused

First Do this … git fetch origin master git merge master Then, do this … git fetch origin master:tmp git rebase tmp git push origin HEAD:master git branch -D tmp Now everything works well How to solve this problem of “! [rejected] master -> master (fetch first)” ! [rejected] master -> master (fetch first) ! … Read more

How to change the server time zone in WHM

You can browse to “WHM >> MultiPHP INI Editor” and use the “Editor Mode” tab for the version of PHP associated with the account to ensure the PHP “date.timezone” value is correct. It defaults to UTC. don’t forget to reboot the Server if this will not work then try the following in php file: working … Read more

How to Change the Database Timezone on phpMyAdmin

You can easily set the time zone of your database session by using an SQL command in phpMyAdmin. Just open your database using phpMyAdmin and go to the SQL section: Once there, insert the following command:SET time_zone = ‘+hh:00’; Replacing +hh with the UTC timezone. For example, UTC-03:00 would be:SET time_zone = ‘-03:00’; Next, click … Read more