Welcome to World of IPTV

With

+23k members
+11k threads
+106k posts

we are the most popular IPTV community on the web. 

IMPORTANT NOTE:
WE HAVE RECENTLY NOTICED THAT TOO MANY DOUBLE FAKE ACCOUNTS ARE CREATED IN THE PAST.
TO PREVENT THIS ISSUE THE DECISION WAS MADE THAT IN THE FUTURE A ANNUALLY FEE 20 EURO WILL BE RAISED FOR NEW MEMBERSHIPS.

Join now to the World of IPTV

Forum Rules

Before you start, check out the forum rules first

Account upgrade

Upgrade your account to get access to full features

Advertising

Would you like to place your advertisement with us ?

Resources Manager

Hundreds of IPTV scripts and apps are available for download

xtream codes v2 how to edit existing mysql data

debug

Extended Member
Ext. Member
Joined
Sep 3, 2019
Messages
28
Reaction score
415
Points
64
Location
Earth
Hello

here are some tips how you can manage your existing stream url's or even any other data in your mariadb xtream_iptvpro sql

login to main server and we will add new user for mysql

// to create new user in main server (mariadb-server)
mysql -u root -p
CREATE USER 'sqlquser' IDENTIFIED BY 'sqlpasswordforthatuser';
GRANT USAGE ON . TO 'sqluser'@'%' IDENTIFIED BY 'sqlpasswordforthatuser';
GRANT ALL privileges ON xtream_iptvpro.* TO 'sqluser'@'%';
FLUSH PRIVILEGES;
quit

//mysql (i have mariadb and i didnt test this does it works with mysql-server)
mysql -u root -p
CREATE USER 'newuser'@'%' IDENTIFIED BY 'password';
#maybe you can try this one but better to grant all privileges , command below// GRANT ALL PRIVILEGES ON xtream_iptvpro.* TO ‘username’@'%’;
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'%';
FLUSH PRIVILEGES;
quit

so lets do it one by one (change username and pass for new user)

ok we added new user and grant privileges

now download https://dev.mysql.com/downloads/
mysql workbench community edition will do job

ok now open workbench, there near MySQL Connection is + click and
then you will have new windows (Setup new connection)

connection mode choose Standard TCP/IP over ssh

type you ssh login and mysql (new user we created credential)

mysql host type localhost

mysql port 7999

newusername


go to Test connection


if everything pass press ok to save that after that go to MySql Connections from the beginning and double click to enter in server and mysql, so make new connetion

now you can read help documentations how to enter in xtream_iptvpro shemas tables and rest...

if i have more time maybe i will continue and edit this post later


hope this will help to someone :)

likes ? :D
 
shape1
shape2
shape3
shape4
shape5
shape6
Top
AdBlock Detected

We know, ad-blocking software do a great job at blocking ads. But our site is sponsored by advertising. 

For the best possible site experience please take a moment to disable your AdBlocker.
You can create a Account with us or if you already have account, you can prefer an Account Upgrade.

I've Disabled AdBlock