When someone searches my site, a page does not appear Not Found
but a page error 404
OldWizard209for that, you will need a server, and get the response code, and use it to send a html file containing a 404 error html page, when the status code is 404.2 years ago
How do I restart the project on repl Every period of time
pls i need the
HTML, CSS, JS
VulcanWMAlso what will turning it on and off do? Because if you want it to do a certain function every hour or something you can use this code in Python:
from apscheduler.schedulers.blocking import BlockingScheduler
def some_job():
#do whatever you want it to do every hour
scheduler = BlockingScheduler()
scheduler.addjob(somejob, 'interval', hours=1)
scheduler.start()2 years ago
LukeWrightyou could go to uptime robot and create a html monitor2 years ago
I have a project on, repl, in bach language, I want to finger a bot discord.js Within the project
OldWizard209You can have as many language files in on repl, you just have to add the proper extension:
image
You can configure what to run by creating a .replit file.2 years ago
Wumi4Just add your Discord bot files or any files you want in your Bash repl. Then learn how to use the shell, and you will be completely fine.2 years ago