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
// AJAX paging | |
jQuery('.pagination a').live('click', | |
function(e) | |
{ | |
//check when pagination link is clicked and stop its action. | |
e.preventDefault(); | |
var mainWrapper = '#page-content .container'; | |
var mainContent = '#content'; | |
var link = jQuery(this).attr('href'); //Get the href attribute |
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 | |
// CSV export Sunlight CMS for Wordpress, with plugin: https://wordpress.org/plugins/really-simple-csv-importer/ | |
ini_set('display_errors', 1); | |
ini_set('display_startup_errors', 1); | |
error_reporting(E_ALL); | |
/* --- kontrola jadra --- */ | |
if(!defined('_core')) exit; |
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
// EMOJI | |
remove_action( 'wp_print_styles', 'print_emoji_styles'); | |
remove_action( 'wp_head','print_emoji_detection_script', 7); | |
// GENERATOR | |
add_action( 'get_the_generator_html', '_fc_return_null', 10, 2 ); | |
add_action( 'get_the_generator_xhtml', '_fc_return_null', 10, 2 ); | |
function _fc_return_null(){ | |
return null; | |
} |
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
# call this script on root permissions (ubuntu: sudo sh /path-to-file/localhostSetup.sh) | |
# upload limit | |
sed -i 's/post_max_size = 8M/post_max_size = 4000M/g' /etc/php/7.0/apache2/php.ini | |
sed -i 's/upload_max_filesize = 2M/upload_max_filesize = 4000M/g' /etc/php/7.0/apache2/php.ini | |
# timeout from 30s to 1 half hour | |
sed -i 's/max_execution_time = 30/max_execution_time = 1800/g' /etc/php/7.0/apache2/php.ini | |
# error reporting |
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
# readme: run on sudo (sudo /path-to-file/localhostInstall.sh) | |
# git | |
apt-get install git-all | |
# composer | |
apt install composer | |
# install apache | |
apt-get install apache2 |
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/sh | |
BASEDIR=$(pwd) | |
FILE="~/.local/share/applications/avocode.desktop" | |
/bin/cat <<EOM >$FILE | |
[Desktop Entry] | |
Name=Avocode | |
Comment=The bridge between designers and developers | |
GenericName=Design Inspector |
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
SET @old_domain = 'http://olddomain.com'; | |
SET @new_domain = 'http://newdomain.com'; | |
UPDATE wp_options SET option_value = replace(option_value, @old_domain, @new_domain) WHERE option_name = 'home' OR option_name = 'siteurl'; | |
UPDATE wp_posts SET guid = REPLACE (guid, @old_domain, @new_domain); | |
UPDATE wp_posts SET post_content = REPLACE (post_content, @old_domain, @new_domain); | |
UPDATE wp_postmeta SET meta_value = REPLACE (meta_value, @old_domain, @new_domain); |
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 | |
namespace Nette\Forms\Controls; | |
use App\Components\Imager; | |
use Nette; | |
use Nette\Http\FileUpload; | |
use Nette\Utils\Html; | |
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
<ifModule mod_gzip.c> | |
mod_gzip_on Yes | |
mod_gzip_dechunk Yes | |
mod_gzip_item_include file .(html?|txt|css|js|php|pl)$ | |
mod_gzip_item_include handler ^cgi-script$ | |
mod_gzip_item_include mime ^text/.* | |
mod_gzip_item_include mime ^application/x-javascript.* | |
mod_gzip_item_exclude mime ^image/.* | |
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.* | |
</ifModule> |
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 | |
################################################################# | |
# Complete build script for Drupal 8 projects | |
# Author: Michal Landsman <[email protected]> | |
################################################################# | |
# check bash version | |
if [ "${BASH_VERSION:0:1}" = "3" ] | |
then |
OlderNewer