
Source code introduction:
All kinds of functions are available, and it is a rare source code for film and television apps on the market.
Fixed white edges during full-screen playback;
Fixed that it could not be played when the second search option was TV series;
Update the pre-emptive source docking address;
Build the environment
Environment php5.4, MYSQL5.6
System: Windows, LINUX
Do not use Notepad to modify all files and codes, otherwise the return values may be garbled
[Installation Instructions]
1. Unpack the program to the server/virtual space
2. Import eruyi_user1.3.sql into the database
3. Modify the config.php database configuration in the include directory
[Settings/Login]
Backend account/password: admin
Background password setting: modify userdata.php in the admin directory
[Registration]:/api.php? action=register
POST Submit:
user= account number
password= password
superpass= super password
inv= Inviter ID
markcode= machine code
Return:
101: Account number is empty
102: Password is empty
103: Super password is empty
104: Machine code is empty
105: Account already exists
106: The IP is registered
107: The machine code has been registered
1005: The inviter does not exist
200: Success
[Login]:/api.php? action=login
POST Submit:
user= account number
password= password
markcode= machine code
Return value:
101: Account number is empty
102: Password is empty
104: Machine code is empty
110: The account password is incorrect
108: Machine codes do not match
112: No login
Successful login will receive json data
User ID, user account, user avatar, user name, VIP, token
[WeChat login, registration]:/api.php? action=wx_login
post Submit data:
openid= WeChat openid
access_token= WeChat access_token
inv= Inviter ID
markcode= machine code
The system will automatically interpret whether this WeChat account has been registered
Return value:
104: Machine code is empty
106: The IP is registered
107: The machine code has been registered
112: No login
1001: WeChat openid is empty
1002: WeChat access_token is blank
1003: Wrong identity information
1004: The WeChat openid is incorrect
1005: The inviter does not exist
After successful login or registration, it will return: user ID, user account, user avatar, user name, VIP, token
[Refresh user information]:/api.php? action=getinfo
POST Submission: token
Return value:
150:Token is empty
151:Token has expired or does not exist or is incorrect
112: Account has been disabled
Everything is normal, returning json data for user information
User ID, number of invited users, account number, avatar, name, WeChat openid, VIP, points, machine code
[Member Verification]:/api.php? action=getvip
POST Submission: token
Return value:
150: Token cannot be empty
112: No login
151: Wrong token
200: VIP Real
201: VIP Leave
[Check-in]:/api.php? action=diary
post Submit data: token
Return value:
112: No login
150: Token cannot be empty
151: Token does not exist
171: I have already signed in today
172: Check-in function is not turned on
173: Check-in failed. Please try again
200: Check-in was successful
[Card Secret Recharge]: api.php? action=checkkami
POST submitted: token,kami
Return value: 150:token is empty
130: Card secret is empty
131: Wrong card secret
132: Card secret has been used
151:Token has expired
134: Already a permanent member
135: Use failed
200: Success
[Binding WeChat]: api.php? action=wx_bind
POST submission: token, openid, access_token
Return value:
150: Token is empty
151: Incorrect token
200: Binding successfully
1001: WeChat openid is empty
1002: WeChat access_token is blank
1003: Wrong identity information
1004: The WeChat openid is incorrect
1006: This WeChat account has been bound to another account
1007: You are already bound to WeChat
1008: Binding failed
[Set account password]:/api.php? action=alteruser(dedicated to WeChat users)
POST Submit:
token= login status
user= account number
password= password
superpass= super password
Return value:
101: Account number is empty
102: Password is empty
103: Super password is empty
105: Account number already exists
109: The account does not support Chinese, and the length must not be less than 5 and not greater than 11
150: Token is empty
151: Wrong token
180: Each user can only modify it once
181: Modification failed
200: Modified successfully
[Change name]:/api.php? action=altername
POST Submit:
token= login status
name= new name
Return value:
101: Account number is empty
150: Token is empty
130: Name is empty
151: Token has expired or does not exist or is incorrect
200: Success
[Modify avatar]:
E4A interface: /api.php? action=alterpic&token=【token】&type=e4a
Bluebird interface: /api.php? action=alterpic&token=【token】&type=bbp
POST submits pictures, please use E4A [Ruyi Upload Class Library], Bluebird can use its own uploader
Return value:
101: Account number is empty
150: Token is empty
151: Token has expired or does not exist or is incorrect
160: Interface type is empty
161: Incorrect interface type
162: Upload failed
163: Failed to modify avatar data
200: Success
[Change password]:/api.php? action=modify
POST Submit:
user= account number
password= password
newpass= new password
Return value:
101: Account number is empty
102: Password is empty
141: New password is empty
110: Wrong account password
200: Success
[Recover password]:/api.php? action=findpass
POST Submit:
user= account number
superpass= super password
password= new password
Return value:
101: Account number is empty
102: Password is empty
103: Super password is empty
123: Incorrect super password
200: Success
[Unlock Device]:/api.php? action=editcode
POST Submit:
user= account number
superpass= super password
newcode= new equipment machine code
Return value:
101: Account number is empty
103: Super password is empty
104: Machine code is empty
123: Incorrect super password
124: Modified within 24 hours
200: Success
Comments0