[Solved] How to know what bots of a website, if I have no root access to the hosting they will read?

[ad_1] You can see and identify all traffic to your website in the access logs generated by apache, nginx, iss, … Furthermore there are already a lot of tools out there which are able to parse and reflect the data in a human reabable format. e.g. awstats [ad_2] solved How to know what bots of … Read more

[Solved] Display all Guild Names of a Bot in discord.js

[ad_1] guilds.json { Placeholder: null } The above is the file with the guild IDs const fs = require(‘fs’); const Discord = require(‘discord.js’); const client = new Discord.Client(); client.on(‘ready’, () => { let guilds = client.guilds.cache const json = {} guilds.forEach(g => { json[g.name] = g.id }); fs.writeFileSync(‘./guilds.json’, JSON.stringify(json)) }); client.on(‘guildCreate’, guild => { const … Read more

[Solved] Check if people in a voice channel have turned on video (discord.py) [closed]

[ad_1] Try looking at this https://discordpy.readthedocs.io/en/latest/api.html?highlight=voicestate#discord.VoiceState.self_mute This is documentation for Voice State. It will tell you whether they are muted(by them not server) or not. I’m guessing video is fairly similar. [ad_2] solved Check if people in a voice channel have turned on video (discord.py) [closed]

[Solved] The BlackHole Bot Trap

[ad_1] Since your first line is as follows: $fp = fopen($filename, ‘r’) or die(‘<p>Error opening file.</p>’); We can pretty quickly deduce that the fopen() call is failing. Verify that you’re providing the function with a correct file path — nothing after it matters if the file doesn’t open! [ad_2] solved The BlackHole Bot Trap