mirror of
				http://git.whoc.org.uk/git/password-manager.git
				synced 2025-10-31 11:27:34 +01:00 
			
		
		
		
	First version of the newly restructured repository
This commit is contained in:
		
							
								
								
									
										36
									
								
								backend/php/src/configuration.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										36
									
								
								backend/php/src/configuration.php
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,36 @@ | ||||
| <?php | ||||
| global $configuration; | ||||
| $configuration['soap'] = "http://www.phpobjectgenerator.com/services/soap.php?wsdl"; | ||||
| $configuration['homepage'] = "http://www.phpobjectgenerator.com"; | ||||
| $configuration['revisionNumber'] = ""; | ||||
| $configuration['versionNumber'] = "3.0d"; | ||||
|  | ||||
| $configuration['setup_password'] = ''; | ||||
|  | ||||
|  | ||||
| // to enable automatic data encoding, run setup, go to the manage plugins tab and install the base64 plugin. | ||||
| // then set db_encoding = 1 below. | ||||
| // when enabled, db_encoding transparently encodes and decodes data to and from the database without any | ||||
| // programmatic effort on your part. | ||||
| $configuration['db_encoding'] = 0; | ||||
|  | ||||
| // edit the information below to match your database settings | ||||
|  | ||||
| $configuration['db']	= 'clipperz'; 		//	database name | ||||
| $configuration['host']	= 'localhost';	//	database host | ||||
| $configuration['user']	= 'root';		//	database user | ||||
| $configuration['pass']	= 'pass';		//	database password | ||||
| $configuration['port'] 	= '3306';		//	database port | ||||
|  | ||||
|  | ||||
| //proxy settings - if you are behnd a proxy, change the settings below | ||||
| $configuration['proxy_host'] = false; | ||||
| $configuration['proxy_port'] = false; | ||||
| $configuration['proxy_username'] = false; | ||||
| $configuration['proxy_password'] = false; | ||||
|  | ||||
|  | ||||
| //plugin settings | ||||
| $configuration['plugins_path'] = dirname(__FILE__).'/plugins'; | ||||
|  | ||||
| ?> | ||||
		Reference in New Issue
	
	Block a user
	 Giulio Cesare Solaroli
					Giulio Cesare Solaroli