Skip to content
Snippets Groups Projects
Commit d4569374 authored by root's avatar root
Browse files

import README

parent 205b984c
No related branches found
No related tags found
No related merge requests found
Wardenweb - PoC web gui for Warden
=====================================
TOC:
1. Install
2. Usage
1. Install
-----------
* create db.php as follows:
==================================
<?
$host = "localhost";
$dbname = "db";
$user = "user";
$pass = "pass";
require_once("./db.php.public");
$db = mysql_pconnect($host, $user, $pass);
if (!$db) { die('Could not connect: ' . mysql_error()); }
mysql_select_db($dbname);
?>
==================================
2. Usage
-----------
This software is provided AS IS, nothing else.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment