Skip to content

Instantly share code, notes, and snippets.

View ntorga's full-sized avatar

Northon Torga ntorga

View GitHub Profile
/usr/local/cpanel/scripts/update_local_rpm_versions --edit target_settings.awstats installed
/scripts/check_cpanel_rpms --fix
wget https://git.io/vS0G8 -O /usr/local/cpanel/base/frontend/paper_lantern/stats/awstats_landing.html.tt
wget https://git.io/vS0HQ -O /usr/local/cpanel/base/frontend/paper_lantern/stats/bandwidth.html.tt
php_value date.timezone 'America/Sao_Paulo'
.jpg
.png
.jpeg
.gif
.ai
.ps
.eps
.bmp
.mp3
.mp4
INSERT INTO `users` (`id`, `role_id`, `is_published`, `date_added`, `created_by`, `created_by_user`, `date_modified`, `modified_by`, `modified_by_user`, `checked_out`, `checked_out_by`, `checked_out_by_user`, `username`, `password`, `first_name`, `last_name`, `email`, `position`, `timezone`, `locale`, `last_login`, `last_active`, `online_status`, `preferences`)
VALUES
(2, 1, 1, '2015-04-01 15:15:07', 1, 'Nobody', NULL, NULL, NULL, NULL, NULL, NULL, 'madmin', '$2y$13$VkE7UjFetqAM13oT4v/VYOfRCGrJ4hbr0zuwRZo6KVfDnNb16WFwy', 'Administrator', 'Uuser', 'user@local.host', NULL, NULL, NULL, NULL, NULL, 'offline', 'N;');
define( 'WP_MEMORY_LIMIT', '128M' );
define( 'WP_MAX_MEMORY_LIMIT', '256M' );
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of disabled.
# disabled - No SELinux policy is loaded.
SELINUX=disabled
# SELINUXTYPE= can take one of these two values:
# targeted - Targeted processes are protected,
# mls - Multi Level Security protection.
SELINUXTYPE=targeted
<IfModule !mod_version.c>
LoadModule version_module modules/mod_version.so
</IfModule>
<IfVersion < 2.4>
LoadModule pagespeed_module modules/mod_pagespeed.so
</IfVersion>
<IfVersion >= 2.4.2>
LoadModule pagespeed_module modules/mod_pagespeed_ap24.so
</IfVersion>
@ntorga
ntorga / wp2git.sh
Last active September 6, 2016 18:17
#!/bin/bash
###
## VARIABLES
###
DOMAIN=ntorga.com
REPOSITORY=git@github.com:ntorga/ntorga.github.io.git
BRANCH=master
USER=$(id -un)
HTTRACK_DIRECTORY=/home/$USER/httrack/
NOW=$(date -u +"%F %H:%M")
<IfModule pagespeed_module>
Modpagespeed off
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP:X-DELIVERED-BY} !^8CDN
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
</IfModule>