Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people's questions, and connect with other people.

Have an account? Sign In
Continue with Facebook
Continue with Google
Continue with Twitter
or use

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people's questions & connect with other people.

Sign Up Here
Continue with Facebook
Continue with Google
Continue with Twitter
or use

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask question.

Continue with Facebook
Continue with Google
Continue with Twitter
or use

Forgot Password?

Need An Account, Sign Up Here

You must login to add post.

Continue with Facebook
Continue with Google
Continue with Twitter
or use

Forgot Password?

Need An Account, Sign Up Here
Sign InSign Up

Ask Online

Ask Online Logo Ask Online Logo

Ask Online Navigation

  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add Post
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • Home
  • About Us
  • Blog
  • Contact Us
Home/ Questions/Q 380
Next
In Process
Anonymous
  • 0
Anonymous
Asked: July 11, 20202020-07-11T11:30:47+00:00 2020-07-11T11:30:47+00:00In: Programmers

I need database file for BubbleTok v1.0

  • 0

Can we get the db file as there is no database file in folder bubbletok_admin

bubbletok
  • 5 5 Answers
  • 1k Views
  • 0 Followers
  • 0
  • Share
    Share
    • Share on Facebook
    • Share on Twitter
    • Share on LinkedIn
    • Share on WhatsApp

5 Answers

  • Voted
  • Oldest
  • Recent
  • Random
  1. Anonymous
    2020-08-06T04:44:20+00:00Added an answer on August 6, 2020 at 4:44 am

    — phpMyAdmin SQL Dump
    — version 4.9.5
    — https://www.phpmyadmin.net/
    —
    — Host: localhost:3306
    — Generation Time: Jul 19, 2020 at 05:04 AM
    — Server version: 10.3.23-MariaDB
    — PHP Version: 7.3.6

    SET SQL_MODE = “NO_AUTO_VALUE_ON_ZERO”;
    SET AUTOCOMMIT = 0;
    START TRANSACTION;
    SET time_zone = “+00:00”;

    /*!40101 SET @[email protected]@CHARACTER_SET_CLIENT */;
    /*!40101 SET @[email protected]@CHARACTER_SET_RESULTS */;
    /*!40101 SET @[email protected]@COLLATION_CONNECTION */;
    /*!40101 SET NAMES utf8mb4 */;

    —
    — Database: `entertain_main`
    —

    — ——————————————————–

    —
    — Table structure for table `tbl_admin`
    —

    CREATE TABLE `tbl_admin` (
    `admin_id` int(11) NOT NULL,
    `admin_name` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
    `admin_email` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
    `admin_password` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL,
    `admin_profile` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
    `is_twofa` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
    `twofa_secret` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
    `role` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

    —
    — Dumping data for table `tbl_admin`
    —

    INSERT INTO `tbl_admin` (`admin_id`, `admin_name`, `admin_email`, `admin_password`, `admin_profile`, `is_twofa`, `twofa_secret`, `role`) VALUES
    (1, ‘admin’, ‘[email protected]’, ‘123456’, ‘default.png’, NULL, ‘JUBUAPD5VIX5CXIB’, NULL);

    — ——————————————————–

    —
    — Table structure for table `users`
    —

    CREATE TABLE `users` (
    `user_id` bigint(20) UNSIGNED NOT NULL,
    `full_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
    `user_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
    `user_email` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
    `user_mobile_no` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
    `login_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
    `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
    `fb_url` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
    `insta_url` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
    `youtube_url` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
    `is_verify` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
    `created_date` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
    `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
    COMMIT;

    /*!40101 SET [email protected]_CHARACTER_SET_CLIENT */;
    /*!40101 SET [email protected]_CHARACTER_SET_RESULTS */;
    /*!40101 SET [email protected]_COLLATION_CONNECTION */;

    • 3
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  2. Anonymous
    2020-07-11T11:32:24+00:00Added an answer on July 11, 2020 at 11:32 am

    CREATE TABLE `tbl_admin` (
    `aid` int(9) NOT NULL,
    `admin_id` int(9) NOT NULL,
    `is_admin_login` varchar(200) NOT NULL,
    `admin_name` varchar(200) NOT NULL,
    `admin_email` varchar(200) NOT NULL,
    `admin_password` varchar(200) NOT NULL,
    `admin_profile` varchar(200) NOT NULL,
    `is_twofa` varchar(1) NOT NULL,
    `is_login_verify` varchar(1) NOT NULL
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;

    —
    — Dumping data for table `tbl_admin`
    —

    INSERT INTO `tbl_admin` (`aid`, `admin_id`, `is_admin_login`, `admin_name`, `admin_email`, `admin_password`, `admin_profile`, `is_twofa`, `is_login_verify`) VALUES
    (1, 1, ‘1’, ‘mafia’, ‘[email protected]’, ‘mafia123’, ‘mafia’, ‘0’, ‘1’);

     

    Username: mafia
    Pwd: mafia123

    http://yourdomain.com/admin

     

    • 1
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
    • Johny

      Johny

      • Indore, India
      • 3 Questions
      • 8 Answers
      • 3 Best Answers
      • 57 Points
      View Profile
      Johny Enlightened
      2020-07-11T11:37:22+00:00Replied to answer on July 11, 2020 at 11:37 am

      thanks..it worked 🙂

      • 1
      • Reply
      • Share
        Share
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
        • Share on WhatsApp
    • Learn With BWC71

      Learn With BWC71

      • 1 Question
      • 1 Answer
      • 0 Best Answers
      • 13 Points
      View Profile
      Learn With BWC71 Royal
      2021-07-01T12:45:01+00:00Replied to answer on July 1, 2021 at 12:45 pm

      how to add it?

      • 0
      • Reply
      • Share
        Share
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
        • Share on WhatsApp
  3. Anonymous
    2020-07-11T11:40:40+00:00Added an answer on July 11, 2020 at 11:40 am

    — phpMyAdmin SQL Dump
    — version 4.9.5
    — https://www.phpmyadmin.net/
    —
    — Host: localhost:3306
    — Generation Time: Jul 11, 2020 at 04:58 PM
    — Server version: 5.7.30
    — PHP Version: 7.3.6

    SET SQL_MODE = “NO_AUTO_VALUE_ON_ZERO”;
    SET AUTOCOMMIT = 0;
    START TRANSACTION;
    SET time_zone = “+00:00”;

    /*!40101 SET @[email protected]@CHARACTER_SET_CLIENT */;
    /*!40101 SET @[email protected]@CHARACTER_SET_RESULTS */;
    /*!40101 SET @[email protected]@COLLATION_CONNECTION */;
    /*!40101 SET NAMES utf8mb4 */;

    —
    — Database: `pbxonec1_tuktuk`
    —

    — ——————————————————–

    —
    — Table structure for table `tbl_admin`
    —

    CREATE TABLE `tbl_admin` (
    `aid` int(9) NOT NULL,
    `admin_id` int(9) NOT NULL,
    `is_admin_login` varchar(200) NOT NULL,
    `admin_name` varchar(200) NOT NULL,
    `admin_email` varchar(200) NOT NULL,
    `admin_password` varchar(200) NOT NULL,
    `admin_profile` varchar(200) NOT NULL,
    `is_twofa` varchar(1) NOT NULL,
    `is_login_verify` varchar(1) NOT NULL
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;

    —
    — Dumping data for table `tbl_admin`
    —

    INSERT INTO `tbl_admin` (`aid`, `admin_id`, `is_admin_login`, `admin_name`, `admin_email`, `admin_password`, `admin_profile`, `is_twofa`, `is_login_verify`) VALUES
    (1, 1, ‘1’, ‘mafia’, ‘[email protected]’, ‘mafia123’, ‘mafia’, ‘0’, ‘1’);

    —
    — Indexes for dumped tables
    —

    —
    — Indexes for table `tbl_admin`
    —
    ALTER TABLE `tbl_admin`
    ADD PRIMARY KEY (`aid`);

    —
    — AUTO_INCREMENT for dumped tables
    —

    —
    — AUTO_INCREMENT for table `tbl_admin`
    —
    ALTER TABLE `tbl_admin`
    MODIFY `aid` int(9) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
    COMMIT;

    /*!40101 SET [email protected]_CHARACTER_SET_CLIENT */;
    /*!40101 SET [email protected]_CHARACTER_SET_RESULTS */;
    /*!40101 SET [email protected]_COLLATION_CONNECTION */;

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp

Leave an answer
Cancel reply

You must login to add an answer.

Continue with Facebook
Continue with Google
Continue with Twitter
or use

Forgot Password?

Continue with Facebook
Continue with Google
Continue with Twitter

Sidebar

Ask A Question

Top Members

Johny

Johny

  • 3 Questions
  • 8 Answers
Enlightened
Sunny Khetarpal

Sunny Khetarpal

  • 2 Questions
  • 0 Answers
Pro Active
  • Random
  • Answers
  • Tags
  • PG

    How to install SRTP package in Asterisk - Centos 6

    • 1 Answer
  • Anonymous

    Marriage compatibility

    • 1 Answer
  • Johny

    My parents are using astrology to find my future spouse

    • 1 Answer
  • Anonymous

    I need database file for BubbleTok v1.0

    • 5 Answers
  • Anonymous

    dizzy – Support Creators Content Script (Nulled) [Latest Version]

    • 1 Answer
  • Anonymous added an answer You can get it here for free--> https://www77.zippyshare.com/v/HJnlsWaa/file.html Or if… September 9, 2021 at 12:32 pm
  • Learn With BWC71
    Learn With BWC71 added an answer how to add it? July 1, 2021 at 12:45 pm
  • Anonymous added an answer dizzy – Support Creators Content Script is a platform where content… April 16, 2021 at 7:49 pm
  • admin
    admin added an answer Sorry we have stopped free service but dont worry our… April 16, 2021 at 7:47 pm
  • Š Å M Y Á  K ツ
    Š Å M Y Á  K ツ added an answer Yes bro I have Sql file message me on facebook… April 9, 2021 at 4:50 pm
#covid19indiahelp actor age amazon amazon-quiz animated-movie asterisk astral sky astro astrologer astrology award banned bubbletok camera cant call softphone centos chinese-apps clone codeigniter covid covid19 covidhelp cracked dating website developer devops dizzy donateplasma doubt engagements & weddings facts and trivia forecast future girl hollywood husband india indiafightscovid iq jquery knowledge leading-role marriage mind-blowing facts mysql mysql repair need nulled opensource oscar oscar-2020 parents partner pbx personal astrological report php pjsip plenty of fish pof poll programmer question quiz-time relationship self-awareness sms sockets detached softphone sql srtp survey question tiktok trunk vicidial webrtc wife

Recent Posts

  • CK6440-400 Air Jordan 1 KO “Sashiko” Release Information May 10, 2022
  • 2022 Latest Nike Dunk Low Scrap “Mismatch” DN5381-001 March 16, 2022
  • Official Images of the Nike Air Max 95 “Topographic” Release March 13, 2022
  • Nike Air Trainer SC “Auburn” Release Information March 9, 2022
  • 323419-130 Jordan 6 Rings “Altitude Green” Coming Soon February 2, 2022
  • Meet The Team
  • Blog
  • About Us
  • Contact Us
  • Privacy Policy

© 2020 AskOnline. All Rights Reserved
With Love by AskOnline.

Explore

  • Home
  • Add Post
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.