apache - Running a open source php project after modifications -


i looking open source php website code , found 1 @ http://projects.students3k.com/online-exam-website-php-source-code.html , downloaded it. doesnt have read me suppose involves common sense people use php.

subsequently, installed apache2, placed whole stuff in var/www/ , connected database.

  1. what i'm unable find users login user or admin interface. did find file users in csv format doesn't work
  2. the instructions have make changes file lib/db.php adding local parameters.

this not sort of homework , wanna explore functionality of website.

p.s. - file size 80 mb before i'm scolded posting such links.

p.p.s - reallllly me , have smashed head trying.

db.php file after modifications :

define('db_server', 'localhost'); define('db_user', 'root'); define('db_passwd', 'password'); define('db_name', 'test'); define('admin_url', 'localhost/admin/'); define('url', 'localhost/'); define('imageurl', '/var/www/images');  define('site_admin_name','http://online-test.students3k.com/admin/'); define('site_name', 'http://online-test.students3k.com/'); define('admin_folder_name', '/var/www/admin/web'); define('admin_path','<a href="../home.php" style="text-decoration: none;">admin</a>                          <span class="org_arrow"><b>&raquo;</b></span>'); define('site_title', 'ismart exams'); define('admin_site_title', 'ismart exams :: admin panel'); 

you need import data database. file located at

database/ismartexams.sql 

after imported data there 3 users available.

  1. admin
  2. testengine
  3. superadmin

their passwords equal username.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -