bobaksh / easy-appointments

Automatically exported from code.google.com/p/easy-appointments
0 stars 0 forks source link

No activity on pressing Install button http://magiclifemantra.com/easyappointments/ #57

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. After installation, I reach http://magiclifemantra.com/easyappointments/
2. On filling values, I press Install button
3. Nothing happen. What have I done which is not right ?

What is the expected output? What do you see instead?

I expect, it to install & take me to next page. It's stuck over here

What version of the product are you using? On what operating system?

Please provide any additional information below.

Chk this page, nothing happens
http://magiclifemantra.com/easyappointments/

Original issue reported on code.google.com by mailmagi...@gmail.com on 10 May 2015 at 7:49

GoogleCodeExporter commented 9 years ago
I found the reason.
The php variable "allow_url_fopen" needs to be enabled on server-side.

Working now.

Original comment by kris...@bernaert.be on 22 May 2015 at 4:47

GoogleCodeExporter commented 9 years ago
The file below is configuration.php. What else do I have to change

<?php
class SystemConfiguration {
    // General Settings
    public static $base_url    = 'http://www.magiclifemantra.com/easyappointments';

    // Database Settings
    public static $db_host     = 'localhost';
    public static $db_name     = 'magiclifemantra';
    public static $db_username = 'awantik';
    public static $db_password = 'meghna421';

    // Google Calendar API Settings
    public static $google_sync_feature  = FALSE; // Enter TRUE or FALSE;
    public static $google_product_name  = '';
    public static $google_client_id     = '';
    public static $google_client_secret = '';
    public static $google_api_key       = '';
}

/* End of file configuration.php */
/* Location: ./configuration.php */

Original comment by mailmagi...@gmail.com on 22 May 2015 at 6:06