Jump to content
[MUST READ] Forum Rules ×

MeTooIDK

Senior Members
  • Posts

    309
  • Joined

  • Last visited

Everything posted by MeTooIDK

  1. tutorial how to install monsta ftp:
  2. Install Monsta FTP on your webserver. but if you host Monsta FTP on your free hosting account. i think you will got suspended because i think Monsta FTP will use lot of CPU,RAM
  3. Can you enable public chat feature back? i miss public chat feature
  4. Use Bootstrap 5 or Vue3 + Vuetify/Naive UI/Element UI Plus/Anything else would be better
  5. Sure! Theres 3 way use js everytime user go into panel use js XHR --> Your API Check User has SSL not Installed if not installed XHR --> ADD CSR,KEY,CERT( Dev Tools Network tab can track request data) no need worry about CSRF Problem. Same domain so CSRF problem could be solved puppeteer (EASY,HIGH RAM CPU USAGE) : Headless Chromium Browser. You can use JS to control browser to do something like Login,Because VP doesnt has captcha. http request (HARD): this is example login using axios,qs. this is part of code of my old project. It was for a 3rd Party VistaPanel - SukaPanel. Archived,that repo is the api https://github.com/ImLoadingUuU/MSA var data = qs.stringify({ 'uname': req.body.uname || "", 'passwd': req.body.passwd || "", 'theme': 'PaperLantern', 'seeesurf': req.body.seeesurf || '555930360198781056', 'login': '' }); var config = { method: 'post', url: 'https://cpanel.epizy.com/login.php', headers: { 'User-Agent': useragent, 'Content-Type': 'application/x-www-form-urlencoded' }, data : data }; axios(config) .then(function (response) { let docu = cheerio.load(response.data) if (docu("#forms script").html()) { console.log(response.headers["set-cookie"]) res.setHeader("cookie",response.headers["set-cookie"]) res.send({ message: "Success", successful: true, authID: docu("#forms script").text().replace(`document.location.href = '`).slice(0,-1).replace("undefined","").replace("panel/indexpl.php?id=",""), cookie: response.headers["set-cookie"][1].split(";")[0].split("=")[1], }) } else { res.send({ successful: false, message: docu("#login-sub #forms").text(), cookie: response.headers["set-cookie"][0].split(";")[0].split("=")[1], }) } }) .catch(function (error) { console.log(error); });
  6. Automatically fetch themes from VistaPanel-Themes https://vista-hub.vercel.app
  7. Im trying login to vP Softaculous using Softaculous APi. theres a weird problem. Before open Softaculous From VP API Response always invaild_login When i open it API Response Account Info..
  8. i think the font is Rezland Logotype,Can you make Powered by font to Rezland Logotype,?
  9. Ummm,its possible? Connect That Info FTP if failed.return a error?and currently im working on Setup Wizard. but i think it will use Alot Resource
  10. 🤔maybe it need wait vP fully loaded?because im running it on Browser Console..is theres a way to detect that?
  11. This is a VistaPanel Add-on. It serves as a replacement to the original Site Builder - this is using the Site.Pro Site Builder. You just need fill out the form to use it - very easy. You don't need an API key or anything else because my API powers this. It has been tested on my local PC before, and it worked fine. I am not sure about the "Render" option, though. However, the Node Express Host will work. GitHub Repo: https://github.com/ImLoadingUuU/VistaPanel-SB/ Implementation code: Installation: You may introduce it into your control panel by adding it as an advertisement banner. (e.g., in the footer section) The main page should look like this: Error pages look like this:
  12. he is your brother?🤔🤔🤔🤔🤔🤔
  13. 🧐it seems like no way to prevent ddos on free hosting
  14. hmmm what if i add CF And Byet at same domain NS: ns1.byet.org xxxx.xxxx.cloudflare.blablabla
×
×
  • Create New...