Jump to content

Recommended Posts

Posted

Dear all,

I trying to install MRBS on LINUX but after installing and configure. I go to URL http://mrbs.company.com. It appear blank white page (no content). Please help me!! Below is config.inc.php parameter.

 

$timezone = "Asia/Bangkok";

 

 

/*******************

* Database settings

******************/

// Which database system: "pgsql"=PostgreSQL, "mysql"=MySQL,

// "mysqli"=MySQL via the mysqli PHP extension

$dbsys = "mysqli";

// Hostname of database server. For pgsql, can use "" instead of localhost

// to use Unix Domain Sockets instead of TCP/IP. For mysql/mysqli "localhost"

// tells the system to use Unix Domain Sockets, and $db_port will be ignored;

// if you want to force TCP connection you can use "127.0.0.1".

$db_host = "localhost";

// If you need to use a non standard port for the database connection you

// can uncomment the following line and specify the port number

// $db_port = 1234;

// Database name:

$db_database = "mrbs";

// Schema name. This only applies to PostgreSQL and is only necessary if you have more

// than one schema in your database and also you are using the same MRBS table names in

// multiple schemas.

//$db_schema = "public";

// Database login user name:

$db_login = "root";

// Database login password:

$db_password = 'duy123';

// Prefix for table names. This will allow multiple installations where only

// one database is available

$db_tbl_prefix = "mrbs_";

// Uncomment this to NOT use PHP persistent (pooled) database connections:

// $db_nopersist = 1;

Posted
Dear,

I am trying to connect by web browser on server.

 

Thanks

Stillpham

 

I understand that, but are you able to ping the server to rule out any firewall issues?

Posted

Put a html page on the webserver, call it test.html and make it say hello world or similar.

 

Then go to the webpage mrbs.mycompany.com/test.html

 

Assuming it loads proeprly then this proves that your webserver is working fine and giving pages, so the problem is with your installation of mrbs and nothing else.

Posted

Take a look at your web server error logs. If apache2 this will be /var/log/apache2/error.log.

 

Should give you any errors that are preventing MRBS from loading.

 

Do you have PHP installed and enabled? Do you have the right modules installed and enabled within PHP as needed?

Posted

Dear ,

The error.log does not appear error. Could you guide me the right modules installed and enabled within PHP? I will check it again.

 

Thanks

Stillpham

Posted

Create a php file in your html folder with the following in it:

 

phpinfo();
?>

 

Then, browse to that file, save the result and attach it here so I can have a look at your PHP setup.

Posted
Ok, I'm not sure what that file is (after decompressing it) - but it isn't the output of phpinfo();. My guess, there is something seriously wrong with your php install if that is what it is displaying for phpinfo!
Posted

Ok, from that, I can see that your PHP install doesn't have any mysql modules installed, so you'll need to install it.

 

Appears you're running Oracle Enterprise Linux, so:

 

yum install -y php-mysql php-mysqli
/etc/init.d/httpd restart

 

Then try loading the MRBS page again.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...