Skip to content

Instantly share code, notes, and snippets.

View slouma2000's full-sized avatar
๐Ÿ
Venven

Slim OUICHTATI slouma2000

๐Ÿ
Venven
  • MAKE IT DIGITAL TUNISIA
  • TUNISIA
View GitHub Profile
@slouma2000
slouma2000 / getDeviceOrientation
Created November 8, 2014 07:47
getDeviceOrientation
function getDeviceOrientation() {
// window.innerHeight is not supported by IE
var winH = window.innerHeight ? window.innerHeight : jQuery(window).height();
var winW = window.innerWidth ? window.innerWidth : jQuery(window).width();
//force height for iframe usage
if(!winH || winH == 0){
winH = '100%';
}
// set the height of the document
jQuery('html').css('height', winH);
@slouma2000
slouma2000 / multipledomains
Created April 7, 2015 10:12
Multiple domains pointe to the same primarydomain, PLESK 12 change Docmentroot
1. Create a subscription for the additional domain in Plesk
2. Point the DocumentRoot to your primary Multisite domain
DocumentRoot /var/www/vhosts/primarydomain.com/httpdocs
SuexecUserGroup primarydomainuser psacln
<Directory '/var/www/vhosts/primarydomain.com/httpdocs'>
AllowOverride All
</Directory>
3. Disable PHP open_basedir
4. Enable PHP to run as FastCGI on the new DocumentRoot
<Directory /var/www/vhosts/primarydomain.com/httpdocs>
@slouma2000
slouma2000 / wordpress.sql
Last active September 5, 2015 03:00 — forked from andredublin/wordpress.sql
Wordpress search and replace for when you move your site
UPDATE wp_options SET option_value = replace(option_value, 'http://localhost:8888/testing', 'http://www.live-website.com') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'http://localhost:8888/testing','http://www.live-website.com');
UPDATE wp_posts SET post_content = replace(post_content, 'http://localhost:8888/testing', 'http://www.live-website.com');
UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://localhost:8888/testing','http://www.live-website.com');
@slouma2000
slouma2000 / vuejs-filter-limit.txt
Last active September 9, 2019 13:25
Vuejs Filter Limit
Vue.filter('limit', function(array, length) {
var limitCount = parseInt(length, 10);
if (limitCount <= 0) {
("development") !== 'production' && _.warn(
'The limit filter requires an argument defining the limit count.'
);
return array;
}
return array.slice(0, limitCount);
});