File manager - Edit - /var/www/html/wordpress/.tmb/readme.txt.tar
Back
var/www/html/wordpress/wp-includes/ID3/readme.txt 0000775 00000063332 15027007163 0016000 0 ustar 00 ///////////////////////////////////////////////////////////////// /// getID3() by James Heinrich <info@getid3.org> // // available at http://getid3.sourceforge.net // // or https://www.getid3.org // // also https://github.com/JamesHeinrich/getID3 // ///////////////////////////////////////////////////////////////// ***************************************************************** ***************************************************************** getID3() is released under multiple licenses. You may choose from the following licenses, and use getID3 according to the terms of the license most suitable to your project. GNU GPL: https://gnu.org/licenses/gpl.html (v3) https://gnu.org/licenses/old-licenses/gpl-2.0.html (v2) https://gnu.org/licenses/old-licenses/gpl-1.0.html (v1) GNU LGPL: https://gnu.org/licenses/lgpl.html (v3) Mozilla MPL: https://www.mozilla.org/MPL/2.0/ (v2) getID3 Commercial License: https://www.getid3.org/#gCL (no longer available, existing licenses remain valid) ***************************************************************** ***************************************************************** Copies of each of the above licenses are included in the 'licenses' directory of the getID3 distribution. +----------------------------------------------+ | If you want to donate, there is a link on | | https://www.getid3.org for PayPal donations. | +----------------------------------------------+ Quick Start =========================================================================== Q: How can I check that getID3() works on my server/files? A: Unzip getID3() to a directory, then access /demos/demo.browse.php Support =========================================================================== Q: I have a question, or I found a bug. What do I do? A: The preferred method of support requests and/or bug reports is the forum at http://support.getid3.org/ Sourceforge Notification =========================================================================== It's highly recommended that you sign up for notification from Sourceforge for when new versions are released. Please visit: http://sourceforge.net/project/showfiles.php?group_id=55859 and click the little "monitor package" icon/link. If you're previously signed up for the mailing list, be aware that it has been discontinued, only the automated Sourceforge notification will be used from now on. What does getID3() do? =========================================================================== Reads & parses (to varying degrees): ¤ tags: * APE (v1 and v2) * ID3v1 (& ID3v1.1) * ID3v2 (v2.4, v2.3, v2.2) * Lyrics3 (v1 & v2) ¤ audio-lossy: * MP3/MP2/MP1 * MPC / Musepack * Ogg (Vorbis, OggFLAC, Speex, Opus) * AAC / MP4 * AC3 * DTS * RealAudio * Speex * DSS * VQF ¤ audio-lossless: * AIFF * AU * Bonk * CD-audio (*.cda) * FLAC * LA (Lossless Audio) * LiteWave * LPAC * MIDI * Monkey's Audio * OptimFROG * RKAU * Shorten * TTA * VOC * WAV (RIFF) * WavPack ¤ audio-video: * ASF: ASF, Windows Media Audio (WMA), Windows Media Video (WMV) * AVI (RIFF) * Flash * Matroska (MKV) * MPEG-1 / MPEG-2 * NSV (Nullsoft Streaming Video) * Quicktime (including MP4) * RealVideo ¤ still image: * BMP * GIF * JPEG * PNG * TIFF * SWF (Flash) * PhotoCD ¤ data: * ISO-9660 CD-ROM image (directory structure) * SZIP (limited support) * ZIP (directory structure) * TAR * CUE Writes: * ID3v1 (& ID3v1.1) * ID3v2 (v2.3 & v2.4) * VorbisComment on OggVorbis * VorbisComment on FLAC (not OggFLAC) * APE v2 * Lyrics3 (delete only) Requirements =========================================================================== * PHP 4.2.0 up to 5.2.x for getID3() 1.7.x (and earlier) * PHP 5.0.5 (or higher) for getID3() 1.8.x (and up) * PHP 5.3.0 (or higher) for getID3() 1.9.17 (and up) * PHP 5.3.0 (or higher) for getID3() 2.0.x (and up) * at least 4MB memory for PHP. 8MB or more is highly recommended. 12MB is required with all modules loaded. Usage =========================================================================== See /demos/demo.basic.php for a very basic use of getID3() with no fancy output, just scanning one file. See structure.txt for the returned data structure. *> For an example of a complete directory-browsing, <* *> file-scanning implementation of getID3(), please run <* *> /demos/demo.browse.php <* See /demos/demo.mysql.php for a sample recursive scanning code that scans every file in a given directory, and all sub-directories, stores the results in a database and allows various analysis / maintenance operations To analyze remote files over HTTP or FTP you need to copy the file locally first before running getID3(). Your code would look something like this: // Copy remote file locally to scan with getID3() $remotefilename = 'http://www.example.com/filename.mp3'; if ($fp_remote = fopen($remotefilename, 'rb')) { $localtempfilename = tempnam('/tmp', 'getID3'); if ($fp_local = fopen($localtempfilename, 'wb')) { while ($buffer = fread($fp_remote, 32768)) { fwrite($fp_local, $buffer); } fclose($fp_local); $remote_headers = array_change_key_case(get_headers($remotefilename, 1), CASE_LOWER); $remote_filesize = (isset($remote_headers['content-length']) ? (is_array($remote_headers['content-length']) ? $remote_headers['content-length'][count($remote_headers['content-length']) - 1] : $remote_headers['content-length']) : null); // Initialize getID3 engine $getID3 = new getID3; $ThisFileInfo = $getID3->analyze($localtempfilename, $remote_filesize, basename($remotefilename)); // Delete temporary file unlink($localtempfilename); } fclose($fp_remote); } Note: since v1.9.9-20150212 it is possible a second and third parameter to $getID3->analyze(), for original filesize and original filename respectively. This permits you to download only a portion of a large remote file but get accurate playtime estimates, assuming the format only requires the beginning of the file for correct format analysis. See /demos/demo.write.php for how to write tags. What does the returned data structure look like? =========================================================================== See structure.txt It is recommended that you look at the output of /demos/demo.browse.php scanning the file(s) you're interested in to confirm what data is actually returned for any particular filetype in general, and your files in particular, as the actual data returned may vary considerably depending on what information is available in the file itself. Notes =========================================================================== getID3() 1.x: If the format parser encounters a critical problem, it will return something in $fileinfo['error'], describing the encountered error. If a less critical error or notice is generated it will appear in $fileinfo['warning']. Both keys may contain more than one warning or error. If something is returned in ['error'] then the file was not correctly parsed and returned data may or may not be correct and/or complete. If something is returned in ['warning'] (and not ['error']) then the data that is returned is OK - usually getID3() is reporting errors in the file that have been worked around due to known bugs in other programs. Some warnings may indicate that the data that is returned is OK but that some data could not be extracted due to errors in the file. getID3() 2.x: See above except errors are thrown (so you will only get one error). Disclaimer =========================================================================== getID3() has been tested on many systems, on many types of files, under many operating systems, and is generally believe to be stable and safe. That being said, there is still the chance there is an undiscovered and/or unfixed bug that may potentially corrupt your file, especially within the writing functions. By using getID3() you agree that it's not my fault if any of your files are corrupted. In fact, I'm not liable for anything :) License =========================================================================== GNU General Public License - see license.txt This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to: Free Software Foundation, Inc. 59 Temple Place - Suite 330 Boston, MA 02111-1307, USA. FAQ: Q: Can I use getID3() in my program? Do I need a commercial license? A: You're generally free to use getID3 however you see fit. The only case in which you would require a commercial license is if you're selling your closed-source program that integrates getID3. If you sell your program including a copy of getID3, that's fine as long as you include a copy of the sourcecode when you sell it. Or you can distribute your code without getID3 and say "download it from getid3.sourceforge.net" Why is it called "getID3()" if it does so much more than just that? =========================================================================== v0.1 did in fact just do that. I don't have a copy of code that old, but I could essentially write it today with a one-line function: function getID3($filename) { return unpack('a3TAG/a30title/a30artist/a30album/a4year/a28comment/c1track/c1genreid', substr(file_get_contents($filename), -128)); } Future Plans =========================================================================== https://www.getid3.org/phpBB3/viewforum.php?f=7 * Better support for MP4 container format * Scan for appended ID3v2 tag at end of file per ID3v2.4 specs (Section 5.0) * Support for JPEG-2000 (http://www.morgan-multimedia.com/jpeg2000_overview.htm) * Support for MOD (mod/stm/s3m/it/xm/mtm/ult/669) * Support for ACE (thanks Vince) * Support for Ogg other than Vorbis, Speex and OggFlac (ie. Ogg+Xvid) * Ability to create Xing/LAME VBR header for VBR MP3s that are missing VBR header * Ability to "clean" ID3v2 padding (replace invalid padding with valid padding) * Warn if MP3s change version mid-stream (in full-scan mode) * check for corrupt/broken mid-file MP3 streams in histogram scan * Support for lossless-compression formats (http://www.firstpr.com.au/audiocomp/lossless/#Links) (http://compression.ca/act-sound.html) (http://web.inter.nl.net/users/hvdh/lossless/lossless.htm) * Support for RIFF-INFO chunks * http://lotto.st-andrews.ac.uk/~njh/tag_interchange.html (thanks Nick Humfrey <njhØsurgeradio*co*uk>) * http://abcavi.narod.ru/sof/abcavi/infotags.htm (thanks Kibi) * Better support for Bink video * http://www.hr/josip/DSP/AudioFile2.html * http://www.pcisys.net/~melanson/codecs/ * Detect mp3PRO * Support for PSD * Support for JPC * Support for JP2 * Support for JPX * Support for JB2 * Support for IFF * Support for ICO * Support for ANI * Support for EXE (comments, author, etc) (thanks p*quaedackersØplanet*nl) * Support for DVD-IFO (region, subtitles, aspect ratio, etc) (thanks p*quaedackersØplanet*nl) * More complete support for SWF - parsing encapsulated MP3 and/or JPEG content (thanks n8n8Øyahoo*com) * Support for a2b * Optional scan-through-frames for AVI verification (thanks rockcohenØmassive-interactive*nl) * Support for TTF (thanks infoØbutterflyx*com) * Support for DSS (https://www.getid3.org/phpBB3/viewtopic.php?t=171) * Support for SMAF (http://smaf-yamaha.com/what/demo.html) https://www.getid3.org/phpBB3/viewtopic.php?t=182 * Support for AMR (https://www.getid3.org/phpBB3/viewtopic.php?t=195) * Support for 3gpp (https://www.getid3.org/phpBB3/viewtopic.php?t=195) * Support for ID4 (http://www.wackysoft.cjb.net grizlyY2KØhotmail*com) * Parse XML data returned in Ogg comments * Parse XML data from Quicktime SMIL metafiles (klausrathØmac*com) * ID3v2 genre string creator function * More complete parsing of JPG * Support for all old-style ASF packets * ASF/WMA/WMV tag writing * Parse declared T??? ID3v2 text information frames, where appropriate (thanks Christian Fritz for the idea) * Recognize encoder: http://www.guerillasoft.com/EncSpot2/index.html http://ff123.net/identify.html http://www.hydrogenaudio.org/?act=ST&f=16&t=9414 http://www.hydrogenaudio.org/?showtopic=11785 * Support for other OS/2 bitmap structures: Bitmap Array('BA'), Color Icon('CI'), Color Pointer('CP'), Icon('IC'), Pointer ('PT') http://netghost.narod.ru/gff/graphics/summary/os2bmp.htm * Support for WavPack RAW mode * ASF/WMA/WMV data packet parsing * ID3v2FrameFlagsLookupTagAlter() * ID3v2FrameFlagsLookupFileAlter() * obey ID3v2 tag alter/preserve/discard rules * http://www.geocities.com/SiliconValley/Sector/9654/Softdoc/Illyrium/Aolyr.htm * proper checking for LINK/LNK frame validity in ID3v2 writing * proper checking for ASPI-TLEN frame validity in ID3v2 writing * proper checking for COMR frame validity in ID3v2 writing * http://www.geocities.co.jp/SiliconValley-Oakland/3664/index.html * decode GEOB ID3v2 structure as encoded by RealJukebox, decode NCON ID3v2 structure as encoded by MusicMatch (probably won't happen - the formats are proprietary) Known Bugs/Issues in getID3() that may be fixed eventually =========================================================================== https://www.getid3.org/phpBB3/viewtopic.php?t=25 * Cannot determine bitrate for MPEG video with VBR video data (need documentation) * Interlace/progressive cannot be determined for MPEG video (need documentation) * MIDI playtime is sometimes inaccurate * AAC-RAW mode files cannot be identified * WavPack-RAW mode files cannot be identified * mp4 files report lots of "Unknown QuickTime atom type" (need documentation) * Encrypted ASF/WMA/WMV files warn about "unhandled GUID ASF_Content_Encryption_Object" * Bitrate split between audio and video cannot be calculated for NSV, only the total bitrate. (need documentation) * All Ogg formats (Vorbis, OggFLAC, Speex) are affected by the problem of large VorbisComments spanning multiple Ogg pages, but but only OggVorbis files can be processed with vorbiscomment. * The version of "head" supplied with Mac OS 10.2.8 (maybe other versions too) does only understands a single option (-n) and therefore fails. getID3 ignores this and returns wrong md5_data. Known Bugs/Issues in getID3() that cannot be fixed -------------------------------------------------- https://www.getid3.org/phpBB3/viewtopic.php?t=25 * 32-bit PHP installations only: Files larger than 2GB cannot always be parsed fully by getID3() due to limitations in the 32-bit PHP filesystem functions. NOTE: Since v1.7.8b3 there is partial support for larger-than- 2GB files, most of which will parse OK, as long as no critical data is located beyond the 2GB offset. Known will-work: * all file formats on 64-bit PHP * ZIP (format doesn't support files >2GB) * FLAC (current encoders don't support files >2GB) Known will-not-work: * ID3v1 tags (always located at end-of-file) * Lyrics3 tags (always located at end-of-file) * APE tags (always located at end-of-file) Maybe-will-work: * Quicktime (will work if needed metadata is before 2GB offset, that is if the file has been hinted/optimized for streaming) * RIFF.WAV (should work fine, but gives warnings about not being able to parse all chunks) * RIFF.AVI (playtime will probably be wrong, is only based on "movi" chunk that fits in the first 2GB, should issue error to show that playtime is incorrect. Other data should be mostly correct, assuming that data is constant throughout the file) * PHP <= v5 on Windows cannot read UTF-8 filenames Known Bugs/Issues in other programs ----------------------------------- https://www.getid3.org/phpBB3/viewtopic.php?t=25 * MusicBrainz Picard (at least up to v1.3.2) writes multiple ID3v2.3 genres in non-standard forward-slash separated text rather than parenthesis-numeric+refinement style per the ID3v2.3 specs. Tags written in ID3v2.4 mode are written correctly. (detected and worked around by getID3()) * PZ TagEditor v4.53.408 has been known to insert ID3v2.3 frames into an existing ID3v2.2 tag which, of course, breaks things * Windows Media Player (up to v11) and iTunes (up to v10+) do not correctly handle ID3v2.3 tags with UTF-16BE+BOM encoding (they assume the data is UTF-16LE+BOM and either crash (WMP) or output Asian character set (iTunes) * Winamp (up to v2.80 at least) does not support ID3v2.4 tags, only ID3v2.3 see: http://forums.winamp.com/showthread.php?postid=387524 * Some versions of Helium2 (www.helium2.com) do not write ID3v2.4-compliant Frame Sizes, even though the tag is marked as ID3v2.4) (detected by getID3()) * MP3ext V3.3.17 places a non-compliant padding string at the end of the ID3v2 header. This is supposedly fixed in v3.4b21 but only if you manually add a registry key. This fix is not yet confirmed. (detected by getID3()) * CDex v1.40 (fixed by v1.50b7) writes non-compliant Ogg comment strings, supposed to be in the format "NAME=value" but actually written just "value" (detected by getID3()) * Oggenc 0.9-rc3 flags the encoded file as ABR whether it's actually ABR or VBR. * iTunes (versions "v7.0.0.70" is known-guilty, probably other versions are too) writes ID3v2.3 comment tags using an ID3v2.2 frame name (3-bytes) null-padded to 4 bytes which is not valid for ID3v2.3+ (detected by getID3() since 1.9.12-201603221746) * iTunes (versions "X v2.0.3", "v3.0.1" are known-guilty, probably other versions are too) writes ID3v2.3 comment tags using a frame name 'COM ' which is not valid for ID3v2.3+ (it's an ID3v2.2-style frame name) (detected by getID3()) * MP2enc does not encode mono CBR MP2 files properly (half speed sound and double playtime) * MP2enc does not encode mono VBR MP2 files properly (actually encoded as stereo) * tooLAME does not encode mono VBR MP2 files properly (actually encoded as stereo) * AACenc encodes files in VBR mode (actually ABR) even if CBR is specified * AAC/ADIF - bitrate_mode = cbr for vbr files * LAME 3.90-3.92 prepends one frame of null data (space for the LAME/VBR header, but it never gets written) when encoding in CBR mode with the DLL * Ahead Nero encodes TwinVQF with a DSIZ value (which is supposed to be the filesize in bytes) of "0" for TwinVQF v1.0 and "1" for TwinVQF v2.0 (detected by getID3()) * Ahead Nero encodes TwinVQF files 1 second shorter than they should be * AAC-ADTS files are always actually encoded VBR, even if CBR mode is specified (the CBR-mode switches on the encoder enable ABR mode, not CBR as such, but it's not possible to tell the difference between such ABR files and true VBR) * STREAMINFO.audio_signature in OggFLAC is always null. "The reason it's like that is because there is no seeking support in libOggFLAC yet, so it has no way to go back and write the computed sum after encoding. Seeking support in Ogg FLAC is the #1 item for the next release." - Josh Coalson (FLAC developer) NOTE: getID3() will calculate md5_data in a method similar to other file formats, but that value cannot be compared to the md5_data value from FLAC data in a FLAC file format. * STREAMINFO.audio_signature is not calculated in FLAC v0.3.0 & v0.4.0 - getID3() will calculate md5_data in a method similar to other file formats, but that value cannot be compared to the md5_data value from FLAC v0.5.0+ * RioPort (various versions including 2.0 and 3.11) tags ID3v2 with a WCOM frame that has no data portion * Earlier versions of Coolplayer adds illegal ID3 tags to Ogg Vorbis files, thus making them corrupt. * Meracl ID3 Tag Writer v1.3.4 (and older) incorrectly truncates the last byte of data from an MP3 file when appending a new ID3v1 tag. (detected by getID3()) * Lossless-Audio files encoded with and without the -noseek switch do actually differ internally and therefore cannot match md5_data * iTunes has been known to append a new ID3v1 tag on the end of an existing ID3v1 tag when ID3v2 tag is also present (detected by getID3()) * MediaMonkey may write a blank RGAD ID3v2 frame but put actual replay gain adjustments in a series of user-defined TXXX frames (detected and handled by getID3() since v1.9.2) Reference material: =========================================================================== [www.id3.org material now mirrored at http://id3lib.sourceforge.net/id3/] * http://www.id3.org/id3v2.4.0-structure.txt * http://www.id3.org/id3v2.4.0-frames.txt * http://www.id3.org/id3v2.4.0-changes.txt * http://www.id3.org/id3v2.3.0.txt * http://www.id3.org/id3v2-00.txt * http://www.id3.org/mp3frame.html * http://minnie.tuhs.org/pipermail/mp3encoder/2001-January/001800.html <mathewhendry@hotmail.com> * http://www.dv.co.yu/mpgscript/mpeghdr.htm * http://www.mp3-tech.org/programmer/frame_header.html * http://users.belgacom.net/gc247244/extra/tag.html * http://gabriel.mp3-tech.org/mp3infotag.html * http://www.id3.org/iso4217.html * http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-1.TXT * http://www.xiph.org/ogg/vorbis/doc/framing.html * http://www.xiph.org/ogg/vorbis/doc/v-comment.html * http://leknor.com/code/php/class.ogg.php.txt * http://www.id3.org/iso639-2.html * http://www.id3.org/lyrics3.html * http://www.id3.org/lyrics3200.html * http://www.psc.edu/general/software/packages/ieee/ieee.html * http://www.scri.fsu.edu/~jac/MAD3401/Backgrnd/ieee-expl.html * http://www.scri.fsu.edu/~jac/MAD3401/Backgrnd/binary.html * http://www.jmcgowan.com/avi.html * http://www.wotsit.org/ * http://www.herdsoft.com/ti/davincie/davp3xo2.htm * http://www.mathdogs.com/vorbis-illuminated/bitstream-appendix.html * "Standard MIDI File Format" by Dustin Caldwell (from www.wotsit.org) * http://midistudio.com/Help/GMSpecs_Patches.htm * http://www.xiph.org/archives/vorbis/200109/0459.html * http://www.replaygain.org/ * http://www.lossless-audio.com/ * http://download.microsoft.com/download/winmediatech40/Doc/1.0/WIN98MeXP/EN-US/ASF_Specification_v.1.0.exe * http://mediaxw.sourceforge.net/files/doc/Active%20Streaming%20Format%20(ASF)%201.0%20Specification.pdf * http://www.uni-jena.de/~pfk/mpp/sv8/ (archived at http://www.hydrogenaudio.org/musepack/klemm/www.personal.uni-jena.de/~pfk/mpp/sv8/) * http://jfaul.de/atl/ * http://www.uni-jena.de/~pfk/mpp/ (archived at http://www.hydrogenaudio.org/musepack/klemm/www.personal.uni-jena.de/~pfk/mpp/) * http://www.libpng.org/pub/png/spec/png-1.2-pdg.html * http://www.real.com/devzone/library/creating/rmsdk/doc/rmff.htm * http://www.fastgraph.com/help/bmp_os2_header_format.html * http://netghost.narod.ru/gff/graphics/summary/os2bmp.htm * http://flac.sourceforge.net/format.html * http://www.research.att.com/projects/mpegaudio/mpeg2.html * http://www.audiocoding.com/wiki/index.php?page=AAC * http://libmpeg.org/mpeg4/doc/w2203tfs.pdf * http://www.geocities.com/xhelmboyx/quicktime/formats/qtm-layout.txt * http://developer.apple.com/techpubs/quicktime/qtdevdocs/RM/frameset.htm * http://www.nullsoft.com/nsv/ * http://www.wotsit.org/download.asp?f=iso9660 * http://sandbox.mc.edu/~bennet/cs110/tc/tctod.html * http://www.cdroller.com/htm/readdata.html * http://www.speex.org/manual/node10.html * http://www.harmony-central.com/Computer/Programming/aiff-file-format.doc * http://www.faqs.org/rfcs/rfc2361.html * http://ghido.shelter.ro/ * http://www.ebu.ch/tech_t3285.pdf * http://www.sr.se/utveckling/tu/bwf * http://ftp.aessc.org/pub/aes46-2002.pdf * http://cartchunk.org:8080/ * http://www.broadcastpapers.com/radio/cartchunk01.htm * http://www.hr/josip/DSP/AudioFile2.html * http://home.attbi.com/~chris.bagwell/AudioFormats-11.html * http://www.pure-mac.com/extkey.html * http://cesnet.dl.sourceforge.net/sourceforge/bonkenc/bonk-binary-format-0.9.txt * http://www.headbands.com/gspot/ * http://www.openswf.org/spec/SWFfileformat.html * http://j-faul.virtualave.net/ * http://www.btinternet.com/~AnthonyJ/Atari/programming/avr_format.html * http://cui.unige.ch/OSG/info/AudioFormats/ap11.html * http://sswf.sourceforge.net/SWFalexref.html * http://www.geocities.com/xhelmboyx/quicktime/formats/qti-layout.txt * http://www-lehre.informatik.uni-osnabrueck.de/~fbstark/diplom/docs/swf/Flash_Uncovered.htm * http://developer.apple.com/quicktime/icefloe/dispatch012.html * http://www.csdn.net/Dev/Format/graphics/PCD.htm * http://tta.iszf.irk.ru/ * http://www.atsc.org/standards/a_52a.pdf * http://www.alanwood.net/unicode/ * http://www.freelists.org/archives/matroska-devel/07-2003/msg00010.html * http://www.its.msstate.edu/net/real/reports/config/tags.stats * http://homepages.slingshot.co.nz/~helmboy/quicktime/formats/qtm-layout.txt * http://brennan.young.net/Comp/LiveStage/things.html * http://www.multiweb.cz/twoinches/MP3inside.htm * http://www.geocities.co.jp/SiliconValley-Oakland/3664/alittle.html#GenreExtended * http://www.mactech.com/articles/mactech/Vol.06/06.01/SANENormalized/ * http://www.unicode.org/unicode/faq/utf_bom.html * http://tta.corecodec.org/?menu=format * http://www.scvi.net/nsvformat.htm * http://pda.etsi.org/pda/queryform.asp * http://cpansearch.perl.org/src/RGIBSON/Audio-DSS-0.02/lib/Audio/DSS.pm * http://trac.musepack.net/trac/wiki/SV8Specification * http://wyday.com/cuesharp/specification.php * http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Nikon.html * http://www.codeproject.com/Articles/8295/MPEG-Audio-Frame-Header * http://dsd-guide.com/sites/default/files/white-papers/DSFFileFormatSpec_E.pdf * https://fileformats.fandom.com/wiki/Torrent_file var/www/html/wordpress/wp-content/plugins/akismet/readme.txt 0000775 00000014271 15027034117 0020400 0 ustar 00 === Akismet Anti-spam: Spam Protection === Contributors: matt, ryan, andy, mdawaffe, tellyworth, josephscott, lessbloat, eoigal, cfinke, automattic, jgs, procifer, stephdau, kbrownkd, bluefuton, akismetantispam Tags: comments, spam, antispam, anti-spam, contact form Requires at least: 5.8 Tested up to: 6.7 Stable tag: 5.3.5 License: GPLv2 or later The best anti-spam protection to block spam comments and spam in a contact form. The most trusted antispam solution for WordPress and WooCommerce. == Description == The best anti-spam protection to block spam comments and spam in a contact form. The most trusted antispam solution for WordPress and WooCommerce. Akismet checks your comments and contact form submissions against our global database of spam to prevent your site from publishing malicious content. You can review the comment spam it catches on your blog's "Comments" admin screen. Major features in Akismet include: * Automatically checks all comments and filters out the ones that look like spam. * Each comment has a status history, so you can easily see which comments were caught or cleared by Akismet and which were spammed or unspammed by a moderator. * URLs are shown in the comment body to reveal hidden or misleading links. * Moderators can see the number of approved comments for each user. * A discard feature that outright blocks the worst spam, saving you disk space and speeding up your site. PS: You'll be prompted to get an Akismet.com API key to use it, once activated. Keys are free for personal blogs; paid subscriptions are available for businesses and commercial sites. == Installation == Upload the Akismet plugin to your blog, activate it, and then enter your Akismet.com API key. 1, 2, 3: You're done! == Changelog == = 5.3.5 = *Release Date - 18 November 2024* * Address compatibility issues with < PHP 7.3 in v5.3.4 release. = 5.3.4 = *Release Date - 18 November 2024* * Improve activation notice on Comments for users who haven't set up their API key yet. * Improve notice about commercial site status. = 5.3.3 = *Release Date - 10 July 2024* * Make setup step clearer for new users. * Remove the stats section from the configuration page if the site has been revoked from the key. * Skip the Akismet comment check when the comment matches something in the disallowed list. * Prompt users on legacy plans to contact Akismet support for upgrades. = 5.3.2 = *Release Date - 21 March 2024* * Improve the empty state shown to new users when no spam has been caught yet. * Update the message shown to users without a current subscription. * Add foundations for future webhook support. = 5.3.1 = *Release Date - 17 January 2024* * Make the plugin more resilient when asset files are missing (as seen in WordPress Playground). * Add a link to the 'Account overview' page on akismet.com. * Fix a minor error that occurs when another plugin removes all comment actions from the dashboard. * Add the akismet_request_args filter to allow request args in Akismet API requests to be filtered. * Fix a bug that causes some contact forms to include unnecessary data in the comment_content parameter. = 5.3 = *Release Date - 14 September 2023* * Improve display of user notices. * Add stylesheets for RTL languages. * Remove initial disabled state from 'Save changes' button. * Improve accessibility of API key entry form. * Add new filter hooks for Fluent Forms. * Fix issue with PHP 8.1 compatibility. = 5.2 = *Release Date - 21 June 2023* * Visual refresh of Akismet stats. * Improve PHP 8.1 compatibility. * Improve appearance of plugin to match updated stats. * Change minimum supported PHP version to 5.6 to match WordPress. * Drop IE11 support and update minimum WordPress version to 5.8 (where IE11 support was removed from WP Core). = 5.1 = *Release Date - 20 March 2023* * Removed unnecessary limit notices from admin page. * Improved spam detection by including post taxonomies in the comment-check call. * Removed API keys from stats iframes to avoid possible inadvertent exposure. = 5.0.2 = *Release Date - 1 December 2022* * Improved compatibility with themes that hide or show UI elements based on mouse movements. * Increased security of API keys by sending them in request bodies instead of subdomains. = 5.0.1 = *Release Date - 28 September 2022* * Added an empty state for the Statistics section on the admin page. * Fixed a bug that broke some admin page links when Jetpack plugins are active. * Marked some event listeners as passive to improve performance in newer browsers. * Disabled interaction observation on forms that post to other domains. = 5.0 = *Release Date - 26 July 2022* * Added a new feature to catch spammers by observing how they interact with the page. = 4.2.5 = *Release Date - 11 July 2022* * Fixed a bug that added unnecessary comment history entries after comment rechecks. * Added a notice that displays when WP-Cron is disabled and might be affecting comment rechecks. = 4.2.4 = *Release Date - 20 May 2022* * Improved translator instructions for comment history. * Bumped the "Tested up to" tag to WP 6.0. = 4.2.3 = *Release Date - 25 April 2022* * Improved compatibility with Fluent Forms * Fixed missing translation domains * Updated stats URL. * Improved accessibility of elements on the config page. = 4.2.2 = *Release Date - 24 January 2022* * Improved compatibility with Formidable Forms * Fixed a bug that could cause issues when multiple contact forms appear on one page. * Updated delete_comment and deleted_comment actions to pass two arguments to match WordPress core since 4.9.0. * Added a filter that allows comment types to be excluded when counting users' approved comments. = 4.2.1 = *Release Date - 1 October 2021* * Fixed a bug causing AMP validation to fail on certain pages with forms. = 4.2 = *Release Date - 30 September 2021* * Added links to additional information on API usage notifications. * Reduced the number of network requests required for a comment page when running Akismet. * Improved compatibility with the most popular contact form plugins. * Improved API usage buttons for clarity on what upgrade is needed. For older changelog entries, please see the [additional changelog.txt file](https://plugins.svn.wordpress.org/akismet/trunk/changelog.txt) delivered with the plugin. var/www/html/wordpress/wp-content/themes/twentytwentythree/readme.txt 0000775 00000006003 15027034333 0022376 0 ustar 00 === Twenty Twenty-Three === Contributors: wordpressdotorg Requires at least: 6.1 Tested up to: 6.7 Requires PHP: 5.6 Stable tag: 1.6 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html == Description == Twenty Twenty-Three is designed to take advantage of the new design tools introduced in WordPress 6.1. With a clean, blank base as a starting point, this default theme includes ten diverse style variations created by members of the WordPress community. Whether you want to build a complex or incredibly simple website, you can do it quickly and intuitively through the bundled styles or dive into creation and full customization yourself. == Changelog == = 1.6 = * Released: November 12, 2024 https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.6 = 1.5 = * Released: July 16, 2024 https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.5 = 1.4 = * Released: April 2, 2024 https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.4 = 1.3 = * Released: November 7, 2023 https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.3 = 1.2 = * Released: August 8, 2023 https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.2 = 1.1 = * Released: March 28, 2023 https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.1 = 1.0 = * Released: November 1, 2022 https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.0 == Copyright == Twenty Twenty-Three WordPress Theme, (C) 2022-2024 WordPress.org and contributors. Twenty Twenty-Three is distributed under the terms of the GNU GPL. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. This theme bundles the following third-party resources: DM Sans Font Copyright 2014-2017 Indian Type Foundry (info@indiantypefoundry.com) Copyright 2019 Google LLC Copyright 2014-2018 Adobe (http://www.adobe.com/) License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/googlefonts/dm-fonts IBM Plex Font Copyright 2017 IBM Corp. License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/IBM/plex Inter Font Copyright (c) 2016-2020 The Inter Project Authors. License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/rsms/inter Source Serif Font Copyright 2014-2021 Adobe (http://www.adobe.com/) License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/adobe-fonts/source-serif var/www/html/wordpress/wp-content/themes/twentytwentyfour/readme.txt 0000775 00000007441 15027040102 0022240 0 ustar 00 === Twenty Twenty-Four === Contributors: wordpressdotorg Requires at least: 6.4 Tested up to: 6.7 Requires PHP: 7.0 Stable tag: 1.3 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html == Description == Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4. == Changelog == = 1.3 = * Released: November 12, 2024 https://wordpress.org/documentation/article/twenty-twenty-four-changelog/#Version_1.3 = 1.2 = * Released: July 16, 2024 https://wordpress.org/documentation/article/twenty-twenty-four-changelog/#Version_1.2 = 1.1 = * Released: April 2, 2024 https://wordpress.org/documentation/article/twenty-twenty-four-changelog/#Version_1.1 = 1.0 = * Released: November 7, 2023 https://wordpress.org/documentation/article/twenty-twenty-four-changelog/#Version_1.0 == Copyright == Twenty Twenty-Four WordPress Theme, (C) 2023-2024 WordPress.org and contributors. Twenty Twenty-Four is distributed under the terms of the GNU GPL. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. This theme bundles the following third-party resources: === Fonts === Cardo Font Copyright (c) 2002-2011, David J. Perry (hospes02@scholarsfonts.net) License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: http://scholarsfonts.net Instrument Sans Font Copyright 2022 The Instrument Sans Project Authors. License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/Instrument/instrument-sans Inter Font Copyright 2020 The Inter Project Authors. License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/rsms/inter Jost Font Copyright 2020 The Jost Project Authors. License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/indestructible-type/Jost === Images === License: CC0 https://creativecommons.org/publicdomain/zero/1.0/ museum.webp - https://www.rawpixel.com/image/3297419/free-photo-image-interior-hallway-architecture tourist-and-building.webp - https://www.rawpixel.com/image/5928004/photo-image-public-domain-hand-person building-exterior.webp - https://www.rawpixel.com/image/430335/free-photo-image-architecture-building-roof windows.webp - https://www.rawpixel.com/image/3286615/free-photo-image-texture-architecture-building abstract-geometric-art.webp - https://www.rawpixel.com/image/3283970/free-photo-image-pattern-artwork-abstract angular-roof.webp - https://www.rawpixel.com/image/3289063/free-photo-image-architectural-detail-architecture art-gallery.webp - https://www.rawpixel.com/image/3286187/free-photo-image-person-stairs-architecture green-staircase.webp - https://www.rawpixel.com/image/430558/free-photo-image-abstract-architecture-art-public-domain hotel-facade.webp - https://www.rawpixel.com/image/3286725/free-photo-image-black-and-white-background-photos License: UNICODE LICENSE V3 https://www.unicode.org/license.txt icon-message.webp var/www/html/wp-content/plugins/redirection/readme.txt 0000664 00000076243 15027065023 0017226 0 ustar 00 === Redirection === Contributors: johnny5 Donate link: https://redirection.me/donation/ Tags: redirect, htaccess, 301, 404, apache Tested up to: 6.7 Stable tag: 5.5.2 License: GPLv3 Manage 301 redirects, track 404 errors, and improve your site. No knowledge of Apache or Nginx required. == Description == Redirection is the most popular redirect manager for WordPress. With it you can easily manage 301 redirections, keep track of 404 errors, and generally tidy up any loose ends your site may have. This can help reduce errors and improve your site ranking. Redirection is designed to be used on sites with a few redirects to sites with thousands of redirects. It has been a WordPress plugin for over 10 years and has been recommended countless times. And it's free! Full documentation can be found at [https://redirection.me](https://redirection.me) Redirection is compatible with PHP from 7.0 to 8.3. = Redirect manager = Create and manage redirects quickly and easily without needing Apache or Nginx knowledge. If your WordPress supports permalinks then you can use Redirection to redirect any URL. There is full support for regular expressions so you can create redirect patterns to match any number of URLs. You can match query parameters and even pass them through to the target URL. The plugin can also be configured to monitor when post or page permalinks are changed and automatically create a redirect to the new URL. = Conditional redirects = In addition to straightforward URL matching you can redirect based on other conditions: - Login status - redirect only if the user is logged in or logged out - WordPress capability - redirect if the user is able to perform a certain capability - Browser - redirect if the user is using a certain browser - Referrer - redirect if the user visited the link from another page - Cookies - redirect if a particular cookie is set - HTTP headers - redirect based on a HTTP header - Custom filter - redirect based on your own WordPress filter - IP address - redirect if the client IP address matches - Server - redirect another domain if also hosted on this server - Page type - redirect if the current page is a 404 = Full logging = A configurable logging option allows to view all redirects occurring on your site, including information about the visitor, the browser used, and the referrer. A 'hit' count is maintained for each redirect so you can see if a URL is being used. Logs can be exported for external viewing, and can be searched and filtered for more detailed investigation. Display geographic information about an IP address, as well as a full user agent information, to try and understand who the visitor is. You are able to disable or reduce IP collection to meet the legal requirements of your geographic region, and can change the amount of information captured from the bare minimum to HTTP headers. You can also log any redirect happening on your site, including those performed outside of Redirection. = Add HTTP headers = HTTP headers can be added to redirects or your entire site that help reduce the impact of redirects or help increase security. You can also add your own custom headers. = Track 404 errors = Redirection will keep track of all 404 errors that occur on your site, allowing you to track down and fix problems. Errors can be grouped to show where you should focus your attention, and can be redirected in bulk. = Query parameter handling = You can match query parameters exactly, ignore them, and even pass them through to your target. = Migrate Permalinks = Changed your permalink structure? You can migrate old permalinks simply by entering the old permalink structure. Multiple migrations are supported. = Apache & Nginx support = By default Redirection will manage all redirects using WordPress. However you can configure it so redirects are automatically saved to a .htaccess file and handled by Apache itself. If you use Nginx then you can export redirects to an Nginx rewrite rules file. = Fine-grained permissions = Fine-grained permissions are available so you can customise the plugin for different users. This makes it particularly suitable for client sites where you may want to prevent certain actions, and remove functionality. = Import & Export = The plugin has a fully-featured import and export system and you can: - Import and export to Apache .htaccess - Export to Nginx rewrite rules - Copy redirects between sites using JSON - Import and export to CSV for viewing in a spreadsheet - Use WP CLI to automate import and export You can also import from the following plugins: - Simple 301 Redirects - SEO Redirection - Safe Redirect Manager - Rank Math - WordPress old slug redirects - Quick Post/Pages redirects = Search Regex compatible = Redirection is compatible with [Search Regex](https://searchregex.com), allowing you to bulk update your redirects. = Wait, it's free? = Yes, it's really free. There's no premium version and no need to pay money to get access to features. This is a dedicated redirect management plugin. == Support == Please submit bugs, patches, and feature requests to: [https://github.com/johngodley/redirection](https://github.com/johngodley/redirection) Please submit translations to: [https://translate.wordpress.org/projects/wp-plugins/redirection](https://translate.wordpress.org/projects/wp-plugins/redirection) == Installation == The plugin is simple to install: 1. Download `redirection.zip` 1. Unzip 1. Upload `redirection` directory to your `/wp-content/plugins` directory 1. Go to the plugin management page and enable the plugin 1. Configure the options from the `Tools/Redirection` page You can find full details of installing a plugin on the [plugin installation page](https://redirection.me/support/installation/). Full documentation can be found on the [Redirection](https://redirection.me/support/) site. == Screenshots == 1. Redirection management interface 2. Adding a redirection 3. Redirect logs 4. Import/Export 5. Options 6. Support == Frequently Asked Questions == = Why would I want to use this instead of .htaccess? = Ease of use. Redirections are automatically created when a post URL changes, and it is a lot easier to manually add redirections than to hack around a .htaccess. You also get the added benefit of being able to keep track of 404 errors. = What is the performance of this plugin? = The plugin works in a similar manner to how WordPress handles permalinks and should not result in any noticeable slowdown to your site. == Upgrade Notice == = 5.4 = * You may need to configure the IP header option if using a proxy = 3.0 = * Upgrades the database to support IPv6. Please backup your data and visit the Redirection settings to perform the upgrade * Switches to the WordPress REST API * Permissions changed from 'administrator' role to 'manage_options' capability = 3.6.1 = * Note Redirection will not work with PHP < 5.4 after 3.6 - please upgrade your PHP = 3.7 = * Requires minimum PHP 5.4. Do not upgrade if you are still using PHP < 5.4 = 4.0 = * Alters database to support case insensitivity, trailing slashes, and query params. Please backup your data = 4.7 = * Requires minimum PHP 5.6+. Do not upgrade if you are still using PHP < 5.6 = 4.9 = * Alters database to support enhanced logging. Please backup your data == Changelog == A x.1 version increase introduces new or updated features and can be considered to contain 'breaking' changes. A x.x.1 increase is purely a bug fix and introduces no new features, and can be considered as containing no breaking changes. = 5.5.2 = * Fix saving of x-frame-options * Fix CPT loading * Fix last access date changing on update * Remove newsletter option = 5.5.1 = * Fix problem with category pages and permalink migration * Don't report invalid JSON import as successful * Exclude CPTs without URLs for monitoring * Update for WP 6.7 = 5.5.0 = * Multiple 'URL and WP page type' redirects will now work * Translations now use WP core = 5.4.2 - 27th January 2024 = * Remove Geo IP option (it may return) * Fix crash in agent info * Add new max-age header * Remove deprecated ini_set call * Don't double encode URLs when checking = 5.4.1 - 5th January 2024 = * Fix problem with some international URLs not appearing in the 404 log = 5.4 - 1st January 2024 = * Don't encode negative lookaheads * Remove port from server name * Importing into a disabled group now creates disabled items * Add option to pick IP header * Fix save of x-content-type-options: sniff * Fix save of multiple spaces = 5.3.10 - 2nd April 2023 = * Fix associated redirect setting not saving properly = 5.3.9 - 25th January 2023 = * Fix incorrect sanitization applied to target URLs = 5.3.8 - 22nd January 2023 = * Fix app rendering twice causing problems with upgrades * Fix CSV header being detected as an error = 5.3.7 - 8th January 2023 = * Fix problem with locales in certain directories * Fix incorrect import of empty CSV lines * Don't encode regex for Nginx = 5.3.6 - 12th November 2022 = * Fix for sites with a version of +OK * Another fix for CZ locale = 5.3.5 - 6th November 2022 = * Fix crash on options page for Czech language = 5.3.4 - 14th September 2022 = * Fix query parameter name with a + not matching = 5.3.3 - 7th September 2022 = * Fix default HTTP header not being set when first used * Fix incorrect column heading in CSV * Fix passing of mixed case parameters = 5.3.2 - 6th August 2022 = * Fix missing props error * Fix missing value for .htaccess location display = 5.3.1 - 29th July 2022 = * Fix crash caused by bad translations in locale files * Fix query match not working when it contained mixed case * Fix missing flag in .htaccess export = 5.3.0 - 21st July 2022 = * Improve installation process * Improve permalink migration so it works with more permalinks * Prevent ordering columns by HTTP code * Better encode URLs in Nginx export * Allow escaped characters to work in the redirect checker * Reduce CSV import time = 5.2.3 - 6th February 2022 = * Fix error when grouping by URL, adding redirect, and then adding another redirect * Add a warning for unescaped ? regex = 5.2.2 - 22nd January 2022 = * Further improve URL checker response to clarify responsibility * Fix WordPress and pagetype match preventing the logging of 404s * Fix title field being inactive * Fix CSV export having duplicate column = 5.2.1 - 16th January 2022 = * Include path with inline URL checker = 5.2 - 15th January 2022 = * Improve URL checker and show more details * Retain query parameter case when passing to target URL * Remove unnecessary database stage option check * PHP 8.1 compatibility = 5.1.3 - 24th July 2021 = * Fix geo IP on log pages showing an API redirected error * Fix crash when changing match type in edit dialog = 5.1.2 - 17th July 2021 = * Fix random redirect not working * Fix [userid] shortcode returning 1 = 5.1.1 - 11th April 2021 = * Revert the permalink migration improvement from 5.1 as it's causing problems on some sites = 5.1 - 10th April 2021 = * Add importer for PrettyLinks * Fix crash converting a 'do nothing' to 'redirect to URL' * Improve warning messages * Improve permalink migration when is_404 is not set * Fix 'delete log entries' returning blank data * Fix missing .htaccess location * Fix hits & date not imported with JSON format = 5.0.1 - 26th Jan 2021 = * Fix incorrect warning when creating a regular expression with captured data * Fix JS error when upgrading a database with a broken REST API * Increase regular expression redirect limit * PHP8 support = 5.0 - 16th Jan 2021 = * Add caching support * Add support for migrated permalink structures * Add dynamic URL variables * Add fully automatic database upgrade option * Add a new version release information prompt * Improve performance when many redirects have the same path * Move bulk all action to a separate button after selecting all * Fix error in display with restricted capabilities * Avoid problems with 7G Firewall * Improve handling of invalid encoded characters = 4.9.2 - 30th October = * Fix warning with PHP 5.6 * Improve display of long URLs = 4.9.1 - 26th October 2020 = * Restore missing time and referrer URL from log pages * Restore missing client information from debug reports * Fix order by count when grouping by URL * Check for duplicate columns in DB upgrade = 4.9 - 24th October 2020 = * Expand log information to capture HTTP headers, domain, HTTP code, and HTTP method * Allow non-Redirection redirects to be logged - allows tracking of all redirects on a site * Expand log and 404 pages with greatly improved filters * Bulk delete logs and 404s by selected filter * Logging is now optional per redirect rule * Fix random action on a site with non-root URL * Fix group and search being reset when searching * Fix canonical alias not using request server name = 4.8 - 23rd May 2020 = * Add importer for Quick Post/Page Redirects plugin * Add plugin imports to WP CLI * Fix install wizard using wrong relative API * Fix sub menu outputting invalid HTML = 4.7.2 - 8th May 2020 = * Fix PHP warning decoding an encoded question mark * Fix site adding an extra period in a domain name * Fix protocol appearing in .htaccess file server redirect = 4.7.1 - 14th March 2020 = * Fix HTTP header over-sanitizing the value * Fix inability to remove .htaccess location * Fix 404 group by 'delete all' * Fix import of empty 'old slugs' = 4.7 - 15th February 2020 = * Relocate entire site to another domain, with exceptions * Site aliases to map another site to current site * Canonical settings for www/no-www * Change content-type for API requests to help with mod_security = 4.6.2 - 6th January 2020 = * Fix 404 log export button * Fix HTTPS option not appearing enabled * Fix another PHP compat issue = 4.6.1 - 30th December 2019 = * Back-compatibility fix for old PHP versions = 4.6 - 27th December 2019 = * Add fine-grained permissions allowing greater customisation of the plugin, and removal of functionality * Add an import step to the install wizard * Remove overriding of default WordPress 'old slugs' = 4.5.1 - 23rd November 2019 = * Fix broken canonical redirects = 4.5 - 23rd November 2019 = * Add HTTP header feature, with x-robots-tag support * Move HTTPS setting to new Site page * Add filter to disable redirect hits * Add 'Disable Redirection' option to stop Redirection, in case you break your site * Fill out API documentation * Fix style with WordPress 5.4 * Fix encoding of # in .htaccess = 4.4.2 - 29th September 2019 = * Fix missing options for monitor group * Fix check redirect not appearing if position column not shown = 4.4.1 - 28th September 2019 = * Fix search highlighter causing problems with regex characters * Fix 'show all' link not working * Fix 'Request URI Too Long' error when switching pages after creating redirects = 4.4 - 22nd September 2019 = * Add 'URL and language' match * Add page display type for configurable information * Add 'search by' to search by different information * Add filter dropdown to filter data * Add warning about relative absolute URLs * Add 451, 500, 501, 502, 503, 504 error codes * Fix multiple 'URL and page type' redirects * Improve invalid nonce warning * Encode replaced values in regular expression targets = 4.3.3 - 8th August 2019 == * Add back compatibility fix for URL sanitization = 4.3.2 - 4th August 2019 == * Fix problem with UTF8 characters in a regex URL * Fix invalid characters causing an error message * Fix regex not disabled when removed = 4.3.1 - 8th June 2019 = * Fix + character being removed from source URL = 4.3 - 2nd June 2019 = * Add support for UTF8 URLs without manual encoding * Add manual database install option * Add check for pipe character in target URL * Add warning when problems saving .htaccess file * Switch from 'x-redirect-agent' to 'x-redirect-by', for WP 5+ * Improve handling of invalid query parameters * Fix query param name is a number * Fix redirect with blank target and auto target settings * Fix monitor trash option applying when deleting a draft * Fix case insensitivity not applying to query params * Disable IP grouping when IP option is disabled * Allow multisite database updates to run when more than 100 sites = 4.2.3 - 16th Apr 2019 = * Fix bug with old API routes breaking test = 4.2.2 - 13th Apr 2019 = * Improve API checking logic * Fix '1' being logged for pass-through redirects = 4.2.1 - 8th Apr 2019 = * Fix incorrect CSV download link = 4.2 - 6th Apr 2019 = * Add auto-complete for target URLs * Add manual database upgrade * Add support for semi-colon separated import files * Add user agent to 404 export * Add workaround for qTranslate breaking REST API * Improve API problem detection * Fix JSON import ignoring group status = 4.1.1 - 23rd Mar 2019 = * Remove deprecated PHP * Fix REST API warning * Improve WP CLI database output = 4.1 - 16th Mar 2019 = * Move 404 export option to import/export page * Add additional redirect suggestions * Add import from Rank Math * Fix 'force https' causing WP to redirect to admin URL when accessing www subdomain * Fix .htaccess import adding ^ to the source * Fix handling of double-slashed URLs * Fix WP CLI on single site * Add DB upgrade to catch URLs with double-slash URLs * Remove unnecessary escaped slashes from JSON output = 4.0.1 - 2nd Mar 2019 = * Improve styling of query flags * Match DB upgrade for new match_url to creation script * Fix upgrade on some hosts where plugin is auto-updated * Fix pagination button style in WP 5.1 * Fix IP match when action is 'error' * Fix database upgrade on multisite WP CLI = 4.0 - 23rd Feb 2019 = * Add option for case insensitive redirects * Add option to ignore trailing slashes * Add option to copy query parameters to target URL * Add option to ignore query parameters * Add option to set defaults for case, trailing, and query settings * Improve upgrade for sites with missing tables = 3.7.3 - 2nd Feb 2019 = * Add PHP < 5.4 message on plugins page * Prevent upgrade message being hidden by other plugins * Fix warning with regex and no leading slash * Fix missing display of disabled redirects with a title * Improve upgrade for sites with a missing IP column * Improve API detection with plugins that use sessions * Improve compatibility with ModSecurity * Improve compatibility with custom API prefix * Detect site where Redirection was once installed and has settings but no database tables = 3.7.2 - 16th Jan 2019 = * Add further partial upgrade detection * Add fallback for sites with no REST API value = 3.7.1 - 13th Jan 2019 = * Clarify database upgrade text * Fix Firefox problem with multiple URLs * Fix 3.7 built against wrong dropzone module * Add DB upgrade detection for people with partial 2.4 sites = 3.7 - 12th Jan 2019 = * Add redirect warning for known problem redirects * Add new database install and upgrade process * Add database functions to WP CLI * Add introduction message when first installed * Drop PHP < 5.4 support. Please use version 3.6.3 if your PHP is too old * Improve export filename * Fix IPs appearing for bulk redirect * Fix disabled redirects appearing in htaccess = 3.6.3 - 14th November 2018 = * Remove potential CSRF = 3.6.2 - 10th November 2018 = * Add another PHP < 5.4 compat fix * Fix 'delete all from 404 log' when ungrouped deleting all 404s * Fix IDs shown in bulk add redirect = 3.6.1 - 3rd November 2018 = * Add another PHP < 5.4 fix. Sigh = 3.6 - 3rd November 2018 = * Add option to ignore 404s * Add option to block 404s by IP * Add grouping of 404s by IP and URL * Add bulk block or redirect a group of 404s * Add option to redirect on a 404 * Better page navigation change monitoring * Add URL & IP match * Add 303 and 304 redirect codes * Add 400, 403, and 418 (I'm a teapot!) error codes * Fix server match not supporting regex properly * Deprecated file pass through removed * 'Do nothing' now stops processing further rules = 3.5 - 23rd September 2018 = * Add redirect checker on redirects page * Fix missing translations * Restore 4.7 backwards compatibility * Fix unable to delete server name in server match * Fix error shown when source URL is blank = 3.4.1 - 9th September 2018 = * Fix import of WordPress redirects * Fix incorrect parsing of URLs with 'http' in the path * Fix 'force ssl' not including path = 3.4 - 17th July 2018 = * Add a redirect checker * Fix incorrect host parsing with server match * Fix PHP warning with CSV import * Fix old capability check that was missed from 3.0 = 3.3.1 - 24th June 2018 = * Add a minimum PHP check for people < 5.4 = 3.3 - 24th June 2018 = * Add user role/capability match * Add fix for IP blocking plugins * Add server match to redirect other domains (beta) * Add a force http to https option (beta) * Use users locale setting, not site * Check for mismatched site/home URLs * Fix WP CLI not clearing logs * Fix old capability check * Detect BOM marker in response * Improve detection of servers that block content-type json * Fix incorrect encoding of entities in some locale files * Fix table navigation parameters not affecting subsequent pages * Fix .htaccess saving after WordPress redirects * Fix get_plugin_data error * Fix canonical redirect problem caused by change in WordPress * Fix situation that prevented rules cascading = 3.2 - 11th February 2018 = * Add cookie match - redirect based on a cookie * Add HTTP header match - redirect based on an HTTP header * Add custom filter match - redirect based on a custom WordPress filter * Add detection of REST API redirect, causing 'fetch error' on some sites * Update table responsiveness * Allow redirects for canonical WordPress URLs * Fix double include error on some sites * Fix delete action on some sites * Fix trailing slash redirect of API on some sites = 3.1.1 - 29th January 2018 = * Fix problem fetching data on sites without https = 3.1 - 27th January 2018 = * Add alternative REST API routes to help servers that block the API * Move DELETE API calls to POST, to help servers that block DELETE * Move API nonce to query param, to help servers that don't pass HTTP headers * Improve error messaging * Preload support page so it can be used when REST API isn't working * Fix bug editing Nginx redirects * Fix import from JSON not setting status = 3.0.1 - 21st Jan 2018 = * Don't show warning if per page setting is greater than max * Don't allow WP REST API to be redirected = 3.0 - 20th Jan 2018 = * Add support for IPv6 * Add support for disabling or anonymising IP collection * Add support for monitoring custom post types * Add support for monitoring from quick edit mode * Default to last group used when editing * Permissions changed from 'administrator' role to 'manage_options' capability * Swap to WP REST API * Add new IP map service * Add new useragent service * Add 'add new' button to redirect page * Increase 'title' length * Fix position not saving on creation * Fix log pages not remembering table settings * Fix incorrect column used for HTTP code when importing CSV * Add support links from inside the plugin = 2.10.1 - 26th November 2017 = * Fix incorrect HTTP code reported in errors * Improve management page hook usage = 2.10 - 18th November 2017 = * Add support for WordPress multisite * Add new Redirection documentation * Add extra actions when creating redirects * Fix user agent dropdown not setting agent = 2.9.2 - 11th November 2017 = * Fix regex breaking .htaccess export * Fix error when saving Error or No action * Restore sortable table headers = 2.9.1 - 4th November 2017 = * Fix const issues with PHP 5 = 2.9 - 4th November 2017 = * Add option to set redirect cache expiry, default 1 hour * Add a check for unsupported versions of WordPress * Add check for database tables before starting the plugin * Improve JSON import memory usage * Add importers for: Simple 301 Redirects, SEO Redirection, Safe Redirect Manager, and WordPress old post slugs * Add responsive admin UI = 2.8.1 - 22nd October 2017 = * Fix redirect edit not closing after save * Fix user agent dropdown not auto-selecting regex * Fix focus to bottom of page on load * Improve error message when failing to start * Fix associated redirect appearing at start of URL, not end = 2.8 - 18th October 2017 = * Add a fixer to the support page * Ignore case for imported files * Fixes for Safari * Fix WP CLI importing CSV * Fix monitor not setting HTTP code * Improve error, random, and pass-through actions * Fix bug when saving long title * Add user agent dropdown to user agent match * Add pages and trashed posts to monitoring * Add 'associated redirect' option to monitoring, for AMP * Remove 404 after adding * Allow search term to apply to deleting logs and 404s * Deprecate file pass-through, needs to be enabled with REDIRECTION_SUPPORT_PASS_FILE and will be replaced with WP actions * Further sanitize match data against bad serialization = 2.7.3 - 26th August 2017 = * Fix an import regression bug = 2.7.2 - 25th August 2017 = * Better IE11 support * Fix Apache importer * Show more detailed error messages * Refactor match code and fix a problem saving referrer & user agent matches * Fix save button not enabling for certain redirect types = 2.7.1 - 14th August 2017 = * Improve display of errors * Improve handling of CSV * Reset tables when changing menus * Change how the page is displayed to reduce change of interference from other plugins = 2.7 - 6th August 2017 = * Finish conversion to React * Add WP CLI support for import/export * Add a JSON import/export that exports all data * Edit redirect position * Apache config moved to options page * Fix 410 error code * Fix page limits * Fix problems with IE/Safari = 2.6.6 = * Use React on redirects page * Use translate.wordpress.org for language files = 2.6.5 = * Use React on groups page = 2.6.4 = * Add a limit to per page screen options * Fix warning in referrer match when referrer doesn't exist * Fix 404 page showing options * Fix RSS token not regenerating * 404 and log filters can now avoid logging * Use React on modules page = 2.6.3 = * Use React on log and 404 pages * Fix log option not saving 'never' * Additional check for auto-redirect from root * Fix delete plugin button * Improve IP detection for Cloudflare = 2.6.2 = * Set auto_detect_line_endings when importing CSV * Replace options page with a fancy React version that looks exactly the same = 2.6.1 = * Fix CSV export merging everything into one line * Fix bug with HTTP codes not being imported from CSV * Add filters for source and target URLs * Add filters for log and 404s * Add filters for request data * Add filter for monitoring post permalinks * Fix export of 404 and logs = 2.6 = * Show example CSV * Allow regex and redirect code to be set on import * Fix a bunch of database installation problems = 2.5 = * Fix no group created on install * Fix missing export key on install * Add 308 HTTP code, props to radenui * Fix imported URLs set to regex, props to alpipego * Fix sorting of URLs, props to JordanReiter * Don't cache 307s, props to rmarchant * Abort redirect exit if no redirection happened, props to junc = 2.4.5 = * Ensure cleanup code runs even if plugin was updated * Extra sanitization of Apache & Nginx files, props to Ed Shirey * Fix regex bug, props to romulodl * Fix bug in correct group not being shown in dropdown = 2.4.4 = * Fix large advanced settings icon * Add text domain to plugin file, props Bernhard Kau * Better PHP7 compatibility, props to Ohad Raz * Better Polylang compatibility, props to imrehg = 2.4.3 = * Bump minimum WP to 4.0.0 * Updated German translation, props to Konrad Tadesse * Additional check when creating redirections in case of bad data = 2.4.2 = * Add Gulp task to generate POT file * Fix a problem with duplicate positions in the redirect table, props to Jon Jensen * Fix URL monitor not triggering * Fix CSV export = 2.4.1 = * Fix error for people with an unknown module in a group = 2.4 = * Reworked modules now no longer stored in database * Nginx module (experimental) * View .htaccess/Nginx inline * Beginnings of some unit tests! * Fix DB creation on activation, props syntax53 * Updated Japanese locale, props to Naoko * Remove deprecated like escaping = 2.3.16 = * Fix export options not showing for some people = 2.3.15 = * Fix error on admin page for WP 4.2 = 2.3.14 = * Remove error_log statements * Fix incorrect table name when exporting 404 errors, props to brazenest/synchronos-t = 2.3.13 = * Split admin and front-end code out to streamline the loading a bit * Fix bad groups link when viewing redirects in a group, props to Patrick Fabre * Improved plugin activation/deactivation and cleanup * Improved log clearing = 2.3.12 = * Persian translation by Danial Hatami * Fix saving a redirection with login status, referrer, and user agent * Fix problem where deleting your last group would cause Redirection to only show an error * Add limits to referrer and destination in the logs * Redirect title now shows in the main list again. The field is hidden when editing until toggled * Fix 'bad nonce' error, props to Jonathan Harrell * Remove old WP code = 2.3.11 = * Fix log cleanup options * More space when editing redirects * Better detection of regex when importing * Restore export options * Fix unnecessary protected = 2.3.10 = * Another compatibility fix for PHP < 5.3 * Fix incorrect module ID used when creating a group * Fix .htaccess duplication, props to Jörg Liwa = 2.3.9 = * Compatibility fix for PHP < 5.3 = 2.3.8 = * Fix plugin activation error * Fix fatal error in table nav, props to spacedmonkey = 2.3.7 = * New redirect page to match WP style * New module page to match WP style * Configurable permissions via redirection_role filter, props to RodGer-GR * Fix saving 2 month log period * Fix importer * Fix DB creation to check for existing tables = 2.3.6 = * Updated Italian translation, props to Raffaello Tesi * Updated Romanian translation, props to Flo Bejgu * Simplify logging options * Fix log deletion by search term * Export logs and 404s to CSV = 2.3.5 = * Default log settings to 7 days, props to Maura * Updated Danish translation thanks to Mikael Rieck * Add per-page screen option for log pages * Remove all the corners = 2.3.4 = * Fix escaping of URL in admin page = 2.3.3 = * Fix PHP strict, props to Juliette Folmer * Fix RSS entry date, props to Juliette * Fix pagination = 2.3.2 = * WP 3.5 compatibility * Fix export = 2.3.0 and earlier = * Remove 404 module and move 404 logs into a separate option * Clean up log code, using WP_List_Table to power it * Fix some broken links in admin pages * Fix order of redirects, thanks to Nicolas Hatier * Fix XSS in admin menu & referrers log * Better database compatibility * Remove warning from VaultPress * Remove debug from htaccess module * Fix encoding of JS strings * Use fgetcsv for CSV importer - better handling * Allow http as URL parameter * Props to Ben Noordhuis for a patch * WordPress 2.9+ only - cleaned up all the old cruft * Better new-install process * Upgrades from 1.0 of Redirection no longer supported * Optimized DB tables * Change to jQuery * Nonce protection * Disable category monitor in 2.7 * Refix log delete * get_home_path seems not be available for some people * Update plugin.php to better handle odd directories * Correct DB install * Install defaults when no existing redirection setup * Fix problem with custom post types auto-redirecting (click on 'groups' and then 'modified posts' and clear any entries for '/' from your list) * Database optimization * Add patch to disable logs (thanks to Simon Wheatley!) * Fix for some users with problems deleting redirections * Fix group edit and log add entry * Disable category monitoring * Fix 'you do not permissions' error on some non-English sites * Fix category change 'quick edit' * RSS feed token
| ver. 1.4 |
.
| PHP 8.3.10 | Generation time: 0 |
proxy
|
phpinfo
|
Settings