The 10,000 Post Thread!

Status
Not open for further replies.
Wow, it IS really bad, but the slow loading time can't be just because the thread is huge... It seems to happen on any page with 40 posts on it.

*dives into phpBB2 code*
 
Code:
void libera_lista(PCB *lista)
{
	PCB *nodo;
	INFO_TMP *tmpnodo;
	while(lista->sig!=NULL)
	{
		nodo=sacar_de_lista(lista);

		tmpnodo=nodo->tmp.sig;
		while(tmpnodo!=NULL)
		{
			nodo->tmp.sig=tmpnodo->sig;
			free(tmpnodo);
			tmpnodo=nodo->tmp.sig;
		}

		fclose(nodo->forigen);
		free(nodo);
	}
}
 
The code looks as clean as can possibly be. I can't understand how it's taking 13 seconds to generate the previous page.

Unless it's just counting how long it takes to send the page, because that's a different story entirely
 
no, it isn't the time it takes to send the page. look at the code ;)

(i have loaded pages in 15 seconds and it took 2 to generate)

have you ever checked the color scheme of code in subsilver layout?, it rules (looks a lot like vi)
 
2963 [10.27% of total / 37.99 posts per day]

weeeeeeeeeeeee

i finally made it to the 10% :D
 
The lag should be fixed now! Post away, dudes and dudettes and Justin! :headbang:

http://www.phpbb.com/phpBB/viewtopic.php?p=166312#166312
 
yeah, the loading is better now, let's just wait it keeps up like this in the day.
 
btw i just drank 250ml of rum.....

kinda drunkie right now......

nah.....not really, i have lots of tolerance to alcohol :D
 
Status
Not open for further replies.
Back
Top