GPS shield

This is My first post and i ould use all the help i can get.
Im using GPS shield on arduino uno. This is the source for the code i used Internet of Things: GPS Location Sensing with the Arduino Mega
It is used on arduino Mega, so i replaced the Serial1 by Serial and it worked. However, after a few days the same code didnt work after multiple attemps i just started a new project and it worked.
Again it is not working, not showing results, just showing Starting. I tired everything.

#include "TinyGPS.h"

TinyGPS gps;

#define GPS_TX_DIGITAL_OUT_PIN 5
#define GPS_RX_DIGITAL_OUT_PIN 6

long startMillis;
long secondsToFirstLocation = 0;

#define DEBUG
float latitude = 0.0;

float longitude = 0.0;

void setup()
{
#ifdef DEBUG
Serial.begin(19200);
#endif

// Serial1 is GPS
Serial.begin(9600);

// prevent controller pins 5 and 6 from interfering with the comms from GPS
pinMode(GPS_TX_DIGITAL_OUT_PIN, INPUT);
pinMode(GPS_RX_DIGITAL_OUT_PIN, INPUT);

startMillis = millis();
Serial.println("Starting");

}

void loop()
{
readLocation();
}

//--------------------------------------------------------------------------------------------
void readLocation(){
bool newData = false;
unsigned long chars = 0;
unsigned short sentences, failed;

// For one second we parse GPS data and report some key values
for (unsigned long start = millis(); millis() - start < 1000;)
{
while (Serial.available())
{
int c = Serial.read();
// Serial.print((char)c); // if you uncomment this you will see the raw data from the GPS
++chars;
if (gps.encode(c)) // Did a new valid sentence come in?
newData = true;
}
}

if (newData)
{
// we have a location fix so output the lat / long and time to acquire
if(secondsToFirstLocation == 0){
secondsToFirstLocation = (millis() - startMillis) / 1000;
Serial.print("Acquired in:");
Serial.print(secondsToFirstLocation);
Serial.println("s");
}

unsigned long age;
gps.f_get_position(&latitude, &longitude, &age);

latitude == TinyGPS::GPS_INVALID_F_ANGLE ? 0.0 : latitude;
longitude == TinyGPS::GPS_INVALID_F_ANGLE ? 0.0 : longitude;

Serial.print("Location: ");
Serial.print(latitude, 6);
Serial.print(" , ");
Serial.print(longitude, 6);
Serial.println("");
}

if (chars == 0){
// if you haven't got any chars then likely a wiring issue
Serial.println("Check wiring");
}
else if(secondsToFirstLocation == 0){
// still working
}
}

(deleted)

But he used it on Mega while i use Uno, and it is serial in Uno. Plus, it worked perfectly two days ago. Now, idk what happened

(deleted)

It's ok to use Serial for the GPS, but you have to disconnect it to upload new sketches over USB.

More choices and info here.

That page is from my NeoGPS library. The examples are structures better. The example NMEAsimple.ino is close to your program.

NeoGPS is smaller, faster, more reliable and more accurate than all other GPS libraries. If you want to try it, it is available from the Arduino IDE, under the menu Sketch -> Include Library -> Manage Libraries.