Discuss Scratch
- Discussion Forums
- » Requests
- » >> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.
- AmpElectrecuted
-
Scratcher
1000+ posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.
How do you do datinspect element
King snipe alert! Next post is kingok
- GvYoutube
-
Scratcher
1000+ posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.
If you want to help with development of imagif bot hosting then check the github here:No support, I don't think the fourms have supports for bots.
https://github.com/ScratchAttachScripters/ImagifBottedHosting
- jmdzti_0-0
-
Scratcher
1000+ posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.
wdym???If you want to help with development of imagif bot hosting then check the github here:No support, I don't think the fourms have supports for bots.
https://github.com/ScratchAttachScripters/ImagifBottedHosting
- kRxZy_kRxZy
-
Scratcher
1000+ posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.
Tooooo late, I use js to do itIf you want to help with development of imagif bot hosting then check the github here:No support, I don't think the fourms have supports for bots.
https://github.com/ScratchAttachScripters/ImagifBottedHosting
- GvYoutube
-
Scratcher
1000+ posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.
Again I said I didn't know if the forms have support for Botswdym???If you want to help with development of imagif bot hosting then check the github here:No support, I don't think the fourms have supports for bots.
https://github.com/ScratchAttachScripters/ImagifBottedHosting
- kRxZy_kRxZy
-
Scratcher
1000+ posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.
They have support if you can try override the CORS restriction which I seem to have doneAgain I said I didn't know if the forms have support for Botswdym???If you want to help with development of imagif bot hosting then check the github here:No support, I don't think the fourms have supports for bots.
https://github.com/ScratchAttachScripters/ImagifBottedHosting
- GvYoutube
-
Scratcher
1000+ posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.
what in the Scratcher is a cors restrictuon?They have support if you can try override the CORS restriction which I seem to have doneAgain I said I didn't know if the forms have support for Botswdym???If you want to help with development of imagif bot hosting then check the github here:No support, I don't think the fourms have supports for bots.
https://github.com/ScratchAttachScripters/ImagifBottedHosting
- kRxZy_kRxZy
-
Scratcher
1000+ posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.
What is a CORS restriction?what in the Scratcher is a cors restrictuon?They have support if you can try override the CORS restriction which I seem to have doneAgain I said I didn't know if the forms have support for Botswdym???If you want to help with development of imagif bot hosting then check the github here:No support, I don't think the fourms have supports for bots.
https://github.com/ScratchAttachScripters/ImagifBottedHosting
is a security feature implemented by web browsers that controls how resources on a web server can be accessed by a web page from a different origin (domain, protocol, or port).
When a web page makes a request (such as an AJAX request) to a server that is hosted on a different domain, the browser checks if the server allows such cross-origin requests. If the server doesn’t explicitly allow the request from the source domain, the browser will block the request, and you'll see a CORS restriction error in the browser's developer tools console.
Why does CORS exist?
CORS is a security mechanism to protect users from cross-site request forgery (CSRF) and other types of attacks that could potentially expose sensitive information.
Example of a CORS error:
Suppose you are trying to make an AJAX request from your website (hosted on https://mywebsite.com) to a different server, say https://otherserver.com, and that server hasn't allowed cross-origin requests from mywebsite.com. If the server doesn’t explicitly permit the request, you will encounter a CORS error.
In the browser’s console, you might see an error message like:
Access to XMLHttpRequest at 'https://otherserver.com/api/data' from origin 'https://mywebsite.com' has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource.
How CORS works
When a web page from one origin (e.g., https://mywebsite.com) makes a request to another origin (e.g., https://otherserver.com), the server at otherserver.com must include a specific CORS header in its response to tell the browser that it's allowed to share resources with the requesting origin.
For example, the response might include this header:
Access-Control-Allow-Origin: https://mywebsite.com
This means the server allows requests from https://mywebsite.com to access its resources.
If the server doesn’t include the correct CORS headers, the browser will block the request, preventing your website from accessing the resource.
Common CORS Headers
1. Access-Control-Allow-Origin: Specifies which origin (or domains) can access the resource. It could be a specific domain or * to allow any domain.
Example:
Access-Control-Allow-Origin: https://mywebsite.com
2. Access-Control-Allow-Methods: Specifies the HTTP methods (GET, POST, PUT, DELETE, etc.) that the server allows for cross-origin requests.
Example:
Access-Control-Allow-Methods: GET, POST, PUT
3. Access-Control-Allow-Headers: Specifies which headers can be used during the actual request.
Example:
Access-Control-Allow-Headers: Content-Type, Authorization
4. Access-Control-Allow-Credentials: Indicates whether the browser should send cookies and HTTP authentication information with the request.
Example:
Access-Control-Allow-Credentials: true
Fixing CORS issues
If you own or control the server, you can adjust your server's response headers to allow cross-origin requests. For example, in Node.js, you can use the cors package to enable CORS for your Express app.
Here's an example of how to enable CORS for all origins in a Node.js server:
const express = require('express');
const cors = require('cors');
const app = express();
// Enable CORS for all domains
app.use(cors());
// Your routes go here
app.get('/', (req, res) => {
res.send('Hello, world!');
});
app.listen(3000, () => console.log('Server is running on port 3000'));This will allow requests from any origin. If you want to restrict it to specific domains, you can pass an object to cors() like this:
app.use(cors({
origin: 'https://mywebsite.com'
}));Conclusion
CORS is a browser security feature that blocks requests from a different domain unless the server explicitly allows them. The server includes special headers in the response to define which origins, methods, and headers are allowed in cross-origin requests.
If you're encountering CORS errors, you either need to adjust the server's CORS settings or use a proxy server to bypass the restriction.
- snoopythe3
-
Scratcher
500+ posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.
snipat least get chat gpt to shorten that lol
- kRxZy_kRxZy
-
Scratcher
1000+ posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.
nah,snipat least get chat gpt to shorten that lol
- StarWalker600
-
Scratcher
100+ posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.
ur average chatgpt response. The start is modified to sound like humanWhat is a CORS restriction?what in the Scratcher is a cors restrictuon?They have support if you can try override the CORS restriction which I seem to have doneAgain I said I didn't know if the forms have support for Botswdym???If you want to help with development of imagif bot hosting then check the github here:No support, I don't think the fourms have supports for bots.
https://github.com/ScratchAttachScripters/ImagifBottedHosting
is a security feature implemented by web browsers that controls how resources on a web server can be accessed by a web page from a different origin (domain, protocol, or port).
When a web page makes a request (such as an AJAX request) to a server that is hosted on a different domain, the browser checks if the server allows such cross-origin requests. If the server doesn’t explicitly allow the request from the source domain, the browser will block the request, and you'll see a CORS restriction error in the browser's developer tools console.
Why does CORS exist?
CORS is a security mechanism to protect users from cross-site request forgery (CSRF) and other types of attacks that could potentially expose sensitive information.
Example of a CORS error:
Suppose you are trying to make an AJAX request from your website (hosted on https://mywebsite.com) to a different server, say https://otherserver.com, and that server hasn't allowed cross-origin requests from mywebsite.com. If the server doesn’t explicitly permit the request, you will encounter a CORS error.
In the browser’s console, you might see an error message like:Access to XMLHttpRequest at 'https://otherserver.com/api/data' from origin 'https://mywebsite.com' has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource.
How CORS works
When a web page from one origin (e.g., https://mywebsite.com) makes a request to another origin (e.g., https://otherserver.com), the server at otherserver.com must include a specific CORS header in its response to tell the browser that it's allowed to share resources with the requesting origin.
For example, the response might include this header:Access-Control-Allow-Origin: https://mywebsite.com
This means the server allows requests from https://mywebsite.com to access its resources.
If the server doesn’t include the correct CORS headers, the browser will block the request, preventing your website from accessing the resource.
Common CORS Headers
1. Access-Control-Allow-Origin: Specifies which origin (or domains) can access the resource. It could be a specific domain or * to allow any domain.
Example:Access-Control-Allow-Origin: https://mywebsite.com
2. Access-Control-Allow-Methods: Specifies the HTTP methods (GET, POST, PUT, DELETE, etc.) that the server allows for cross-origin requests.
Example:Access-Control-Allow-Methods: GET, POST, PUT
3. Access-Control-Allow-Headers: Specifies which headers can be used during the actual request.
Example:Access-Control-Allow-Headers: Content-Type, Authorization
4. Access-Control-Allow-Credentials: Indicates whether the browser should send cookies and HTTP authentication information with the request.
Example:Access-Control-Allow-Credentials: true
Fixing CORS issues
If you own or control the server, you can adjust your server's response headers to allow cross-origin requests. For example, in Node.js, you can use the cors package to enable CORS for your Express app.
Here's an example of how to enable CORS for all origins in a Node.js server:const express = require('express');
const cors = require('cors');
const app = express();
// Enable CORS for all domains
app.use(cors());
// Your routes go here
app.get('/', (req, res) => {
res.send('Hello, world!');
});
app.listen(3000, () => console.log('Server is running on port 3000'));
This will allow requests from any origin. If you want to restrict it to specific domains, you can pass an object to cors() like this:app.use(cors({
origin: 'https://mywebsite.com'
}));
Conclusion
CORS is a browser security feature that blocks requests from a different domain unless the server explicitly allows them. The server includes special headers in the response to define which origins, methods, and headers are allowed in cross-origin requests.
If you're encountering CORS errors, you either need to adjust the server's CORS settings or use a proxy server to bypass the restriction.
- jmdzti_0-0
-
Scratcher
1000+ posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.
we don’t know, still useful.ur average chatgpt response. The start is modified to sound like human-snip-what in the Scratcher is a cors restrictuon?They have support if you can try override the CORS restriction which I seem to have doneAgain I said I didn't know if the forms have support for Botswdym???If you want to help with development of imagif bot hosting then check the github here:No support, I don't think the fourms have supports for bots.
https://github.com/ScratchAttachScripters/ImagifBottedHosting
- StarWalker600
-
Scratcher
100+ posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.
(long unnecessary quote removed by moderator - please don't spam)ik
we don’t know, still useful.
Last edited by cosmosaura (March 1, 2025 18:19:29)
- kRxZy_kRxZy
-
Scratcher
1000+ posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.
It was chatgpt, heh I couldn't be bothered to explain it, and also I didn't modify the startwe don’t know, still useful.ur average chatgpt response. The start is modified to sound like human-snip-what in the Scratcher is a cors restrictuon?They have support if you can try override the CORS restriction which I seem to have doneAgain I said I didn't know if the forms have support for Botswdym???If you want to help with development of imagif bot hosting then check the github here:No support, I don't think the fourms have supports for bots.
https://github.com/ScratchAttachScripters/ImagifBottedHosting
- Tunibal_Scratcher
-
Scratcher
1000+ posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.

- AmpElectrecuted
-
Scratcher
1000+ posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.

STAFF ACTIVITY CHECK
Please reply to the monthly staff activity check in our official studio.
Staff activity checks will be performed on the 3rd day of each month, and end on the 6th day of each month.
Staff members will be striked if they fail to reply to an activity check before it ends.
(To get notified whenever there is an activity check, follow this discussion to get a message whenever a new post is posted here.)
- SilvaMelinora
-
Scratcher
56 posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.
Is this still going? If so can you do. I know its a lot…
file
//home/chronos/u-679861d8c936ca4d7a985020cbca4465c5933363/MyFiles/Downloads/Banners%20(4).png
file
//home/chronos/u-679861d8c936ca4d7a985020cbca4465c5933363/MyFiles/Downloads/Banners%20(3).png
file
//home/chronos/u-679861d8c936ca4d7a985020cbca4465c5933363/MyFiles/Downloads/Hogwarts.io/Banners%20(1).jpg
file
//home/chronos/u-679861d8c936ca4d7a985020cbca4465c5933363/MyFiles/Camera/IMG_20250225_084631.jpg
I'm not sure if it'll even work….
file
//home/chronos/u-679861d8c936ca4d7a985020cbca4465c5933363/MyFiles/Downloads/Banners%20(4).pngfile
//home/chronos/u-679861d8c936ca4d7a985020cbca4465c5933363/MyFiles/Downloads/Banners%20(3).pngfile
//home/chronos/u-679861d8c936ca4d7a985020cbca4465c5933363/MyFiles/Downloads/Hogwarts.io/Banners%20(1).jpgfile
//home/chronos/u-679861d8c936ca4d7a985020cbca4465c5933363/MyFiles/Camera/IMG_20250225_084631.jpgI'm not sure if it'll even work….
Last edited by SilvaMelinora (March 4, 2025 15:28:29)
- Tunibal_Scratcher
-
Scratcher
1000+ posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.
Is this still going? If so can you do. I know its a lot…This is form your computer. Please pack them in a Scratch Project and we will host it.
file//home/chronos/u-679861d8c936ca4d7a985020cbca4465c5933363/MyFiles/Downloads/Banners%20(4).png
file//home/chronos/u-679861d8c936ca4d7a985020cbca4465c5933363/MyFiles/Downloads/Banners%20(3).png
file//home/chronos/u-679861d8c936ca4d7a985020cbca4465c5933363/MyFiles/Downloads/Hogwarts.io/Banners%20(1).jpg
file//home/chronos/u-679861d8c936ca4d7a985020cbca4465c5933363/MyFiles/Camera/IMG_20250225_084631.jpg
I'm not sure if it'll even work….
- GvYoutube
-
Scratcher
1000+ posts
>> Imagif Hosters << Free forum image hosting! >> Get your images up on your forum posts! << Image hosting, resizing and vectorizing.
Is this still going? If so can you do. I know its a lot…claimed once in a prject
file//home/chronos/u-679861d8c936ca4d7a985020cbca4465c5933363/MyFiles/Downloads/Banners%20(4).png
file//home/chronos/u-679861d8c936ca4d7a985020cbca4465c5933363/MyFiles/Downloads/Banners%20(3).png
file//home/chronos/u-679861d8c936ca4d7a985020cbca4465c5933363/MyFiles/Downloads/Hogwarts.io/Banners%20(1).jpg
file//home/chronos/u-679861d8c936ca4d7a985020cbca4465c5933363/MyFiles/Camera/IMG_20250225_084631.jpg
I'm not sure if it'll even work….







