Acid-Lounge.com


MXpie patch | Winmx patch help | Winpy | SEO for beginners and Website chat
It is currently 19 Nov 2008, 14:18



All times are UTC [ DST ]





Post new topic Reply to topic  [ 35 posts ]  Go to page Previous  1, 2, 3  Next
Author Message
 Post subject: Re: New look site
PostPosted: 01 Jul 2008, 04:09 
Offline
Site Admin
User avatar
 Profile

Joined: 24 Mar 2007, 00:42
Posts: 115
Location: Under V´s desk
Wonderful :cheers: :cheers:

_________________
Feed me


Top
 

 Post subject: Re: New look site
PostPosted: 03 Jul 2008, 04:42 
Offline
User avatar
 Profile

Joined: 15 Mar 2007, 23:51
Posts: 15
Location: Cambridge,Ontario
The new site looks good man good job on it :salute:


Top
 

 Post subject: Re: New look site
PostPosted: 03 Jul 2008, 06:37 
Offline
Site Admin
User avatar
 YIM  Profile

Joined: 13 Mar 2007, 11:39
Posts: 528
Location: Springfield
Glad you like it, hopefully it will soon start to busy up a little and get interesting!

_________________
Good pet names | Misty Edwards | Ferari F1


Top
 

 Post subject: Re: New look site
PostPosted: 08 Jul 2008, 15:57 
Offline
Site Admin
User avatar
 YIM  Profile

Joined: 13 Mar 2007, 11:39
Posts: 528
Location: Springfield
At Aprils request i have added an RSS feed and a favicon.

I should at this point extend thanks to Vladd for his valuable assistance with some issues during the rss mod, without his input its likely i would have burned the mod to CD and placed it in a food blender out of frustration.

:cheers:

_________________
Good pet names | Misty Edwards | Ferari F1


Top
 

 Post subject: Re: New look site
PostPosted: 09 Jul 2008, 07:12 
Offline
User avatar
 WWW  Profile

Joined: 16 Mar 2007, 02:00
Posts: 125
Autodiscovery of the RSS feed is still not working on the forum or the main site. Did you remember to add that code to the head of both the site and the forum template?

(nope, you didn't add it)

_________________
Image


Top
 

 Post subject: Re: New look site
PostPosted: 09 Jul 2008, 09:19 
Offline
Site Admin
User avatar
 YIM  Profile

Joined: 13 Mar 2007, 11:39
Posts: 528
Location: Springfield
app wrote:
Autodiscovery of the RSS feed is still not working on the forum or the main site. Did you remember to add that code to the head of both the site and the forum template?

(nope, you didn't add it)


Should be working now, the mod i used did not contain autodiscovery, hopefully now the code i have added will work just fine, let me know if there are any further issues, i will do my best to correct them. :thumbleft:

_________________
Good pet names | Misty Edwards | Ferari F1


Top
 

 Post subject: Re: New look site
PostPosted: 09 Jul 2008, 12:00 
Offline
User avatar
 WWW  Profile

Joined: 16 Mar 2007, 02:00
Posts: 125
When I view the source of the page, I see this:

Code:
</head>

<html>
  <head>
    <title>Acid-Lounge.com RSS</title>
    <link rel="alternate" type="application/rss+xml" title="RSS"
      href="http://www.acid-lounge.com/forum/rss.php">
  </head>



<body class="ltr">


You should only have 1 <head> tag in a document and 1 </head > tag, and 1 <html> tag

Remove this section that you added:

Code:
<html>
  <head>
    <title>Acid-Lounge.com RSS</title>
    <link rel="alternate" type="application/rss+xml" title="RSS"
      href="http://www.acid-lounge.com/forum/rss.php">
  </head>


then add this line:

Code:
<link rel="alternate" type="application/rss+xml" title="Acid-Lounge.com RSS"
      href="http://www.acid-lounge.com/forum/rss.php">


BEFORE the already existing </head> tag so it will look like this:

Code:
<link rel="alternate" type="application/rss+xml" title="Acid-Lounge.com RSS"
      href="http://www.acid-lounge.com/forum/rss.php">

</head>

<body class="ltr">

_________________
Image


Top
 

 Post subject: Re: New look site
PostPosted: 09 Jul 2008, 12:09 
Offline
User avatar
 WWW  Profile

Joined: 16 Mar 2007, 02:00
Posts: 125
Better yet, go to the top of the code where you see this:

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-gb" xml:lang="en-gb">
<head>


paste that line of code right after that, before the favicon code, and not only will autodiscovery work, it will work fast and have less chance of timing out.

_________________
Image


Top
 

 Post subject: Re: New look site
PostPosted: 09 Jul 2008, 14:07 
Offline
Site Admin
User avatar
 YIM  Profile

Joined: 13 Mar 2007, 11:39
Posts: 528
Location: Springfield
Ok April, i cant see any change over what i had, lol, but i have added your code as described, let me know if its now better.

_________________
Good pet names | Misty Edwards | Ferari F1


Top
 

 Post subject: Re: New look site
PostPosted: 09 Jul 2008, 15:02 
Offline
User avatar
 WWW  Profile

Joined: 16 Mar 2007, 02:00
Posts: 125
Code on the main site is fine and working well...but...

you still need to fix it on the forum.

Right click this page, right here, right now, and look at the source.

It still looks like the double head tags are there. That needs to be fixed or it can cause you big problems. You could end up with a forum that won't work in some browser that isn't smart enough to ignore the bad code. Some people could end up seeing a blank page.

Or you could end up with a search engine spider not seeing the entire contents of your pages if it misinterprets the bad code. So fix that asap.

_________________
Image


Top
 

 Post subject: Re: New look site
PostPosted: 09 Jul 2008, 16:26 
Offline
Site Admin
User avatar
 YIM  Profile

Joined: 13 Mar 2007, 11:39
Posts: 528
Location: Springfield
Looking at the source here, the head tags seem to be in order and all seems to be well, please let me know if you can see any remaining issues!

:angel4:

_________________
Good pet names | Misty Edwards | Ferari F1


Top
 

 Post subject: Re: New look site
PostPosted: 09 Jul 2008, 17:54 
Offline
User avatar
 WWW  Profile

Joined: 16 Mar 2007, 02:00
Posts: 125
yay! all fixed now. :cheers:

go have a beer...you earned it today.

_________________
Image


Top
 

Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 35 posts ]  Go to page Previous  1, 2, 3  Next

All times are UTC [ DST ]



Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group  
Design By Poker Bandits  
phpBB SEO