summaryrefslogtreecommitdiffstats
path: root/lib/init.php
Commit message (Collapse)AuthorAgeFilesLines
* Onward to the futurePaul Arthur2013-05-301-1/+1
|
* Finalise 3.6-alpha63.6-alpha6Paul Arthur2013-05-301-1/+1
|
* Set the memory_limit to at least 32MPaul Arthur2013-05-151-2/+4
| | | | '32' != '32M'
* Increase the default memory limit to 32Paul Arthur2013-05-131-2/+2
| | | | This matches what the config files claims is the default.
* Finalise 3.6-alpha53.6-alpha5Paul Arthur2013-04-151-1/+1
|
* Treat Snoopy the same as other external modulesPaul Arthur2013-03-291-1/+1
| | | | | It gets its own directory containing the minimally modified contents of its upstream source tarball.
* Clean up PHP tests and reuse them in init.phpPaul Arthur2013-02-031-4/+1
| | | | | Also move the config-related functions out of debug.lib.php (why they were there in the first place is anyone's guess.)
* Fix up the tests a bitPaul Arthur2013-02-031-1/+4
| | | | | The hash check shouldn't be mixed in with the version check, and we now need JSON.
* Add a check that makes sure PDO is availablePaul Arthur2013-02-031-1/+1
| | | | | | Calling an unavailable class is a fatal error, so people without PDO were left with a fairly useless blank screen and no indicator of what was wrong. Let's be a bit more user-friendly.
* Rename vauth to AuthPaul Arthur2013-01-281-4/+4
|
* Move sessiony things from vauth into SessionPaul Arthur2013-01-281-13/+21
|
* Cosmetics: death to tabsPaul Arthur2013-01-261-79/+79
| | | | | The refactoring I've been doing has reminded me of my strong preference for spaces, and I feel inclined to impose my will on the tree.
* Cosmetics: clean up heads in lib/Paul Arthur2013-01-251-7/+1
|
* Rework transcodingPaul Arthur2013-01-231-1/+1
| | | | | | | | Remove some of the roundabout complexity that had built up. Push people toward using a single, flexible tool for most of their transcoding needs. Increase backend and configuration flexibility to support user-requested format changes (e.g. for an HTML5 player); this functionality is not yet exposed.
* Drop unused nusoap libraryPaul Arthur2013-01-151-1/+0
|
* Finalise 3.6-alpha43.6-alpha4Paul Arthur2012-11-271-1/+1
|
* Finalise 3.6-alpha33.6-alpha3Paul Arthur2012-10-151-1/+1
|
* Finalise alpha23.6-alpha2Paul Arthur2012-08-151-1/+1
| | | | I'm tired of seeing alpha1.
* web_path cleanupPaul Arthur2012-07-111-18/+10
| | | | force_ssl was broken, should be fixed now.
* Remove unused mysql_* valuesPaul Arthur2012-03-131-4/+0
|
* Refactor similar init code into new init-tiny.phpPaul Arthur2012-03-131-51/+1
| | | | | | | | | Several places were doing operations that were practically the same (loading core libraries and setting some variables), with varying levels of success in remembering to do the right things in the right order. Making a separate minimal init.php that doesn't worry about some of the sanity checks and session bumpf makes this cleaner and easier to maintain.
* Use a flag to determine whether an outdated database is OKPaul Arthur2012-03-061-1/+1
| | | | | This matches the handling of NO_SESSION and gives us some needed leeway for the CLI tools.
* Clean up uses of Config::set and Config::set_by_arrayPaul Arthur2012-03-061-3/+3
| | | | | Consistently pass in a boolean instead of a string or an int for the clobber flag.
* Explicitly load vauth in init.phpPaul Arthur2012-03-021-0/+5
| | | | | | As there are some code paths that do session manipulation without any calls to vauth first, relying on autoload may result in our custom session handler not being used.
* Move session extension outside the auth block in init.phpPaul Arthur2012-03-011-3/+2
| | | | | This might help ensure that we're always extending the session when we should.
* Refactor the initial checks in init.phpPaul Arthur2012-02-211-20/+20
| | | | Reduce the amount of code duplication.
* Redirect to /test.php for PHP <5.3 on all platformsPaul Arthur2012-02-211-1/+1
| | | | 5.3 is now required on all platforms, not just Windows.
* WhupsKarl Vollmer2011-12-011-1/+1
|
* Fixed two PHP warnings, and some issues with how users were being constructedKarl Vollmer2011-12-011-2/+2
| | | | in init (which makes me wonder) and started trying to figure out why libre.fm broke
* Add AmpacheAPI libraryKarl Vollmer2011-11-231-0/+1
|
* Remove special case for loading vauthPaul Arthur2011-11-101-2/+0
| | | | | Synology is (probably) able to load vauth, it just doesn't like our custom session handler.
* Fix custom session handler.Paul Arthur2011-11-091-0/+1
| | | | | | | We were manually loading the vauth class (apparently to work around a bug in Synology's PHP) but not calling vauth::_auto_init(), so the default session handler was used. This normally does session locking, so bad things happened.
* FS#190 - Add support for HTTP_FORWARDED (Forum patch) dipsol2011-09-151-2/+8
|
* Clean up some PHPDoc crapPaul Arthur2011-04-041-6/+1
| | | | | | Remove misleading, unvetted, or in some cases just plain wrong data. Packages and categories weren't being used correctly. They still aren't.
* Reworked searchPaul Arthur2011-04-021-1/+1
| | | | | Still has tentacles and should have been integrated into the existing API/Browse implementation better, but it's functional.
* header comment modified for phpdocmomo-i2011-02-031-1/+9
|
* test header for phpdoc. now using only classes and libraries.momo-i2011-02-021-18/+21
|
* add force_ssl (for ssl reverse proxy)momo-i2011-02-011-1/+1
|
* Squashed commit of the following:Elias Probst2010-12-081-4/+1
| | | | | | | | commit 8a5127572c89f28f060d3ad0819136f79b65faef Author: Elias Probst <mail@eliasprobst.eu> Date: Wed Dec 8 03:51:20 2010 +0100 Rewrote the error message for duplicate ACLs. Expose the error message to the UI.
* Break everyone's config by changing metadata gathering.Paul 'flowerysong' Arthur2010-10-061-1/+1
|
* Miscellaneous cleanup.Paul 'flowerysong' Arthur2010-06-131-25/+22
|
* fix notice due to undefined indexes when checking for unset config valuesKarl 'vollmerk' Vollmer2010-05-041-1/+1
|
* removed stupid require that I should not have put inKarl 'vollmerk' Vollmer2010-03-191-1/+0
|
* Add vlc controller - untested, just want it in svnKarl 'vollmerk' Vollmer2010-03-191-0/+1
|
* Cosmetics: remove trailing whitespacePaul 'flowerysong' Arthur2010-03-141-72/+72
|
* Unbreak http auth, make it more sane. Old broken method renamed to null, in Paul 'flowerysong' Arthur2010-03-141-18/+1
| | | | | case crazy people still want it. Add support for redirecting to a SSO provider after logout.
* make it actually extend the session, also improve debug on the image pageKarl 'vollmerk' Vollmer2009-12-231-1/+6
|
* sync from 3.5.x and fix display issue on playlist viewKarl 'vollmerk' Vollmer2009-12-201-0/+3
|
* After 3 hours, I finally managed to fix the [synology/fast-cgi] bug that ↵spocky2009-12-161-1/+2
| | | | prevented __autoload to work in certain cases.
* Remove XML-RPC functions and start prep for use of new API for ampache ↵Karl 'vollmerk' Vollmer2009-11-191-2/+0
| | | | catalog syncs