~pbms-core/pbms/5.11-beta

« back to all changes in this revision

Viewing changes to php/ext/tests/custom_settings.ini

  • Committer: Barry.Leslie at PrimeBase
  • Date: 2010-02-25 17:15:10 UTC
  • Revision ID: barry.leslie@primebase.com-20100225171510-ztd2hnjosu40ci34
Pulled the BLOB alias support out of the  daemon. This was done because
supporting it in a transactional environment would have been complicated and
since it is not part of the core objectives of the PBMS daemon I felt that it was
not worth the effort it would take.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
        // the test database replacing it with the backup it just made and then
8
8
        // restart the MySQL server.
9
9
        
10
 
        $mysqlServerInst = "/Users/leslie/Projects/mysql_build/mysql-5.1.31_inst";
 
10
        $mysqlServerInst = "/Users/leslie/Projects/mysql_build/mysql-5.1.42_inst";
11
11
        
12
12
        $host = ini_get("pbms.default_host");
13
13
        $port = ini_get("pbms.default_port");
14
14
        $database = ini_get("pbms.default_database");
15
 
        $engine = "INNODB";
 
15
        $engine = "InnoDB";
16
16
        if ($database == "") {
17
17
                $host = "localhost";
18
18
                $port = "8080";
29
29
        // The public/private key will be taken from your system
30
30
        // environment variables: S3_ACCESS_KEY_ID and S3_SECRET_ACCESS_KEY
31
31
        
32
 
        $s3_server = "s3.amazonaws.com";
33
 
        $s3_bucket = "barrytest";
34
 
        $s3_public_key = getenv("S3_ACCESS_KEY_ID");
35
 
        $s3_private_key = getenv("S3_SECRET_ACCESS_KEY");
 
32
        //$s3_server = "s3.amazonaws.com";
 
33
        //$s3_bucket = "barrytest";
 
34
        //$s3_public_key = getenv("S3_ACCESS_KEY_ID");
 
35
        //$s3_private_key = getenv("S3_SECRET_ACCESS_KEY");
36
36
        
37
37
?>
38
38