Skip to content

Commit cab19ad

Browse files
committed
As previous host 000webhost was not working so project apis are shifted new host https://bingedev.com/
1 parent e7bb288 commit cab19ad

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

README.md

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
# Flutter Client PHP Backend
22

3-
### App features will no longer work as https://hafinse.000webhostapp.com/ is deleted by the free hosting due to high usage. Do not create any issue related to that. If you are facing in problem in setting up feel free to mail me at [email protected]
4-
53
## App Demonstrating the use of Flutter and PHP.
64

75
* App Logo Created Using [Logo Maker](http://logomakr.com)
8-
* For Hosting used [000webhost](https://hafinse.000webhostapp.com)
9-
10-
##### Note if REST APIs used in the app are not working and you are getting following error https://imgur.com/a/AcbW5uh Then you have to use your own hosting(website) to test the app.
6+
* For Hosting used [bingedev](https://bingedev.com/)
117

128
## Built With
139

@@ -31,7 +27,7 @@
3127
* Create a table inside your database using [FlutterClientPhpBackend.sql](https://github.com/harsh159357/flutter_client_php_backend/blob/master/phpbackend/FlutterClientPhpBackend.sql)
3228
* If you are using your own website just edit the following constant inside [constants.dart](https://github.com/harsh159357/flutter_client_php_backend/blob/master/lib/utils/constants.dart)
3329

34-
static const String API_BASE_URL = "https://hafinse.000webhostapp.com";
30+
static const String API_BASE_URL = "https://bingedev.com/";
3531

3632
* Make sure to edit [DBOperations.php](https://github.com/harsh159357/flutter_client_php_backend/blob/master/phpbackend/DBOperations.php) and change following things -
3733

@@ -40,7 +36,7 @@
4036
private $db = 'your_database';
4137
private $pass = 'your_password';
4238

43-
### Not Interested in doing above steps just clone this repo and use it as it is already hosted on Free Web Host 000webhost [hafinse](https://hafinse.000webhostapp.com)
39+
### Not Interested in doing above steps just clone this repo and use it as it is already hosted [bingedev](https://bingedev.com/)
4440

4541

4642
## Features Implemented

lib/utils/constants.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
///////////////////////////////////////////////////////////////////////////////
1919
class APIConstants {
2020
static const String OCTET_STREAM_ENCODING = "application/octet-stream";
21-
static const String API_BASE_URL = "https://hafinse.000webhostapp.com";
21+
static const String API_BASE_URL = "https://bingedev.com/";
2222
}
2323

2424
///////////////////////////////////////////////////////////////////////////////

phpbackend/index.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
require_once 'Functions.php';
3+
require_once 'functions.php';
44

55
$fun = new Functions();
66

0 commit comments

Comments
 (0)