├── .github
└── FUNDING.yml
├── .htaccess
├── admin
├── api.php
├── archive.php
├── backup-edit.php
├── backups.php
├── changedata.php
├── components.php
├── cron.php
├── deletefile.php
├── download.php
├── edit.php
├── filebrowser.php
├── health-check.php
├── humans.txt
├── image.php
├── inc
│ ├── ZipArchive.php
│ ├── ajax.php
│ ├── api.class.php
│ ├── api.plugin.php
│ ├── basic.php
│ ├── caching_functions.php
│ ├── common.php
│ ├── configuration.php
│ ├── cookie_functions.php
│ ├── image.class.php
│ ├── imagemanipulation.php
│ ├── logging.class.php
│ ├── login_functions.php
│ ├── nonce.php
│ ├── plugin_functions.php
│ ├── security_functions.php
│ ├── template_functions.php
│ ├── theme_functions.php
│ ├── thumb.php
│ ├── timezone_options.txt
│ ├── tmp
│ │ ├── tmp-404.xml
│ │ ├── tmp-admin.xml
│ │ ├── tmp-components.xml
│ │ ├── tmp-index.xml
│ │ ├── tmp.allow.htaccess
│ │ └── tmp.deny.htaccess
│ └── xss.php
├── index.php
├── lang
│ └── en_US.php
├── load-ajax.php
├── load.php
├── loadtab.php
├── log.php
├── logout.php
├── menu-manager.php
├── navigation.php
├── pages.php
├── plugins.php
├── resetpassword.php
├── settings.php
├── share.php
├── sitemap.php
├── support.php
├── template
│ ├── css-wide.php
│ ├── css.php
│ ├── error_checking.php
│ ├── footer.php
│ ├── header.php
│ ├── ie6.css
│ ├── images
│ │ ├── active.png
│ │ ├── ajax.gif
│ │ ├── ajax_dark.gif
│ │ ├── cancel.png
│ │ ├── capslock.png
│ │ ├── clock.png
│ │ ├── folder.png
│ │ ├── getsimple_logo.gif
│ │ ├── minus.png
│ │ ├── plus.png
│ │ ├── search.png
│ │ ├── tick.png
│ │ └── utick.png
│ ├── include-nav.php
│ ├── js
│ │ ├── ckeditor
│ │ │ ├── CHANGES.md
│ │ │ ├── LICENSE.md
│ │ │ ├── build-config.js
│ │ │ ├── ckeditor.js
│ │ │ ├── config.js
│ │ │ ├── contents.css
│ │ │ ├── lang
│ │ │ │ ├── de.js
│ │ │ │ ├── en.js
│ │ │ │ ├── es.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── it.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ru.js
│ │ │ │ └── sv.js
│ │ │ ├── plugins
│ │ │ │ ├── a11yhelp
│ │ │ │ │ └── dialogs
│ │ │ │ │ │ ├── a11yhelp.js
│ │ │ │ │ │ └── lang
│ │ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ │ ├── af.js
│ │ │ │ │ │ ├── ar.js
│ │ │ │ │ │ ├── bg.js
│ │ │ │ │ │ ├── ca.js
│ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ ├── cy.js
│ │ │ │ │ │ ├── da.js
│ │ │ │ │ │ ├── de-ch.js
│ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ ├── el.js
│ │ │ │ │ │ ├── en-gb.js
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ ├── eo.js
│ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ ├── et.js
│ │ │ │ │ │ ├── eu.js
│ │ │ │ │ │ ├── fa.js
│ │ │ │ │ │ ├── fi.js
│ │ │ │ │ │ ├── fo.js
│ │ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ ├── gu.js
│ │ │ │ │ │ ├── he.js
│ │ │ │ │ │ ├── hi.js
│ │ │ │ │ │ ├── hr.js
│ │ │ │ │ │ ├── hu.js
│ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ ├── ja.js
│ │ │ │ │ │ ├── km.js
│ │ │ │ │ │ ├── ko.js
│ │ │ │ │ │ ├── ku.js
│ │ │ │ │ │ ├── lt.js
│ │ │ │ │ │ ├── lv.js
│ │ │ │ │ │ ├── mk.js
│ │ │ │ │ │ ├── mn.js
│ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ ├── no.js
│ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ ├── pt-br.js
│ │ │ │ │ │ ├── pt.js
│ │ │ │ │ │ ├── ro.js
│ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ ├── si.js
│ │ │ │ │ │ ├── sk.js
│ │ │ │ │ │ ├── sl.js
│ │ │ │ │ │ ├── sq.js
│ │ │ │ │ │ ├── sr-latn.js
│ │ │ │ │ │ ├── sr.js
│ │ │ │ │ │ ├── sv.js
│ │ │ │ │ │ ├── th.js
│ │ │ │ │ │ ├── tr.js
│ │ │ │ │ │ ├── tt.js
│ │ │ │ │ │ ├── ug.js
│ │ │ │ │ │ ├── uk.js
│ │ │ │ │ │ ├── vi.js
│ │ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ │ └── zh.js
│ │ │ │ ├── about
│ │ │ │ │ └── dialogs
│ │ │ │ │ │ ├── about.js
│ │ │ │ │ │ ├── hidpi
│ │ │ │ │ │ └── logo_ckeditor.png
│ │ │ │ │ │ └── logo_ckeditor.png
│ │ │ │ ├── autogrow
│ │ │ │ │ ├── plugin.js
│ │ │ │ │ └── samples
│ │ │ │ │ │ └── autogrow.html
│ │ │ │ ├── clipboard
│ │ │ │ │ └── dialogs
│ │ │ │ │ │ └── paste.js
│ │ │ │ ├── codesnippet
│ │ │ │ │ ├── dialogs
│ │ │ │ │ │ └── codesnippet.js
│ │ │ │ │ ├── icons
│ │ │ │ │ │ ├── codesnippet.png
│ │ │ │ │ │ └── hidpi
│ │ │ │ │ │ │ └── codesnippet.png
│ │ │ │ │ ├── lang
│ │ │ │ │ │ ├── ar.js
│ │ │ │ │ │ ├── bg.js
│ │ │ │ │ │ ├── ca.js
│ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ ├── da.js
│ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ ├── el.js
│ │ │ │ │ │ ├── en-gb.js
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ ├── eo.js
│ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ ├── et.js
│ │ │ │ │ │ ├── eu.js
│ │ │ │ │ │ ├── fa.js
│ │ │ │ │ │ ├── fi.js
│ │ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ ├── he.js
│ │ │ │ │ │ ├── hr.js
│ │ │ │ │ │ ├── hu.js
│ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ ├── ja.js
│ │ │ │ │ │ ├── km.js
│ │ │ │ │ │ ├── ko.js
│ │ │ │ │ │ ├── ku.js
│ │ │ │ │ │ ├── lt.js
│ │ │ │ │ │ ├── lv.js
│ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ ├── no.js
│ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ ├── pt-br.js
│ │ │ │ │ │ ├── pt.js
│ │ │ │ │ │ ├── ro.js
│ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ ├── sk.js
│ │ │ │ │ │ ├── sl.js
│ │ │ │ │ │ ├── sq.js
│ │ │ │ │ │ ├── sv.js
│ │ │ │ │ │ ├── th.js
│ │ │ │ │ │ ├── tr.js
│ │ │ │ │ │ ├── tt.js
│ │ │ │ │ │ ├── ug.js
│ │ │ │ │ │ ├── uk.js
│ │ │ │ │ │ ├── vi.js
│ │ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ │ └── zh.js
│ │ │ │ │ ├── lib
│ │ │ │ │ │ └── highlight
│ │ │ │ │ │ │ ├── CHANGES.md
│ │ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ │ ├── README.ru.md
│ │ │ │ │ │ │ ├── highlight.pack.js
│ │ │ │ │ │ │ └── styles
│ │ │ │ │ │ │ ├── arta.css
│ │ │ │ │ │ │ ├── ascetic.css
│ │ │ │ │ │ │ ├── atelier-dune.dark.css
│ │ │ │ │ │ │ ├── atelier-dune.light.css
│ │ │ │ │ │ │ ├── atelier-forest.dark.css
│ │ │ │ │ │ │ ├── atelier-forest.light.css
│ │ │ │ │ │ │ ├── atelier-heath.dark.css
│ │ │ │ │ │ │ ├── atelier-heath.light.css
│ │ │ │ │ │ │ ├── atelier-lakeside.dark.css
│ │ │ │ │ │ │ ├── atelier-lakeside.light.css
│ │ │ │ │ │ │ ├── atelier-seaside.dark.css
│ │ │ │ │ │ │ ├── atelier-seaside.light.css
│ │ │ │ │ │ │ ├── brown_paper.css
│ │ │ │ │ │ │ ├── brown_papersq.png
│ │ │ │ │ │ │ ├── dark.css
│ │ │ │ │ │ │ ├── default.css
│ │ │ │ │ │ │ ├── docco.css
│ │ │ │ │ │ │ ├── far.css
│ │ │ │ │ │ │ ├── foundation.css
│ │ │ │ │ │ │ ├── github.css
│ │ │ │ │ │ │ ├── googlecode.css
│ │ │ │ │ │ │ ├── idea.css
│ │ │ │ │ │ │ ├── ir_black.css
│ │ │ │ │ │ │ ├── magula.css
│ │ │ │ │ │ │ ├── mono-blue.css
│ │ │ │ │ │ │ ├── monokai.css
│ │ │ │ │ │ │ ├── monokai_sublime.css
│ │ │ │ │ │ │ ├── obsidian.css
│ │ │ │ │ │ │ ├── paraiso.dark.css
│ │ │ │ │ │ │ ├── paraiso.light.css
│ │ │ │ │ │ │ ├── pojoaque.css
│ │ │ │ │ │ │ ├── pojoaque.jpg
│ │ │ │ │ │ │ ├── railscasts.css
│ │ │ │ │ │ │ ├── rainbow.css
│ │ │ │ │ │ │ ├── school_book.css
│ │ │ │ │ │ │ ├── school_book.png
│ │ │ │ │ │ │ ├── solarized_dark.css
│ │ │ │ │ │ │ ├── solarized_light.css
│ │ │ │ │ │ │ ├── sunburst.css
│ │ │ │ │ │ │ ├── tomorrow-night-blue.css
│ │ │ │ │ │ │ ├── tomorrow-night-bright.css
│ │ │ │ │ │ │ ├── tomorrow-night-eighties.css
│ │ │ │ │ │ │ ├── tomorrow-night.css
│ │ │ │ │ │ │ ├── tomorrow.css
│ │ │ │ │ │ │ ├── vs.css
│ │ │ │ │ │ │ ├── xcode.css
│ │ │ │ │ │ │ └── zenburn.css
│ │ │ │ │ ├── plugin.js
│ │ │ │ │ └── samples
│ │ │ │ │ │ └── codesnippet.html
│ │ │ │ ├── colordialog
│ │ │ │ │ └── dialogs
│ │ │ │ │ │ ├── colordialog.css
│ │ │ │ │ │ └── colordialog.js
│ │ │ │ ├── dialog
│ │ │ │ │ └── dialogDefinition.js
│ │ │ │ ├── div
│ │ │ │ │ └── dialogs
│ │ │ │ │ │ └── div.js
│ │ │ │ ├── find
│ │ │ │ │ └── dialogs
│ │ │ │ │ │ └── find.js
│ │ │ │ ├── fixed
│ │ │ │ │ └── plugin.js
│ │ │ │ ├── flash
│ │ │ │ │ ├── dialogs
│ │ │ │ │ │ └── flash.js
│ │ │ │ │ └── images
│ │ │ │ │ │ └── placeholder.png
│ │ │ │ ├── floating-tools
│ │ │ │ │ └── plugin.js
│ │ │ │ ├── forms
│ │ │ │ │ ├── dialogs
│ │ │ │ │ │ ├── button.js
│ │ │ │ │ │ ├── checkbox.js
│ │ │ │ │ │ ├── form.js
│ │ │ │ │ │ ├── hiddenfield.js
│ │ │ │ │ │ ├── radio.js
│ │ │ │ │ │ ├── select.js
│ │ │ │ │ │ ├── textarea.js
│ │ │ │ │ │ └── textfield.js
│ │ │ │ │ └── images
│ │ │ │ │ │ └── hiddenfield.gif
│ │ │ │ ├── icons.png
│ │ │ │ ├── icons_hidpi.png
│ │ │ │ ├── iframe
│ │ │ │ │ ├── dialogs
│ │ │ │ │ │ └── iframe.js
│ │ │ │ │ └── images
│ │ │ │ │ │ └── placeholder.png
│ │ │ │ ├── image
│ │ │ │ │ ├── dialogs
│ │ │ │ │ │ └── image.js
│ │ │ │ │ └── images
│ │ │ │ │ │ └── noimage.png
│ │ │ │ ├── lineutils
│ │ │ │ │ ├── dev
│ │ │ │ │ │ ├── dnd.html
│ │ │ │ │ │ └── magicfinger.html
│ │ │ │ │ └── plugin.js
│ │ │ │ ├── link
│ │ │ │ │ ├── dialogs
│ │ │ │ │ │ ├── anchor.js
│ │ │ │ │ │ └── link.js
│ │ │ │ │ └── images
│ │ │ │ │ │ ├── anchor.png
│ │ │ │ │ │ └── hidpi
│ │ │ │ │ │ └── anchor.png
│ │ │ │ ├── liststyle
│ │ │ │ │ └── dialogs
│ │ │ │ │ │ └── liststyle.js
│ │ │ │ ├── magicline
│ │ │ │ │ └── images
│ │ │ │ │ │ ├── hidpi
│ │ │ │ │ │ ├── icon-rtl.png
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ │ ├── icon-rtl.png
│ │ │ │ │ │ └── icon.png
│ │ │ │ ├── notification
│ │ │ │ │ ├── lang
│ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ ├── da.js
│ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ ├── eo.js
│ │ │ │ │ │ ├── eu.js
│ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ ├── ko.js
│ │ │ │ │ │ ├── ku.js
│ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ ├── pt-br.js
│ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ ├── sv.js
│ │ │ │ │ │ ├── tr.js
│ │ │ │ │ │ ├── ug.js
│ │ │ │ │ │ ├── uk.js
│ │ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ │ └── zh.js
│ │ │ │ │ └── plugin.js
│ │ │ │ ├── pagebreak
│ │ │ │ │ └── images
│ │ │ │ │ │ └── pagebreak.gif
│ │ │ │ ├── pastefromword
│ │ │ │ │ └── filter
│ │ │ │ │ │ └── default.js
│ │ │ │ ├── preview
│ │ │ │ │ └── preview.html
│ │ │ │ ├── scayt
│ │ │ │ │ ├── CHANGELOG.md
│ │ │ │ │ ├── LICENSE.md
│ │ │ │ │ └── dialogs
│ │ │ │ │ │ ├── options.js
│ │ │ │ │ │ └── toolbar.css
│ │ │ │ ├── showblocks
│ │ │ │ │ └── images
│ │ │ │ │ │ ├── block_address.png
│ │ │ │ │ │ ├── block_blockquote.png
│ │ │ │ │ │ ├── block_div.png
│ │ │ │ │ │ ├── block_h1.png
│ │ │ │ │ │ ├── block_h2.png
│ │ │ │ │ │ ├── block_h3.png
│ │ │ │ │ │ ├── block_h4.png
│ │ │ │ │ │ ├── block_h5.png
│ │ │ │ │ │ ├── block_h6.png
│ │ │ │ │ │ ├── block_p.png
│ │ │ │ │ │ └── block_pre.png
│ │ │ │ ├── smiley
│ │ │ │ │ ├── dialogs
│ │ │ │ │ │ └── smiley.js
│ │ │ │ │ └── images
│ │ │ │ │ │ ├── angel_smile.gif
│ │ │ │ │ │ ├── angel_smile.png
│ │ │ │ │ │ ├── angry_smile.gif
│ │ │ │ │ │ ├── angry_smile.png
│ │ │ │ │ │ ├── broken_heart.gif
│ │ │ │ │ │ ├── broken_heart.png
│ │ │ │ │ │ ├── confused_smile.gif
│ │ │ │ │ │ ├── confused_smile.png
│ │ │ │ │ │ ├── cry_smile.gif
│ │ │ │ │ │ ├── cry_smile.png
│ │ │ │ │ │ ├── devil_smile.gif
│ │ │ │ │ │ ├── devil_smile.png
│ │ │ │ │ │ ├── embaressed_smile.gif
│ │ │ │ │ │ ├── embarrassed_smile.gif
│ │ │ │ │ │ ├── embarrassed_smile.png
│ │ │ │ │ │ ├── envelope.gif
│ │ │ │ │ │ ├── envelope.png
│ │ │ │ │ │ ├── heart.gif
│ │ │ │ │ │ ├── heart.png
│ │ │ │ │ │ ├── kiss.gif
│ │ │ │ │ │ ├── kiss.png
│ │ │ │ │ │ ├── lightbulb.gif
│ │ │ │ │ │ ├── lightbulb.png
│ │ │ │ │ │ ├── omg_smile.gif
│ │ │ │ │ │ ├── omg_smile.png
│ │ │ │ │ │ ├── regular_smile.gif
│ │ │ │ │ │ ├── regular_smile.png
│ │ │ │ │ │ ├── sad_smile.gif
│ │ │ │ │ │ ├── sad_smile.png
│ │ │ │ │ │ ├── shades_smile.gif
│ │ │ │ │ │ ├── shades_smile.png
│ │ │ │ │ │ ├── teeth_smile.gif
│ │ │ │ │ │ ├── teeth_smile.png
│ │ │ │ │ │ ├── thumbs_down.gif
│ │ │ │ │ │ ├── thumbs_down.png
│ │ │ │ │ │ ├── thumbs_up.gif
│ │ │ │ │ │ ├── thumbs_up.png
│ │ │ │ │ │ ├── tongue_smile.gif
│ │ │ │ │ │ ├── tongue_smile.png
│ │ │ │ │ │ ├── tounge_smile.gif
│ │ │ │ │ │ ├── whatchutalkingabout_smile.gif
│ │ │ │ │ │ ├── whatchutalkingabout_smile.png
│ │ │ │ │ │ ├── wink_smile.gif
│ │ │ │ │ │ └── wink_smile.png
│ │ │ │ ├── specialchar
│ │ │ │ │ └── dialogs
│ │ │ │ │ │ ├── lang
│ │ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ │ ├── af.js
│ │ │ │ │ │ ├── ar.js
│ │ │ │ │ │ ├── bg.js
│ │ │ │ │ │ ├── ca.js
│ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ ├── cy.js
│ │ │ │ │ │ ├── da.js
│ │ │ │ │ │ ├── de-ch.js
│ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ ├── el.js
│ │ │ │ │ │ ├── en-gb.js
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ ├── eo.js
│ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ ├── et.js
│ │ │ │ │ │ ├── eu.js
│ │ │ │ │ │ ├── fa.js
│ │ │ │ │ │ ├── fi.js
│ │ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ ├── he.js
│ │ │ │ │ │ ├── hr.js
│ │ │ │ │ │ ├── hu.js
│ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ ├── ja.js
│ │ │ │ │ │ ├── km.js
│ │ │ │ │ │ ├── ko.js
│ │ │ │ │ │ ├── ku.js
│ │ │ │ │ │ ├── lt.js
│ │ │ │ │ │ ├── lv.js
│ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ ├── no.js
│ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ ├── pt-br.js
│ │ │ │ │ │ ├── pt.js
│ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ ├── si.js
│ │ │ │ │ │ ├── sk.js
│ │ │ │ │ │ ├── sl.js
│ │ │ │ │ │ ├── sq.js
│ │ │ │ │ │ ├── sv.js
│ │ │ │ │ │ ├── th.js
│ │ │ │ │ │ ├── tr.js
│ │ │ │ │ │ ├── tt.js
│ │ │ │ │ │ ├── ug.js
│ │ │ │ │ │ ├── uk.js
│ │ │ │ │ │ ├── vi.js
│ │ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ │ └── zh.js
│ │ │ │ │ │ └── specialchar.js
│ │ │ │ ├── table
│ │ │ │ │ └── dialogs
│ │ │ │ │ │ └── table.js
│ │ │ │ ├── tabletools
│ │ │ │ │ └── dialogs
│ │ │ │ │ │ └── tableCell.js
│ │ │ │ ├── templates
│ │ │ │ │ ├── dialogs
│ │ │ │ │ │ ├── templates.css
│ │ │ │ │ │ └── templates.js
│ │ │ │ │ └── templates
│ │ │ │ │ │ ├── default.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── template1.gif
│ │ │ │ │ │ ├── template2.gif
│ │ │ │ │ │ └── template3.gif
│ │ │ │ ├── widget
│ │ │ │ │ ├── dev
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ │ ├── contents.css
│ │ │ │ │ │ │ ├── sample.jpg
│ │ │ │ │ │ │ └── simplebox
│ │ │ │ │ │ │ │ ├── contents.css
│ │ │ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ │ └── simplebox.js
│ │ │ │ │ │ │ │ ├── icons
│ │ │ │ │ │ │ │ └── simplebox.png
│ │ │ │ │ │ │ │ └── plugin.js
│ │ │ │ │ │ ├── console.js
│ │ │ │ │ │ ├── nestedwidgets.html
│ │ │ │ │ │ └── widgetstyles.html
│ │ │ │ │ ├── images
│ │ │ │ │ │ └── handle.png
│ │ │ │ │ ├── lang
│ │ │ │ │ │ ├── af.js
│ │ │ │ │ │ ├── ar.js
│ │ │ │ │ │ ├── bg.js
│ │ │ │ │ │ ├── ca.js
│ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ ├── cy.js
│ │ │ │ │ │ ├── da.js
│ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ ├── el.js
│ │ │ │ │ │ ├── en-gb.js
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ ├── eo.js
│ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ ├── eu.js
│ │ │ │ │ │ ├── fa.js
│ │ │ │ │ │ ├── fi.js
│ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ ├── he.js
│ │ │ │ │ │ ├── hr.js
│ │ │ │ │ │ ├── hu.js
│ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ ├── ja.js
│ │ │ │ │ │ ├── km.js
│ │ │ │ │ │ ├── ko.js
│ │ │ │ │ │ ├── ku.js
│ │ │ │ │ │ ├── lv.js
│ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ ├── no.js
│ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ ├── pt-br.js
│ │ │ │ │ │ ├── pt.js
│ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ ├── sk.js
│ │ │ │ │ │ ├── sl.js
│ │ │ │ │ │ ├── sq.js
│ │ │ │ │ │ ├── sv.js
│ │ │ │ │ │ ├── tr.js
│ │ │ │ │ │ ├── tt.js
│ │ │ │ │ │ ├── ug.js
│ │ │ │ │ │ ├── uk.js
│ │ │ │ │ │ ├── vi.js
│ │ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ │ └── zh.js
│ │ │ │ │ └── plugin.js
│ │ │ │ └── wsc
│ │ │ │ │ ├── LICENSE.md
│ │ │ │ │ └── dialogs
│ │ │ │ │ ├── ciframe.html
│ │ │ │ │ ├── tmpFrameset.html
│ │ │ │ │ ├── wsc.css
│ │ │ │ │ ├── wsc.js
│ │ │ │ │ └── wsc_ie.js
│ │ │ ├── skins
│ │ │ │ └── getsimple
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── dialog_ie.css
│ │ │ │ │ ├── dialog_ie7.css
│ │ │ │ │ ├── dialog_ie8.css
│ │ │ │ │ ├── dialog_iequirks.css
│ │ │ │ │ ├── editor.css
│ │ │ │ │ ├── editor_gecko.css
│ │ │ │ │ ├── editor_ie.css
│ │ │ │ │ ├── editor_ie7.css
│ │ │ │ │ ├── editor_ie8.css
│ │ │ │ │ ├── editor_iequirks.css
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── icons_hidpi.png
│ │ │ │ │ ├── images
│ │ │ │ │ ├── arrow.png
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── hidpi
│ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ ├── lock-open.png
│ │ │ │ │ │ ├── lock.png
│ │ │ │ │ │ └── refresh.png
│ │ │ │ │ ├── lock-open.png
│ │ │ │ │ ├── lock.png
│ │ │ │ │ ├── refresh.png
│ │ │ │ │ └── spinner.gif
│ │ │ │ │ ├── readme.md
│ │ │ │ │ └── skin.js
│ │ │ └── styles.js
│ │ ├── codemirror
│ │ │ ├── lib
│ │ │ │ ├── codemirror-compressed.js
│ │ │ │ └── codemirror.css
│ │ │ └── theme
│ │ │ │ └── default.css
│ │ ├── fancybox
│ │ │ ├── blank.gif
│ │ │ ├── fancybox_loading.gif
│ │ │ ├── fancybox_sprite.png
│ │ │ ├── jquery.fancybox.css
│ │ │ └── jquery.fancybox.pack.js
│ │ ├── jcrop
│ │ │ ├── Jcrop.gif
│ │ │ ├── jquery.Jcrop.css
│ │ │ └── jquery.Jcrop.min.js
│ │ ├── jquery-scrolltofixed.js
│ │ ├── jquery-ui.min.js
│ │ ├── jquery.getsimple.js
│ │ ├── jquery.min.js
│ │ └── uploadify
│ │ │ ├── jquery.uploadify.js
│ │ │ └── uploadify.swf
│ ├── sidebar-backups.php
│ ├── sidebar-files.php
│ ├── sidebar-pages.php
│ ├── sidebar-plugins.php
│ ├── sidebar-settings.php
│ ├── sidebar-support.php
│ ├── sidebar-theme.php
│ └── style.php
├── theme-edit.php
├── theme.php
├── upload-uploadify.php
├── upload.php
├── uploadify-check-exists.php
└── zip.php
├── baca.txt
├── backups
├── .htaccess
├── other
│ └── website.xml.bak
├── pages
│ ├── about.bak.xml
│ ├── acara.bak.xml
│ ├── axcora-cms-apps.bak.xml
│ ├── bakery.bak.xml
│ ├── berita.bak.xml
│ ├── bro.bak.xml
│ ├── coffee.bak.xml
│ ├── conss.bak.xml
│ ├── contact-us.bak.xml
│ ├── contactsssss.bak.xml
│ ├── create-title-here.bak.xml
│ ├── drink.bak.xml
│ ├── ekstra.bak.xml
│ ├── fasilitas.bak.xml
│ ├── food.bak.xml
│ ├── gallery.bak.xml
│ ├── get-started.bak.xml
│ ├── halo.bak.xml
│ ├── history.bak.xml
│ ├── how-to-order.bak.xml
│ ├── index.bak.xml
│ ├── info.bak.xml
│ ├── kepala-sekolah.bak.xml
│ ├── kopi-kejawen.bak.xml
│ ├── kurikulum.bak.xml
│ ├── new-age.bak.xml
│ ├── ppdb-online.bak.xml
│ ├── prestasi.bak.xml
│ ├── product.bak.xml
│ ├── profile.bak.xml
│ ├── promosi.bak.xml
│ ├── services.bak.xml
│ ├── snack.bak.xml
│ ├── teacher.bak.xml
│ ├── tes.bak.xml
│ ├── this-article-post-page.bak.xml
│ ├── title-in-here-1.bak.xml
│ ├── title-in-here.bak.xml
│ ├── vision.bak.xml
│ └── welcome.bak.xml
└── users
│ └── axcora.xml.bak
├── data
├── .htaccess
├── cache
│ └── stylesheet.txt
├── other
│ ├── 404.xml
│ ├── authorization.xml
│ ├── components.xml
│ ├── logs
│ │ └── failedlogins.log
│ ├── pages.xml
│ ├── plugins.xml
│ └── website.xml
├── pages
│ ├── acara.xml
│ ├── chat.xml
│ ├── gift.xml
│ ├── index.xml
│ ├── map.xml
│ └── welcome.xml
├── thumbs
│ ├── .htaccess
│ └── index.php
├── uploads
│ ├── .htaccess
│ └── index.php
└── users
│ └── axcora.xml
├── gsconfig.php
├── img
├── article.png
├── file.png
├── login.png
├── post.png
├── setting.png
├── undangan pernikahan online free download gratis source code full (1).jpg
├── undangan pernikahan online free download gratis source code full (1).png
├── undangan pernikahan online free download gratis source code full (2).png
├── undangan pernikahan online free download gratis source code full (3).png
├── undangan pernikahan online free download gratis source code full (4).png
├── undangan pernikahan online free download gratis source code full (5).png
├── undangan pernikahan online free download gratis source code full (6).png
└── undangan pernikahan online free download gratis source code full (7).png
├── index.php
├── plugins
├── .htaccess
├── InnovationPlugin.php
├── InnovationPlugin
│ └── lang
│ │ └── en_US.php
├── anonymous_data.php
└── anonymous_data
│ └── lang
│ └── en_US.php
├── pos
├── data.js
├── index.html
└── readme.md
├── readme.md
├── robots.txt
├── sitemap.xml
└── theme
├── axcora
├── assets
│ ├── css
│ │ └── bootstrap.min.css
│ └── js
│ │ └── dd_belatedpng.js
├── footer.inc.php
├── functions.php
├── header.inc.php
├── sidebar.inc.php
├── style.css
└── template.php
└── styles.css
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | custom: ['https://axcora.com/getaxcoracms','https://www.hockeycomputindo.com/2010/12/blog-post.html','https://axcora.com/sourcecode/']
4 |
--------------------------------------------------------------------------------
/.htaccess:
--------------------------------------------------------------------------------
1 | #
2 | # GetSimple CMS htaccess ROOT file
3 | # apache 2.4
4 | #
5 |
6 | # The following require certain allow overrides, if getting 500 error comment them out one by one
7 | # can be resolved in apache httpd.conf to ensure security alternatives
8 |
9 | # override charset
10 | AddDefaultCharset UTF-8
11 |
12 | # prevent directory listings
13 | Options -Indexes
14 |
15 | # Follow symbolink links, This is required for rewrites on some hosts
16 | Options +FollowSymLinks
17 |
18 | # Set the default handler.
19 | DirectoryIndex index.php
20 |
21 | # blocks direct access to the XML files - they hold all the data!
22 |
'; 16 | foreach ($GS_debug as $log){ 17 | if(is_array($log)) print_r($log).''; 21 | echo '
'; 18 | else print($log.'
'); 19 | } 20 | echo '