Lowtrac
The simple trac

Welcome to Lowtrac. Lowtrac is a simple and straight-forward trac software aimed at developers who want an easily customizable and integrable way of letting users and customers report bugs and request features

Lowtrac features:

-Simple and dedicated CSS file
-Low database profile (1 MySQL table)
-Fully functioning, inline admin tools
-Installation file for quick setup

Installation is easy! Just follow the steps below:

Step 1:

Upload Lowtrac's files to 'lowtrac' folder in your webroot.
( http://example.com/lowtrac/ )

Step 2:

Login to your web host's control panel and retrieve your MySQL database information. If no database exists, follow your host's instruction guide to create a new one.

Step 3:

Go to 'install.php' in your browser, located in the '/lowtrac/' folder.
( http://example.com/lowtrac/install.php )

Go to install.php in browser

Step 4:

Enter the desired Lowtrac admin password as well as all other information requested regarding your database.

Enter login and database info

Step 5:

Delete 'install.php' from your webserver.

Delete install.php from server

And you're done!

Customizing Lowtrac's looks to fit your site is as simple as opening 'lowtrac.css' with your preferred editor and changing the CSS accordingly.

Want to use a custom page template? That's easy, too!

Step 1:

Insert the following line of code into the VERY TOP of your custom 'index.php':

<?php require_once( 'lowtracpw.php' ); ?>

Step 2:

Insert the following line of code anywhere within the html <head> and </head> tags.

<link rel="stylesheet" href="lowtrac.css" />

Step 3:

Insert the following line of code exactly where you want Lowtrac to appear in your page.

<?php lt_trac( 10 ); ?>

Note:

The default number of items listed per page is 10. To change this, simply change the number 10 that is seen in the code inserted in step 3.