In the latest version, dev dependency introduced newly so Install @angular-devkit/build-angular using the following command. npm install --save-dev @angular-devkit/build-angular
In the latest version, dev dependency introduced newly so Install @angular-devkit/build-angular using the following command.
You need to edit your vhosts conf file, you get the conf files in /etc/apache2/sites-available and edit the 000-default.conf <VirtualHost *:80> ServerAdmin webmaster@localhost ServerName widelly.com DocumentRoot /var/www/widelly.com/public_html <Directory /> Options FollowSymLinks AllowORead more
You need to edit your vhosts conf file, you get the conf files in /etc/apache2/sites-available and edit the 000-default.conf
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName widelly.com
DocumentRoot /var/www/widelly.com/public_html
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/widelly.com/public_html>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
Once you added this code don’t forget to restart your apache
It is possible to bookmark a page with JavaScript?
Praveen
You have a simple solution to bookmark the page using the button. HTML button Bookmark Me Add the below script
You have a simple solution to bookmark the page using the button.
HTML button
Add the below script
See lessHow to get category name from Post ID
Praveen
You can use get_the_category to get category name from post ID echo ''. get_the_category( $id )[0]->name .'';
You can use get_the_category to get category name from post ID
echo ''. get_the_category( $id )[0]->name .'';
See lessAn unhandled exception occurred: Could not find module “@angular-devkit/build-angular”
Praveen
In the latest version, dev dependency introduced newly so Install @angular-devkit/build-angular using the following command. npm install --save-dev @angular-devkit/build-angular
In the latest version, dev dependency introduced newly so Install @angular-devkit/build-angular using the following command.
See lessHow disable temporarily a foreign key constraint in MySQL?
Praveen
Set the below code before starting of database SET FOREIGN_KEY_CHECKS=0; and set this below code end of the database SET FOREIGN_KEY_CHECKS=1;
Set the below code before starting of database
and set this below code end of the database
See lessWordPress Permalinks not working on Ubuntu
Praveen
You need to edit your vhosts conf file, you get the conf files in /etc/apache2/sites-available and edit the 000-default.conf <VirtualHost *:80> ServerAdmin webmaster@localhost ServerName widelly.com DocumentRoot /var/www/widelly.com/public_html <Directory /> Options FollowSymLinks AllowORead more
You need to edit your vhosts conf file, you get the conf files in /etc/apache2/sites-available and edit the 000-default.conf
Once you added this code don’t forget to restart your apache
See lessBlock access to wp-admin or wp-login.php
Praveen
Using Block wp-login plugin you can block the access to wp-admin or wp-login.php. Here the link -- https://wordpress.org/plugins/block-wp-login/
Using Block wp-login plugin you can block the access to wp-admin or wp-login.php. Here the link — https://wordpress.org/plugins/block-wp-login/
See less