Register
phpBB.com Wiki · Home Projects Help

root / trunk / phpBB / includes / functions_install.php

functions_install.php

View | Annotate | Download (13.4 KB)

# Date Author Comment
8572 View | Annotate 05/29/2008 02:25 PM acydburn

ok… i hope i haven’t messed too much with the code and everything is still working.
Changes:
- Ascraeus now uses constants for the phpbb root path and the php extension. This ensures more security for external applications and modifications (no more overwriting of root path and extension possible through insecure mods and register globals enabled) as well as no more globalizing needed.
- A second change implemented here is an additional short-hand-notation for append_sid(). It is allowed to omit the root path and extension now (for example calling append_sid(‘memberlist’)) – in this case the root path and extension get added automatically. The hook is called after these are added.

8545 View | Annotate 05/04/2008 04:47 PM acydburn

some missing merges…

8477 View | Annotate 03/29/2008 01:08 AM naderman

Go away evil carriage returns\!

8317 View | Annotate 01/09/2008 01:21 AM davidmj

- phpBB now uses a less ancient version of Oracle

8313 View | Annotate 01/07/2008 04:19 PM davidmj

- a few tiny clean ups
- a new MS SQL DBAL, it does not work so hot because of issues with the extension it depends on

8308 View | Annotate 01/06/2008 02:46 PM davidmj

- add DB2 support
/me takes a nap

8307 View | Annotate 01/06/2008 03:21 AM davidmj

the end of an era…
- MySQL < 4.1.3 support is removed
- renamed mysql4 to mysql, no need to cause confusion
- changed the cfg cacher, reduces file system lookups and include count by two on every page load

8295 View | Annotate 01/03/2008 06:00 PM davidmj

oh boy…
- Migrate code base to PHP 5.1+

8248 View | Annotate 11/19/2007 05:44 PM acydburn

further updates

8146 View | Annotate 10/05/2007 04:30 PM acydburn

dumdidum… sorry. ;)

7973 View | Annotate 07/28/2007 05:16 PM davidmj

- allow Oracle to install without having a database name

7893 View | Annotate 07/16/2007 03:06 AM davidmj

#13463
- tiny issue with get_tables()

7830 View | Annotate 07/03/2007 05:36 PM acydburn

let’s see if i can break something. :o

7736 View | Annotate 06/09/2007 01:11 PM acydburn

ok, mess around with the templates + fixing some bugs + adjusting headers for those files already modified to circumvent conflicts for those having their editor set to remove trailing spaces (not recommended!)

7718 View | Annotate 06/06/2007 06:08 PM kellanved

#11969

7700 View | Annotate 05/31/2007 05:14 AM davidmj

#11967

7644 View | Annotate 05/19/2007 05:44 PM acydburn

Allow pre-setting language dependant data in schema_data.sql… specified with {L_*}, also create the search index on installation

7270 View | Annotate 04/03/2007 12:10 AM davidmj

#9554

7223 View | Annotate 03/24/2007 06:20 AM davidmj

#5265

7210 View | Annotate 03/20/2007 04:32 AM davidmj

#5136

7015 View | Annotate 02/19/2007 08:35 PM davidmj

#8234
- some stupid bugs in restore
- centralized the method of getting tables

7009 View | Annotate 02/19/2007 05:12 AM davidmj

- clean up mssql and mssql_odbc, mssql now uses a different method of dealing with IDENTITY
- clean up firebird, I will consider changing it to use fetch array instead of fetch object. it’s identity code already uses this method as of right… now :D
- fix a tiny bug in MySQL’s driver (remember to pass the connect id to all DBAL functions)
- add new_link as a new param for sql_connect. This allows you to make connections that are not dependant on each other. This is done for our friends mysql, mssql, postgresql and oracle. Now for everybody else.. (I said this was clever ;) MySQLi and SQLite should always spawn a new connection when you call it while mssql_odbc and firebird both will create new links if you give them different params (different creds) than the previous connection(s). Thus we can always promise new links :D
- fixed a bug in the converter
- cleaned up the dbal a little

7004 View | Annotate 02/17/2007 07:28 PM davidmj

#8082

6996 View | Annotate 02/17/2007 02:14 AM naderman

- only give DBAL options which were available in phpBB2
- default to phpBB3 DB config

6995 View | Annotate 02/17/2007 12:06 AM naderman

- allow converting from one database to another, no need for tables to be in one database anylonger (this also allows switching from one DBMS that was used with phpBB2 to another DBMS supported by phpBB3 including new systems available in Olympus only)
- abstracted some installation code that is now relevant to converting as well into functions_install.php (mostly DBMS selection related)
- fixed a weird smiley path problem, no idea why nobody else noticed this, maybe my fix was incorrect?
- forgot to commit a file last time