iamrohitsuthar / Quizller

Quizller is a php based open source web application to create and manage online quiz, test, exam.
MIT License
112 stars 80 forks source link

It does not show the start button #11

Closed gharajedaghi closed 3 years ago

gharajedaghi commented 4 years ago

Capture

iamrohitsuthar commented 4 years ago

Make sure the test is in Running Mode. You can check the status of the test in the details section of test

gharajedaghi commented 4 years ago
  1. Yes, the test is running mode.
  2. I'm login in with any password and user when generating user and password. now the problem does not show the start test button. Capture 03 66
ashawe commented 4 years ago

@amir-gharajedaghi Can you turn on errors on your PHP and see if anything is there? Also, guide us through how you got this error

rajking16 commented 3 years ago

remove these line of code from dashboard.php and it will definetly gonna work....

session_start(); if($_SESSION['test_ongoing'] == "true"){ echo "Test Ongoing"; header("Location: quiz.php"); } else if(!isset($_SESSION['student_details'])){ echo "You are not logged in"; header("Location: ../index.php"); }