about summary refs log tree commit diff stats
path: root/central/trunk/instadisc.php
Commit message (Collapse)AuthorAgeFilesLines
* Central: Fixed up a few errors in QAKelly Rauchenberger2008-08-041-281/+193
|
* Central: Fixed string concatenationKelly Rauchenberger2008-08-041-1/+1
| | | | | | For some reason, some of the string concatenation was being done by + operators instead of . operators (probably after using Java too much), so they were replaced.
* Central: Fixed instaDisc_activateAccountKelly Rauchenberger2008-08-041-1/+1
|
* Central: Wrote installation scriptKelly Rauchenberger2008-08-041-7/+7
| | | | Closes #4
* Central: Fixed minor errorsKelly Rauchenberger2008-08-031-2/+2
|
* Central: Added checks to Subscription ownership functionsKelly Rauchenberger2008-08-031-10/+34
| | | | Closes #5
* Central: Updated MySQL escape wrappersKelly Rauchenberger2008-08-031-30/+30
| | | | | Previously ([37]), MySQL query strings were updated to use the MySQL escape function mysql_escape_string(). Now, to add even more protection, the function mysql_real_escape_string() is used instead.
* Central: Added Subscription ownership functionsKelly Rauchenberger2008-08-031-0/+106
|
* Central: Added "xmlrpc" field to centralServersKelly Rauchenberger2008-08-021-2/+3
|
* Central: Added instaDisc_getConfig()Kelly Rauchenberger2008-08-021-8/+17
| | | | This functions retrives a single configuration value out of the database.
* Central: Started library frontend functionsKelly Rauchenberger2008-08-021-0/+102
| | | | Documentation for currently available functions is located at CentralServerFrontendFunctions. Refs #5.
* Central: Fixed [wiki:Verification] systemKelly Rauchenberger2008-08-021-7/+28
| | | | | | Also added the phpMailer class from Codeworxtech, its SMTP module and a snippet in db.php which kills execution of the Central Server if the PHP "curl" extension is not installed and loaded.
* Central: Completed instaDisc_sendItem() functionKelly Rauchenberger2008-08-011-0/+27
| | | | Closes #3
* Central: Added sendDatabase functionsKelly Rauchenberger2008-08-011-0/+22
| | | | | Completed the instaDisc_sendDatabase() library function and the InstaDisc.sendDatabase() XML-RPC function.
* Central: MySQL-escaped query stringsKelly Rauchenberger2008-08-011-4/+4
| | | | Wrapped strings in MySQL queries with mysql_escape_string() to prevent errors and XSS-attacks.
* Central: Added library skeletonKelly Rauchenberger2008-08-011-0/+38
| | | | | | Added the library method signatures for XML-RPC used functions to the library, and also implemented a instaDisc_sendUpdateNotice() and instaDisc_addItem(). Refs #3.
* Central: Centrallized verification checksKelly Rauchenberger2008-08-011-0/+22
Molded the verification checking into one library functions so the each and every XML-RPC function wouldn't have to implement. Also added the InstaDisc.sendUpdateNotice and InstaDisc.askForDatabase functions.