How to fix slow yum
Firstly test if you don’t have a network issue
If its ok, try to wipe out cache
yum clean all
The problem is still here: install fastestmirror plugin
Notes
Firstly test if you don’t have a network issue
If its ok, try to wipe out cache
yum clean all
The problem is still here: install fastestmirror plugin
Here is described way to remove spam users you got on 2019-03
select * from wp_users where user_registered like '2019-03%';
MariaDB [db]> select * from wp_users where user_registered like '2019-03%';
15215 rows in set (0.027 sec
delete from wp_users where user_registered like '2019-03%';… Read the rest
MariaDB [db]> delete from wp_users where user_registered like '2019-03%';
Query OK, 15204 rows affected (0.682 sec)
Append into your wp-config.php file the following line:
define('ALLOW_UNFILTERED_UPLOADS', true);
More wp-config.php settings here: https://alltime.pp.ua/blog/wordpress-wp-config-php-settings/… Read the rest
It requires a lot of resources, so double check if you have enough
The latest dev version to drush/ folder:
mkdir drush
cd drush
curl -sS https://getcomposer.org/installer | php
./composer.phar require drush/drush:dev-master
cd
echo "alias drush='~/drush/vendor/bin/drush'" >> .bashrc
source .bashrc
Drush 9 version
mkdir drush9… Read the rest
cd drush9
curl -sS https://getcomposer.org/installer
Issue:
ps axufS |grep tailwatchd
Output:
root 3052360 0.0 0.0 114756 984 pts/6 S+ 00:45 0:00 | _ grep --color=auto tailwatchd
root 1916299 0.0 0.0 53500 10412 ? S 2018 1:59 tailwatchd
Long way:
ps auxfS |grep tailwatchd |grep -v grep… Read the rest
Output:
root 1184626 0.0 0.0 52160 11424 ?
Just do reinstall
cd /usr/local/cpanel
rm -rf cloudflare*
curl -k -L https://github.com/cloudflare/CloudFlare-CPanel/tarball/master > cloudflare.tar.gz
tar -zxvf cloudflare.tar.gz
cd /usr/local/cpanel/cloudflare-Cloudflare-CPanel-*
./cloudflare.install.sh -k YOUR_KEY_HERE -n LABEL_HERE
Another way:
bash <(curl -s https://raw.githubusercontent.com/cloudflare/CloudFlare-CPanel/master/cloudflare.install.sh) -k YOUR_KEY_HERE -n COMPANY_NMAME_HERE
Source:
https://support.cloudflare.com/hc/en-us/articles/204010320-How-can-I-get-started-with-Cloudflare-s-cPanel-plugin-… Read the rest
<?php… Read the rest
/**
@file
The PHP page that serves all page requests on a Drupal installation.
*
All Drupal code is released under the GNU General Public License.
See COPYRIGHT.txt and LICENSE.txt files in the "core" directory.
*/
use Drupal\Core\DrupalKernel;
use Symfony\Component\HttpFoundation\Request;
$autoloader = require_once 'autoload.php';
First of all backup your current website’s version (files/folders/database)
Supposed you have ZenCart on yourdomain.com pointed to /home/USERNAME/public_html
So, we will upgrade your ZenCart to /home/USERNAME/public_html/shop to prevent any issue with your current installation.
Create sub domain shop.yourdomain.com and point it to /home/USERNAME/public_html/shop
Create if needed shop folder under /home/USERNAME/public_html/
mkdir -p shop
cd shop/
Download the latest version
wget https://sourceforge.net/projects/zencart/files/CURRENT%20-%20Zen%20Cart%201.5.x%20Series/zen-cart-v1.5.5f-12312017b.zip… Read the rest
The primaries are put between square brackets to indicate the test of a conditional expression
[ -a FILE ] True if FILE exists.… Read the rest
[ -b FILE ] True if FILE exists and is a block-special file.
[ -c FILE ] True if FILE exists and is a character-special file.