Install savsoft 4.0 online quiz on scaleway - jigneshpshah/greycube_helpmanual GitHub Wiki

Create Server from LEMP Image
  1. Upload all content of savsoftquiz_v4.0_advance-master , directly to my_website folder

  2. http://YOUR_DOMAIN_NAME/index.php/install/

  3. Correct the errors , like making Set 777 (writeable) permission to folders photo, xls, upload, application\logs and the files listed e.g. config.php , sq_config.php

  4. login to phpmyadmin and create database, which you intend to have while doing installation.

  5. If unable to login after successful installation please check folder /application/libraries/ is it have file named 'rename_to_Session_if_session_not_work.php' if yes, then rename it to Session.php https://savsoftquiz.com/forum/thread-4157.html?highlight=login

Few useful links

https://stackoverflow.com/questions/48001569/phpmyadmin-count-parameter-must-be-an-array-or-an-object-that-implements-co

2nd Answer

Manual Method: Open sql.lib.php file

nano /usr/share/phpmyadmin/libraries/sql.lib.php Find for count($analyzed_sql_results['select_expr'] code on file. You can get this at line ~613. You can see this below wrong code

|| (count($analyzed_sql_results['select_expr'] == 1) Just replace that wrong code with this below one

|| ((count($analyzed_sql_results['select_expr']) == 1) Save the file and come to PhpMyAdmin.

Now it works fine :)