UPDATE your_table_name SET `column_name` = REPLACE(`column_name`, 'CurrentString', 'To_replace_String');
UPDATE your_table_name SET `column_name` = REPLACE(`column_name`, 'CurrentString', 'To_replace_String');
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
OR
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
OR
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
OR
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install nodejs
node -v
npm -v
$ git remote -v
(remote name like – origin) repository url (fetch)
(remote name like – origin) repository url (push)
2. Remove Remote
$ git remote rm (remote name like – origin)
3. then add new remote
$ git remote add origin repo url
2. copy csr file and paste third party ssl provider website, then verify domain
3. After verify domain third party given certificate file (like cert.crt), bundle file(like bundle.crt or bundle.ca-bundle)
4. edit in apache sites conf file
Add at last in file
user_sub_token=$USER
allow_writeable_chroot=YES
mod_wsgi-express module-config
sudo mysql
UPDATE mysql.user SET plugin="mysql_native_password" WHERE User='root';
UPDATE mysql.user SET authentication_string=PASSWORD("password") WHERE User='root';
FLUSH PRIVIlEGES;
quit
sudo service mysql restart
<VirtualHost *:80>
ServerName domain.com
ServerAlias www.domain.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/(python project folder Name)
<Directory /var/www/html/(python project folder Name)>
AllowOverride All
</Directory>
Alias /static /var/www/html/(python project folder Name)/static
<Directory /var/www/html/(python project folder Name)/static>
Require all granted
</Directory>
Alias /static /var/www/html/(python project folder Name)/media
<Directory /var/www/html/(python project folder Name)/media>
Require all granted
</Directory>
<Directory /var/www/html/(python project folder Name)/(python project folder Name)>
<Files wsgi.py>
Require all granted
</Files>
Require all granted
</Directory>
LoadModule wsgi_module “/var/www/html/myenv/lib/python3.6/site-packages/mod_wsgi/server/mod_wsgi-py36.cpython-36m-x86_64-linux-gnu.so”
WSGIDaemonProcess myenv1 python-path=/var/www/html/(python project folder Name):/var/www/html/myenv/lib/python3.6/site-packages
WSGIProcessGroup myenv1
WSGIScriptAlias / /var/www/(python project folder Name)/(python project folder Name)/wsgi.py
WSGIPassAuthorization On
WSGIApplicationGroup %{GLOBAL}
</VirtualHost>