Originally posted by gigo
If you use the standard HTML form the data sent to your e-mail (If you are the Webmaster) is hard to decypher easily it gets wierd characters between the choices.
The form can contain Radio Buttons or User Text bits like this reply box.
You can do it with ASP but Free Hosts rarely support it and my Free Host I think supports PHP....so can it have forms that sends data back to the web master without having to decypher what has been put in the forms...
Do you get what I mean cause I have kinda confused myself.
Originally posted by gt2_gs
Jordan set VB to write out to html tables instead of making a larger load on MySQL by having it read from the database every time.
Originally posted by jubula
Does that make a difference? Like making the load time shorter for each page?
Originally posted by gigo
Oh well I'll see if I can figure something out off somebody elses site later! lol.
And if this forum uses php how comes this page is an .html page?
Originally posted by Jordan
That's right - it is simply a .htaccess file which lets the server interpret showthread.php's variable in a different way. Why would I want to do that? Many search engines do not crawl dynamic pages with ?, &, and = in the URL, and if they do, they rank it lower than a static page in search results (like Google). By removing those dynamic characters and giving each thread a .html extension, I can effectively trick Google and other spiders into thinking each page is a static page, and I know it will crawl as many threads as possible and give them the highest possible ranking. And, obviously, thousands and thousands of threads full of valuable, keyword-rich content will ensure that GTP shows up in a lot more results, therefore bringing in a lot more people.
Originally posted by Jordan
That's right - it is simply a .htaccess file which lets the server interpret showthread.php's variable in a different way. Why would I want to do that? Many search engines do not crawl dynamic pages with ?, &, and = in the URL, and if they do, they rank it lower than a static page in search results (like Google). By removing those dynamic characters and giving each thread a .html extension, I can effectively trick Google and other spiders into thinking each page is a static page, and I know it will crawl as many threads as possible and give them the highest possible ranking. And, obviously, thousands and thousands of threads full of valuable, keyword-rich content will ensure that GTP shows up in a lot more results, therefore bringing in a lot more people.
It would appear that it would decrease server load, but judging by others who have tried this, and a bit closer inspection, you would find the opposite to be true. Re-writing all of those HTML pages every time a user updates any of their account information (avatar, location, post count, etc) or posts in a thread would offset any slight performance advantage static pages would give you. Of course, you'd also have to say goodbye to some of vBulletin's awesome dynamic features (like online status), fast and efficient searches (it would take forever for the server to search through thousands of HTML pages), and different style sets. And, I as a webmaster would no longer be able to use templates to easily organize and create pages.Originally posted by gt2_gs
Whoa, thats pretty smart there J-man.
But why dont you just make it so it writes out to an html file? It would reduce server load, and also keep giving you your results in search engines.
You know, seeing as how every time you view a thread it has to read into the mysql and pull out the data, it would make it easier on the server if it just had to read in html files.. Just an idea.