Finding the Record link of a Custom Record with Id customrecord_vbn_vendor_billing_notes
Month: January 2023
Redirect HTTP to HTTPS on Apache Virtual Host
Additionally, to force all web traffic to use HTTPS, you can also configure your virtual host file. Normally, there are two important sections of a virtual host configurations if an SSL certificate is enabled; the first contains configurations for the non-secure port 80. The second is for the secure port 443. To redirect HTTP to HTTPS for all… Continue reading Redirect HTTP to HTTPS on Apache Virtual Host
How to Enable HTTP/2 in Apache2 on Google Cloud Server
Requirements A self-managed VPS or dedicated server with Ubuntu 18.04 running Apache 2.4.xx. A registered domain name with working HTTPS (TLS/SSL). HTTP/2 only works alongside HTTPS because most browsers, including Firefox and Chrome, don’t support HTTP/2 in cleartext (non-TLS) mode. Step 1: Install Apache2 Per default it will be apache2 version 2.4.29 what is enought for http2… Continue reading How to Enable HTTP/2 in Apache2 on Google Cloud Server
PROPOSAL FOR ADDRESS VALIDATION ENHANCEMENT IN SCA
Proposal Summary This proposal covers the development Address validation Enhancements in SCA webstore for Artina Group website. Requirement Website URL Sandbox: https://www.artinasb.tk/ If the postal code entered does not pass validation and is updated, we could provide some indication to the customer that this occurred. Currently, this is done silently in the background upon address… Continue reading PROPOSAL FOR ADDRESS VALIDATION ENHANCEMENT IN SCA
website performance
Check the domain in https://pagespeed.web.dev/ to get the performance of the website.Review the website status in desktop and mobile. PageSpeed Insights (PSI) reports on the user experience of a page on both mobile and desktop devices, and provides suggestions on how that page may be improved.PSI uses Lighthouse to analyze the given URL in a… Continue reading website performance
Error Guessing Technique
The test case design technique or methods or approaches that need to be followed by every test engineer while writing the test cases to achieve the maximum test coverage. If we follow the test case design technique, then it became process-oriented rather than person-oriented. The test case design technique ensures that all the possible values… Continue reading Error Guessing Technique
Auto Hide the Element Or Div In website after few second According to given time.
When we want to hide some div or Html Element After some time we can use the below code Example HTML <div id=”hideDiv”> This div will hide automatically after 5 seconds</div> CSS #hideDiv{background:red; width:400px; margin:0 auto; color:#fff; padding:10px; text-align:center;} JS $(function() {setTimeout(function() { $(“#hideDiv”).fadeOut(1500); }, 5000) }) Note: The Above code is for reference only… Continue reading Auto Hide the Element Or Div In website after few second According to given time.
Creating a Animated Menu Icon using css And Javascript
If we are not using an icon library, you can create a basic menu icon with CSS: Animated Icon Use CSS and JavaScript to change the menu icon to a “cancel/remove” icon when it is clicked on: Step 1) Add HTML:Example Step 2) Add CSS:Example Step 3) Add JavaScript:Example ExplanationHTML & CSS: We use the… Continue reading Creating a Animated Menu Icon using css And Javascript
Update Extension Manifest
If you created the files and folders in extension, the extension manifest can be updated by using the gulp command gulp extension:update-manifest
Error in task gulp extension:deploy- could not find manifest.json
[11:24:21] ‘startDeploy’ errored after 36 s[11:24:21] Error in task gulp extension:deployError MessageCould not find new manifest.json uploaded in folder \JJ\Checkout_Extension@1.0.0\manifest.jsonError Details [11:24:21] ‘extension:deploy’ errored after 59s If face an error Could not find new manifest.json try to remove the folder Deploy Distribution and try again.