This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# USE FOR LOCAL DEVELOPMENT ONLY!!! | |
# | |
EMAIL='[email protected]' | |
MYSQL=`which mysql` | |
echo -n "DB user/name for project (lowercase) [ENTER]:" | |
read DB |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mysql -uroot -N -e 'show databases' | while read dbname; do mysqldump -uroot --complete-insert "$dbname" > "$dbname".sql; done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ls -aSd /var/log/nginx/* | grep access | egrep -v '^access.log$|staging|canary|gridpane|.gz' | xargs grep ' 4[0-9][0-9] ' | egrep -v 'xmlrpc.php' | awk '{ print $1" -- "$6" - "$10" - "$7" "$8" "$9}' | sort | uniq -c | sort -n |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~~start~~ Do not remove this comment, Prestashop will keep automatically the code outside this comment when .htaccess will be generated again | |
# .htaccess automaticaly generated by PrestaShop e-commerce open-source solution | |
# http://www.prestashop.com - http://www.prestashop.com/forums | |
<IfModule mod_rewrite.c> | |
<IfModule mod_env.c> | |
SetEnv HTTP_MOD_REWRITE On | |
</IfModule> | |
RewriteEngine on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add Dell GPG key to apt | |
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 1285491434D8786F | |
echo "deb http://linux.dell.com/repo/community/openmanage/930/bionic bionic main" > /etc/apt/sources.list.d/linux.dell.com.sources.list | |
wget http://archive.ubuntu.com/ubuntu/pool/universe/o/openwsman/libwsman-curl-client-transport1_2.6.5-0ubuntu3_amd64.deb | |
wget http://archive.ubuntu.com/ubuntu/pool/universe/o/openwsman/libwsman-client4_2.6.5-0ubuntu3_amd64.deb | |
wget http://archive.ubuntu.com/ubuntu/pool/universe/o/openwsman/libwsman1_2.6.5-0ubuntu3_amd64.deb | |
wget http://archive.ubuntu.com/ubuntu/pool/universe/o/openwsman/libwsman-server1_2.6.5-0ubuntu3_amd64.deb | |
wget http://archive.ubuntu.com/ubuntu/pool/universe/s/sblim-sfcc/libcimcclient0_2.2.8-0ubuntu2_amd64.deb | |
wget http://archive.ubuntu.com/ubuntu/pool/universe/o/openwsman/openwsman_2.6.5-0ubuntu3_amd64.deb | |
wget http://archive.ubuntu.com/ubuntu/pool/multiverse/c/cim-schema/cim-schema_2.48.0-0ubuntu1_all.deb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
300 /** | |
301 * Sends and wipe SFW log | |
302 * | |
303 * @param $db | |
304 * @param $log_table | |
305 * @param string $ct_key API key | |
306 * | |
307 * @return array|bool array('error' => STRING) | |
308 */ | |
309 public static function send_log( $db, $log_table, $ct_key ) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Don't disable on dev | |
if ( ! defined( 'WP_DEBUG' ) || ! WP_DEBUG ) { | |
// Disable core update checking | |
add_filter( 'pre_site_transient_update_core', create_function( '$a', "return null;" ) ); | |
remove_action( 'admin_init', '_maybe_update_core' ); | |
remove_action( 'wp_version_check', 'wp_version_check' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Divi Plugin for Nginx Helper | |
Description: This is a GP helper plugin created for our customers. | |
Author: GridPane | |
Network: true | |
There is another function that you can use and assign it to the save page hook: | |
et_core_page_resource_auto_clear() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Nginx Helper - Role Purge Cache | |
* Plugin URI: https://rtcamp.com/nginx-helper/ | |
* Description: Allows store manager role to purge page and site cache. | |
* Version: 0.1 | |
* Author: Hubert, Koen Adams, Jordan Trask | |
* Author URI: https:// | |
* Text Domain: nginx-helper-store-manager |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- class-wp-snow-effect-public.php 2019-12-17 03:06:06.842908469 +0000 | |
+++ class-wp-snow-effect-public.php.patch 2019-12-17 02:53:58.666773426 +0000 | |
@@ -106,7 +106,9 @@ | |
$show = true; | |
if (wp_is_mobile() && $this->settings['settings_show_on_mobile'] != 'mobile') $show = false; | |
if (is_home() && $this->settings['settings_show_on_home'] != 'home') $show = false; | |
- if (is_page() && $this->settings['settings_show_on_pages'] != 'pages') $show = false; | |
+ if (is_page() && $this->settings['settings_show_on_pages'] != 'pages') { | |
+ if(is_front_page() && $this->settings['settings_show_on_home'] = 'home') $show = true; else $show = false; | |
+ } |
NewerOlder