meeting-room-booking-system / mrbs-code

MRBS application code
Other
124 stars 61 forks source link

Unable to run new configured MRBS #2815

Open jberanek opened 4 years ago

jberanek commented 4 years ago

Today I had configured Ubuntu + Mysql + Phpmyadmin+ apache2 . After that I had copied all the data of mrbs/web to /var/www/html/mrbs/web After that I made changes

  1. Create databae mrbs
  2. run tables through tables.my.sql
  3. run mysql
  4. connect mrbs
  5. show tables
  6. it is showing following tables
  7. -> ; +----------------+ | Tables_in_mrbs | +----------------+ | mrbs_area | | mrbs_entry | | mrbs_repeat | | mrbs_room | | mrbs_sessions | | mrbs_users | | mrbs_variables | | mrbs_zoneinfo | +----------------+ mysql> select * from mrbs_variables; +----+------------------+------------------+ | id | variable_name | variable_content | +----+------------------+------------------+ | 1 | db_version | 63 | | 2 | local_db_version | 1 | +----+------------------+------------------+

    1. config.inc.php-sample to config.inc.php
    2. open config.inc.php
    3. changes time zone =Asia/Kolkata
    4. db_host="142.147.12.151"
    5. db_persist="TRUE"

    After running in browser http://142.147.12.151/mrbs/web/index.php then I had found the error of This page isn’t working right now142.147.12.151 can't currently handle this request. HTTP ERROR 500

Pl. suggest, what changes need to design

Thanks in advance Jitendra Kanungo Indore 9755097224

Reported by: jitendrakanungo

Original Ticket: mrbs/support-requests/2121

jberanek commented 4 years ago

Have a look in your PHP error log file to see what the detailed error message is. I suspect you have a typo in your config file, eg a missing semicolon.

Original comment by: campbell-m