Here are more complete details. Please help me as I really want to use this tool. Thanks.
I have downloaded the mibew version 1.6.15. And I have uploaded all the files to my website host server. My website is hosted by a specialized company. My website files are all under ''public_HTML''. So the mibew files are all under ''public_HTML/mibew''.
My computer is linux and I used filezilla to tranfer the files. Once uploaded I have changed the permission of the ''mibew'' folder only to 755 and the ''install'' folder to 644. (No recursion in sub-folders)
Using my CPANEL I have created a database with the help of this webpage
http://www.webdevelopersnotes.com/how-do-i/create-mysql-database-web-site-server.phpI have edited the config.php file under ''mibew/libs'' with my database info. Here is the whole content of the config.php file where I replaced the pw by ''removed''.
<?php
/*
 * This file is a part of Mibew Messenger.
 *
 * Copyright 2005-2015 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     
http://www.apache.org/licenses/LICENSE-2.0 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/*
 *  Application path on server
 */
$mibewroot = "/mibew";
/*
 *  Internal encoding
 */
$mibew_encoding = "utf-8";
/*
 *  MySQL Database parameters
 */
$mysqlhost = "localhost";
$mysqldb = "gqjrzxwt_mibew";
$mysqllogin = "gqjrzxwt_bdn1";
$mysqlpass = "removed";
$mysqlprefix = "";
$dbencoding = "utf8";
$force_charset_in_connection = true;
/*
 *  Mailbox
 */
$mibew_mailbox = "mibew@yourdomain.com";
$mail_encoding = "utf-8";
/*
 *  Locales
 */
$home_locale = "en"; /* native name will be used in this locale */
$default_locale = "en"; /* if user does not provide known lang */
/*
 * Additional protection using open_basedir
 */
$use_open_basedir_protection = false;
?>
Now, when I open my browser and try
http://www.mydomain.com/mibew/install/I get
Erreur 403 Error
Is Forbidden
I must be doing something wrong but I don't know what.
Can you help?