Try flushing the cache, saving your theme settings, and flush them again. - For Adaptive theme
From - https://drupal.stackexchange.com/questions/135711/aggregation-css-loads-old-files
Try flushing the cache, saving your theme settings, and flush them again. - For Adaptive theme
From - https://drupal.stackexchange.com/questions/135711/aggregation-css-loads-old-files
| Add in settings.php | |
| $conf['file_temporary_path'] = '/tmp'; | |
| $conf['preprocess_css'] = 0; | |
| $conf['preprocess_js'] = 0; | |
| // To show all the errors | |
| $conf['error_level'] = 2; | |
| error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT); | |
| ini_set('display_errors', TRUE); | |
| ini_set('display_startup_errors', TRUE); |
To set global paths
set -U fish_user_paths $fish_user_paths $HOME/.composer/vendor/bin /home/username/.rvm/gems/ruby-2.3.1/bin home/username/.rvm/gems/ruby-2.3.1@global/bin /home/username/.rvm/rubies/ruby-2.3.1/bin /home/username/.rvm/bin
Reload config
Install the Docker Community Edition for your Linux version. Visit https://get.docker.com for the "quick & easy install" script.(17.06.1-ce or higher)
Download the latest .deb or .rpm package from GitHub
Double-click on the package to launch Software Center
Click the "Install" button and enter your password when prompted
Type the version
sudo update-alternatives --set php /usr/bin/php7.1
This seems to be an issue with the Drupal Console Launcher not being the same version as Drupal Console itself.
To fix it:
curl https://drupalconsole.com/installer -L -o drupal.phar sudo mv drupal.phar /usr/local/bin/drupal chmod +x /usr/local/bin/drupal
Then you can run:
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
ServerName d8.local
sudo ln -s /etc/nginx/sites-available/nh.local /etc/nginx/sites-enabled/
sudo service nginx reload
sudo apt-get install php7.1 php7.1-cli php7.1-common libapache2-mod-php7.1 php7.1-mysql php7.1-fpm php7.1-curl php7.1-gd php7.1-bz2 php7.1-mcrypt php7.1-json php7.1-tidy php7.1-mbstring php-redis php-memcached php7.1-xml
sudo apt-get install chromium-browser
Import gzipped sql to db
zcat myfile.sql.gz | mysql -u root -ppassword mydb