├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── content ├── database │ ├── .htaccess │ └── index.php ├── db.php ├── index.php ├── plugins │ ├── index.php │ └── wp-mailfrom-ii │ │ ├── lang │ │ ├── wp-mailfrom-ii-da_DK.mo │ │ ├── wp-mailfrom-ii-da_DK.po │ │ ├── wp-mailfrom-ii-en_GB.mo │ │ └── wp-mailfrom-ii-en_GB.po │ │ ├── readme.txt │ │ └── wp-mailfrom-ii.php ├── sucuri │ ├── .htaccess │ ├── index.html │ ├── sucuri-integrity.php │ └── sucuri-lastlogins.php └── themes │ ├── index.php │ ├── twentyfifteen │ ├── 404.php │ ├── archive.php │ ├── author-bio.php │ ├── comments.php │ ├── content-link.php │ ├── content-none.php │ ├── content-page.php │ ├── content-search.php │ ├── content.php │ ├── css │ │ ├── editor-style.css │ │ ├── ie.css │ │ └── ie7.css │ ├── footer.php │ ├── functions.php │ ├── genericons │ │ ├── COPYING.txt │ │ ├── Genericons.eot │ │ ├── Genericons.svg │ │ ├── Genericons.ttf │ │ ├── Genericons.woff │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── genericons.css │ ├── header.php │ ├── image.php │ ├── inc │ │ ├── back-compat.php │ │ ├── custom-header.php │ │ ├── customizer.php │ │ └── template-tags.php │ ├── index.php │ ├── js │ │ ├── color-scheme-control.js │ │ ├── customize-preview.js │ │ ├── functions.js │ │ ├── html5.js │ │ ├── keyboard-image-navigation.js │ │ └── skip-link-focus-fix.js │ ├── languages │ │ └── twentyfifteen.pot │ ├── page.php │ ├── readme.txt │ ├── rtl.css │ ├── screenshot.png │ ├── search.php │ ├── sidebar.php │ ├── single.php │ └── style.css │ ├── twentyfourteen │ ├── 404.php │ ├── archive.php │ ├── author.php │ ├── category.php │ ├── comments.php │ ├── content-aside.php │ ├── content-audio.php │ ├── content-featured-post.php │ ├── content-gallery.php │ ├── content-image.php │ ├── content-link.php │ ├── content-none.php │ ├── content-page.php │ ├── content-quote.php │ ├── content-video.php │ ├── content.php │ ├── css │ │ ├── editor-style.css │ │ └── ie.css │ ├── featured-content.php │ ├── footer.php │ ├── functions.php │ ├── genericons │ │ ├── COPYING.txt │ │ ├── Genericons-Regular.otf │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── font │ │ │ ├── genericons-regular-webfont.eot │ │ │ ├── genericons-regular-webfont.svg │ │ │ ├── genericons-regular-webfont.ttf │ │ │ └── genericons-regular-webfont.woff │ │ └── genericons.css │ ├── header.php │ ├── image.php │ ├── images │ │ ├── pattern-dark.svg │ │ └── pattern-light.svg │ ├── inc │ │ ├── back-compat.php │ │ ├── custom-header.php │ │ ├── customizer.php │ │ ├── featured-content.php │ │ ├── template-tags.php │ │ └── widgets.php │ ├── index.php │ ├── js │ │ ├── customizer.js │ │ ├── featured-content-admin.js │ │ ├── functions.js │ │ ├── html5.js │ │ ├── keyboard-image-navigation.js │ │ └── slider.js │ ├── languages │ │ └── twentyfourteen.pot │ ├── page-templates │ │ ├── contributors.php │ │ └── full-width.php │ ├── page.php │ ├── rtl.css │ ├── screenshot.png │ ├── search.php │ ├── sidebar-content.php │ ├── sidebar-footer.php │ ├── sidebar.php │ ├── single.php │ ├── style.css │ ├── tag.php │ └── taxonomy-post_format.php │ └── twentythirteen │ ├── 404.php │ ├── archive.php │ ├── author-bio.php │ ├── author.php │ ├── category.php │ ├── comments.php │ ├── content-aside.php │ ├── content-audio.php │ ├── content-chat.php │ ├── content-gallery.php │ ├── content-image.php │ ├── content-link.php │ ├── content-none.php │ ├── content-quote.php │ ├── content-status.php │ ├── content-video.php │ ├── content.php │ ├── css │ ├── editor-style.css │ └── ie.css │ ├── footer.php │ ├── functions.php │ ├── genericons │ ├── COPYING.txt │ ├── Genericons-Regular.otf │ ├── LICENSE.txt │ ├── README.txt │ ├── font │ │ ├── genericons-regular-webfont.eot │ │ ├── genericons-regular-webfont.svg │ │ ├── genericons-regular-webfont.ttf │ │ └── genericons-regular-webfont.woff │ └── genericons.css │ ├── header.php │ ├── image.php │ ├── images │ ├── dotted-line-2x.png │ ├── dotted-line-light-2x.png │ ├── dotted-line-light.png │ ├── dotted-line.png │ ├── headers │ │ ├── circle-thumbnail.png │ │ ├── circle.png │ │ ├── diamond-thumbnail.png │ │ ├── diamond.png │ │ ├── star-thumbnail.png │ │ └── star.png │ ├── search-icon-2x.png │ └── search-icon.png │ ├── inc │ ├── back-compat.php │ └── custom-header.php │ ├── index.php │ ├── js │ ├── functions.js │ ├── html5.js │ └── theme-customizer.js │ ├── languages │ └── twentythirteen.pot │ ├── page.php │ ├── rtl.css │ ├── screenshot.png │ ├── search.php │ ├── sidebar-main.php │ ├── sidebar.php │ ├── single.php │ ├── style.css │ ├── tag.php │ └── taxonomy-post_format.php ├── cpanel-cronjob.sh ├── index.php └── wp-config.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/wordpress-speedtest/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.css linguist-language=PHP 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/wordpress-speedtest/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/wordpress-speedtest/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/wordpress-speedtest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/wordpress-speedtest/HEAD/README.md -------------------------------------------------------------------------------- /content/database/.htaccess: -------------------------------------------------------------------------------- 1 | DENY FROM ALL -------------------------------------------------------------------------------- /content/database/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/db.php: -------------------------------------------------------------------------------- 1 | plugins/sqlite-integration/db.php -------------------------------------------------------------------------------- /content/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/sucuri/sucuri-integrity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szepeviktor/wordpress-speedtest/HEAD/content/sucuri/sucuri-integrity.php -------------------------------------------------------------------------------- /content/sucuri/sucuri-lastlogins.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /content/themes/index.php: -------------------------------------------------------------------------------- 1 |