CodeCanyon

Ultimate Client Manager - Lite Edition

I cannot login to my system, it just takes me to the home page

For the people with hosting session issues, you can try this:

Step 1: Create a folder called “tmp” in the same folder as index.php

Step 2: Give the folder “write” permissions through your FTP program or hosting control panel

Step 3: On line 3 of index.php, paste this PHP code:

ini_set("error_reporting",E_ALL);
ini_set("display_errors",true);
ini_set("session.save_handler", "files");
session_save_path (getcwd() . "/tmp/");

Why are passwords not encrypted?

Passwords and other current information are stored unencrypted because no point in encrypting them. For starters if someone can find our your login password (eg: by hacking your hosts mysql server) then they already have access to all the other information in the system, and they don’t really need a password. Second, this was designed as an information storage and retrieval system – so everything was in plain text for easy save/display/integration.

However! I do like encrypting things, and when the credit card storage area is complete I will be giving the option for people to encrypt ALL the data in the system. So that even if someone were to hack your mysql, they wouldn’t have any useful information at all. This will use public / private key cryptography – more details to come closer to the date.

What is the default username and password

Default username should be admin@example.com
Default password should be password

I am getting 404 errors or it is showing my website home page when trying to click menu links.

Please look in the folder “includes/”

includes/config.php on about line 19 you should see this:

define("_REWRITE_LINKS",true);

change it to this

define("_REWRITE_LINKS",false);

My home page loads when I login, but when I click links I get a 500 internal server error.

Open the file ”.htaccess” and put a / right before index.php so it looks like this:

RewriteRule ^(.*)$ /index.php [L,QSA]

My dates do not work, or the date gets reset to something strange.

Please go to Settings > Advanced and look for “date_input”.

Change this from 1 to 2, or from 1 to 3, and test which works best for you.

I am getting \” in my emails or page content.

Open index.php and put this code on line 2:

if (get_magic_quotes_gpc()) {
    $process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
    while (list($key, $val) = each($process)) {
        foreach ($val as $k => $v) {
            unset($process[$key][$k]);
            if (is_array($v)) {
                $process[$key][stripslashes($k)] = $v;
                $process[] = &$process[$key][stripslashes($k)];
            } else {
                $process[$key][stripslashes($k)] = stripslashes($v);
            }
        }
    }
    unset($process);
}

How do I get users to appear in the “Staff Member” drop down lists

Please ensure a user has “VIEW” permissions on “Job Tasks”. Giving a user this permission will display her in the staff member drop down list.

You must sign in or sign up to purchase this item.

$30Regular Licence

$30

Regular Licence a website (commercial, personal, client), or intranet site project - Details

$150Extended Licence

$150

Extended Licence a website template for sale (including on ThemeForest or ActiveDen) - Details

1393 Purchases 820 Comments

Buyer Rating
12345 ( 379 ratings )
dtbaker

dtbaker

  • Has been a member for 2-3 years
  • Won a Competition
  • Repeatedly Helped protect Envato Marketplaces against copyright violations
  • Author had a File in an Envato Bundle
  • Community Moderator
  • Author had a Free File of the Month
  • Exclusive Author
  • Beta Tester
  • Sold between 250 000 and 1 000 000 dollars
  • Elite Author
  • Bought between 10 and 49 items
  • Australia
  • Referred between 200 and 499 users
View Portfolio
Created 27 June 09
Compatible Browsers IE6, IE7, IE8, IE9, Firefox 2, Firefox 3, Firefox 4, Safari 4, Safari 5, Opera, Chrome
Software Version PHP 5.3, MySQL 5.x
Files Included JavaScript JS, HTML, CSS, PHP, SQL
by
by
by
by
by