Скрипт отключает не нужные разширения.
- Залейте файл
cleanup.php
в папкуadministation
- Перейдите по адресу
https://www.example.com/administrator/cleanup.php
- Выберите те раширение которые надо отключить
- Нажмите
Cleanup
- Удалите файл
cleanup.php
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
.editor { font-family: 'Roboto Mono', monospace; font-size: 12px; outline: none; overflow-y: auto; padding-left: 48px; counter-reset: line; } | |
.editor div { display: block; position: relative; white-space: pre-wrap; } | |
.editor div::before { content: counter(line); counter-increment: line; position: absolute; right: calc(100% + 16px); opacity: 0.5; } | |
</style> | |
</head> |
jQuery(document).ready(function () { | |
// calendar | |
uikit_jcalendar(); | |
// button | |
uikit_jcalendar_btn('#news_created_btn', 'uk-button-primary', 'calendar'); | |
uikit_jcalendar_btn('#news_publish_up_btn', 'uk-button-secondary', 'future'); | |
}); | |
// calendar |
https://cdn.rawgit.com/mfd/b366b05d1265ec42b852b7b2777d6711/raw/04f2ac0f5dcf790c097148cbe2887e798be9cb28/Muller.css
<link rel="https://cdn.rawgit.com/mfd/b366b05d1265ec42b852b7b2777d6711/raw/04f2ac0f5dcf790c097148cbe2887e798be9cb28/Muller.css">
<fieldset name="Todaytags" label="Цвета для тегов"> | |
<field name="repeattable" type="subform" layout="joomla.form.field.subform.repeatable-table" | |
formsource="/modules/mod_test/repeat.xml" multiple="true" | |
label="Subform Field" description="Subform Field Description" /> | |
</fieldset> | |
repeat.xml |
alias rm='rm -i' | |
alias cp='cp -i' | |
alias mv='mv -i' | |
alias ll='ls -l' | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
PS1='\[\e[0;32m\]\u\[\e[m\] \[\e[1;34m\]\w\[\e[m\] \[\e[1;32m\]\$\[\e[m\] \[\e[1;37m\]' |
if [ -f ~/.bashrc ]; then . ~/.bashrc; fi |
#!/usr/bin/env sh | |
------------------------------------------ | |
openssl genrsa -out jbzoo-com-ca.key 2048 | |
openssl req -x509 -new -key jbzoo-com-ca.key -days 10000 -out jbzoo-com-ca.crt | |
openssl genrsa -out jbzoo-com-server.key 2048 | |
openssl req -new -key jbzoo-com-server.key -out jbzoo-com-server.csr | |
openssl x509 -req -in jbzoo-com-server.csr -CA jbzoo-com-ca.crt -sha256 -CAkey jbzoo-com-ca.key -CAcreateserial -out jbzoo-com-server.crt -days 5000 |
<amp-pixel src="https://ssl.google-analytics.com/collect?v=1&tid=UA-12345678-1&t=pageview&cid=$RANDOM&dt=$TITLE&dl=$CANONICAL_URL&z=$RANDOM"></amp-pixel> | |
/* | |
* Required parameters: | |
* v = API version number (currently 1) | |
* tid = Google Analytics property identifier (UA-12345678-1) | |
* t = hit type | |
* cid = client id (you should implement this via cookie etc.) | |
* z = random string to bypass caching (amphtml generates this to $RANDOM variable) |