Using ng version you get the Angular version like below here I'm using Angular 8, below you can see how it looks like. Angular CLI: 8.2.2 Node: 10.16.3 OS: darwin x64 Angular: ... Package Version ------------------------------------------------------ @angular-devkit/architect 0.802.2 @angular-devkitRead more
Using ng version you get the Angular version like below here I’m using Angular 8, below you can see how it looks like.
add the below SITEURL on wp-config.php define(‘WP_HOME’,’https://yourdomainname.com’); define(‘WP_SITEURL’,’https://yourdomainname.com’); And add this condition to check if the https on wp-config.php if ( isset( $_SERVER[‘HTTP_X_FORWARDED_PROTO’] ) && ‘https’ == $_SERVER[‘HTTP_X_FORWARDED_PRRead more
In every Linux operation system, the root user is disabled by default below you have a command that will help to change as a root user. Then you run the command it works. sudo -i
In every Linux operation system, the root user is disabled by default below you have a command that will help to change as a root user. Then you run the command it works.
How to generate components in a specific folder with Angular
Siva
Create like below it works for me. ng generate component foldername/home2 (or) ng g c foldername/home2
Create like below it works for me.
See lesswhere to import hammerjs in Angular
Siva
You can import the hammerjs in main.ts file.
You can import the hammerjs in
See lessmain.ts
file.How to increase count OnClick using jQuery
Siva
Simply you try the below code to click count ClickCount 1
Simply you try the below code to click count
See lessHow to use shortcodes in WordPress
Siva
Below do_shortcode this will help you to use the shortcode on Wordpress
Below do_shortcode this will help you to use the shortcode on WordPress
See lessWhere to modify Single Product page in WooCommerce
Siva
You can find the file location in plugins folder. wp-content/plugins/woocommerce/templates/content-single-product.php
You can find the file location in plugins folder.
See lessgit push – Updates were rejected because the tip of your current branch is behind
Siva
If you have problem where your push is rejected, you may just need to "git pull origin master" before you "git push origin master".
If you have problem where your push is rejected, you may just need to “git pull origin master” before you “git push origin master”.
See lessgit pull – fatal: refusing to merge unrelated histories
Siva
Try the following command git pull origin master --allow-unrelated-histories
Try the following command
See lessHow to check the Angular version?
Siva
Using ng version you get the Angular version like below here I'm using Angular 8, below you can see how it looks like. Angular CLI: 8.2.2 Node: 10.16.3 OS: darwin x64 Angular: ... Package Version ------------------------------------------------------ @angular-devkit/architect 0.802.2 @angular-devkitRead more
Using
See lessng version
you get the Angular version like below here I’m using Angular 8, below you can see how it looks like.How to solve too many Redirects after switching WordPress to https
Siva
add the below SITEURL on wp-config.php define(‘WP_HOME’,’https://yourdomainname.com’); define(‘WP_SITEURL’,’https://yourdomainname.com’); And add this condition to check if the https on wp-config.php if ( isset( $_SERVER[‘HTTP_X_FORWARDED_PROTO’] ) && ‘https’ == $_SERVER[‘HTTP_X_FORWARDED_PRRead more
add the below SITEURL on wp-config.php
And add this condition to check if the https on wp-config.php
See lessWhy getting su fail with “Authentication failure error”?
Siva
In every Linux operation system, the root user is disabled by default below you have a command that will help to change as a root user. Then you run the command it works. sudo -i
In every Linux operation system, the root user is disabled by default below you have a command that will help to change as a root user. Then you run the command it works.
See lessHow to restart Apache on Dedicated server?
Siva
If you have SSH login means using that you need run the following as root user or via sudo. /etc/init.d/httpd restart
If you have SSH login means using that you need run the following as root user or via sudo.
See lessStarting/Restarting Cpanel/WHM in SSH
Siva
the following command will help you service cpanel3 restart service cpanel3 stop service cpanel3 start
the following command will help you
See lessHow to Redirect non-www to www URLs
Siva
RewriteEngine On RewriteCond %{HTTP_HOST} ^yourdomain.com [NC] RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [L,R=301
How to edit httpd.conf file in Amazon (AWS) EC2
Siva
You have to change the file as the root user. The following command will help to solve the problem: sudo nano /etc/httpd/conf/httpd.conf
You have to change the file as the root user. The following command will help to solve the problem:
See less