Restry
June 7, 2018, 7:18am
#1
first i have write done my code in glitch .
how to make a link let fcc know my code and check it ?
i see the share code in glitch edit page . but parse to fcc solution input box still not work.
with in chrome devTool i have see the 404 not found in network request .
thanks for help
1 Like
sorinr
June 7, 2018, 7:24am
#2
Can you share the codepen link?
Restry
June 7, 2018, 7:30am
#3
i have write code in glitch.com not codepen
here’s screen
i use github share the code still not found : https://raw.githubusercontent.com/Restry/glitch/glitch/package.json
sorinr
June 7, 2018, 8:00am
#5
You may try with: https://glitch.com/edit/#!/stump-mailbox?path=package.json
Restry
June 7, 2018, 9:05am
#7
thanks sorinr
i have resolve this issue
the key its server.js
fcc fetch code with _api/filename when check solution . so the glitch project must have cros settings
/******************************************************
* PLEASE DO NOT EDIT THIS FILE
* the verification process may break
* ***************************************************/
'use strict';
var fs = require('fs');
var express = require('express');
var app = express();
if (!process.env.DISABLE_XORIGIN) {
app.use(function(req, res, next) {
var allowedOrigins = ['https://narrow-plane.gomix.me', 'https://www.freecodecamp.com'];
var origin = req.headers.origin || '*';
if(!process.env.XORIG_RESTRICT || allowedOrigins.indexOf(origin) > -1){
console.log(origin);
res.setHeader('Access-Control-Allow-Origin', origin);
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
}
next();
});
}
app.use('/public', express.static(process.cwd() + '/public'));
app.route('/_api/package.json')
.get(function(req, res, next) {
console.log('requested');
fs.readFile(__dirname + '/package.json', function(err, data) {
if(err) return next(err);
res.type('txt').send(data.toString());
});
});
app.route('/')
.get(function(req, res) {
res.sendFile(process.cwd() + '/views/index.html');
})
// Respond not found to all the wrong routes
app.use(function(req, res, next){
res.status(404);
res.type('txt').send('Not found');
});
// Error Middleware
app.use(function(err, req, res, next) {
if(err) {
res.status(err.status || 500)
.type('txt')
.send(err.message || 'SERVER ERROR');
}
})
app.listen(process.env.PORT, function () {
console.log('Node.js listening ...');
});
8 Likes
tjctw
June 24, 2018, 8:41am
#9
Having the same issue with both glitch and github, thank your for the solution
can u post an example link for github please? i still don’t get it
Restry
July 11, 2018, 1:36am
#12
you can find the code from here : https://glitch.com/~flicker-ostrich
this’s my glitch site
1 Like
Restry
August 1, 2018, 3:40am
#13
this’s github sample code
ginopc
August 21, 2018, 10:23am
#14
Just put link of your app (you can get from share button on upper left side of Glitch page) to challenge “solution” field.
Anumer
February 9, 2019, 5:25pm
#15
Hello. Thank you, i tried that but i get a timeout erro
JohnPA
February 9, 2019, 5:38pm
#16
Try copying server.js from github into a server.js in glitch
Anumer
February 9, 2019, 5:43pm
#17
I still can’t get this to work either. FCC, can you please help with what is going on with glitch?
Sorry, I fixed the issue. For those that can’t get it working:
Clone the fcc github from the link provided.
Create a new project on Glitch and select the option to clone from repository.
Then copy the link to the fcc GitHub.
Next Drag and drop the files from your cloned copy into glitch.(you can’t drag folders, so open the views folder on your cloned copy and drag and drop the index.html file.)
Next go to server.js file on glitch that you added earlier and change the file path of index.html by removing the views directory.
It should be:
‘/index.html’
1 Like
Sorry, I still can’t get this to work… There must be something broken:
I tried this with my new glitch repo at:
This is what I get all the time…
Drives me crazy, since I have no idea what I might be doing wrong.
Also: it took me a while to figure out, what exactly to put in the submission field… A simple explanation with example would help…
Thank you!