Welcome Guest Search | Active Topics | Log In | Register

2 Pages 12>
PxCad Forum Options · View
plozzman
#1 Posted : Friday, June 20, 2008 9:09:26 AM
Rank: Member




Joined: 3/12/2008
Posts: 29
Location: Australia
I have a Yaf forum working in an iframe on a MWPSK web site, not an ideal setup but works ok, any comments welcome.

www.PxCad.com
ca4nul
#2 Posted : Friday, June 20, 2008 10:52:29 AM
Rank: Member


Joined: 11/7/2007
Posts: 15
Location: UK
have google crawl your forum properly?

my experience is iframes or even frames are not search engine friendly
plozzman
#3 Posted : Saturday, June 21, 2008 1:43:18 AM
Rank: Member




Joined: 3/12/2008
Posts: 29
Location: Australia
Not sure what you mean ca4nul, the site is hosted at godaddy. They have a function to make a site map & submit it to google, that's all I have done at present.
ash360
#4 Posted : Sunday, July 06, 2008 4:45:01 AM

Rank: YAF Commander




Joined: 3/28/2008
Posts: 121
Location: New York
good design
nice work and implementation
Visit my Forums: FORUMZ360.com
Mek
#5 Posted : Sunday, July 06, 2008 11:27:07 PM

Rank: YAF Developer



Joined: 7/12/2005
Posts: 1,245
Location: on Dock Street
yikes error

Code:

nexpected end of file has occurred. The following elements are not closed: key, item, VisitorData, HitDataExt. Line 247, position 37.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Xml.XmlException: Unexpected end of file has occurred. The following elements are not closed: key, item, VisitorData, HitDataExt. Line 247, position 37.

Source Error:

Line 239:            reader.ReadStartElement("item");
Line 240:            reader.ReadStartElement("key");
Line 241:            TKey key = (TKey)keySerializer.Deserialize(reader);
Line 242:            reader.ReadEndElement();
Line 243:            reader.ReadStartElement("value");


Source File: d:\hosting\2937616\html\EasyControls\HitCounter2.ascx.cs    Line: 241



"It's a case of RTFM.. the only problem being we don't have a manual!"

When I post FP:Mek in a topic, I'm leaving my footprint there so I can track it once I get into coding/supporting. (Yes I stole this off Ederon Smile )
plozzman
#6 Posted : Thursday, July 10, 2008 5:31:23 AM
Rank: Member




Joined: 3/12/2008
Posts: 29
Location: Australia
ash360 wrote:
good design
nice work and implementation


Thanks ash360...
plozzman
#7 Posted : Thursday, July 10, 2008 5:37:49 AM
Rank: Member




Joined: 3/12/2008
Posts: 29
Location: Australia
Mek wrote:
yikes error



Yes the hit counter had a melt down, it has been fixed for the moment. Might have to remove it if I have any more problems like that.


test2005
#8 Posted : Sunday, August 10, 2008 3:04:54 PM

Rank: YAF MVP



Joined: 2/12/2005
Posts: 923
Location: Italy

Nice deployment! Very slick. Love the colors and the usage of IFRAME! How does the forum do with someone posting very large images?

Good job!

Razz
.....the man in black fled across the desert..........and the gunslinger followed.....

plozzman
#9 Posted : Monday, August 11, 2008 9:28:52 AM
Rank: Member




Joined: 3/12/2008
Posts: 29
Location: Australia
Thanks for your comments test2005, I have the max file upload size set on 500000kb which is more than enough for what the site is designed for. I hadn't tested uploading images prior to this but had a bit of a play & the max width to display an image is 550 pixels not sure what the max height would be probably the viewable page size. I uploaded an image 550w x 1000h pixels & it was viewable. Smile
test2005
#10 Posted : Tuesday, August 12, 2008 12:27:49 PM

Rank: YAF MVP



Joined: 2/12/2005
Posts: 923
Location: Italy

What effect does an image width greater than 550 have?

.....the man in black fled across the desert..........and the gunslinger followed.....

plozzman
#11 Posted : Wednesday, August 13, 2008 11:23:46 PM
Rank: Member




Joined: 3/12/2008
Posts: 29
Location: Australia
test2005 wrote:

What effect does an image width greater than 550 have?


If the image is wider than 550 pixels it gets shown as a link. The user can click this link to download or view it.
test2005
#12 Posted : Thursday, August 14, 2008 1:06:48 PM

Rank: YAF MVP



Joined: 2/12/2005
Posts: 923
Location: Italy
plozzman wrote:
test2005 wrote:

What effect does an image width greater than 550 have?


If the image is wider than 550 pixels it gets shown as a link. The user can click this link to download or view it.


Now that is too cool! Wanna share the code you used to implement this??? Cheesy Grin Cheesy Grin

Razz
.....the man in black fled across the desert..........and the gunslinger followed.....

plozzman
#13 Posted : Wednesday, August 27, 2008 11:32:46 AM
Rank: Member




Joined: 3/12/2008
Posts: 29
Location: Australia
test2005 wrote:
plozzman wrote:
test2005 wrote:

What effect does an image width greater than 550 have?


If the image is wider than 550 pixels it gets shown as a link. The user can click this link to download or view it.


Now that is too cool! Wanna share the code you used to implement this??? Cheesy Grin Cheesy Grin

Razz



There's no code there as such test2005, the only thing I have change on the forum is the theme & it lives in an iframe.

The width of the iframe sets the width of the image.Smile



Neven
#14 Posted : Wednesday, August 27, 2008 11:49:12 AM

Rank: YAF MVP



Joined: 11/26/2004
Posts: 509
Location: Zagreb, Croatia
plozzman wrote:
test2005 wrote:
plozzman wrote:
test2005 wrote:

What effect does an image width greater than 550 have?


If the image is wider than 550 pixels it gets shown as a link. The user can click this link to download or view it.


Now that is too cool! Wanna share the code you used to implement this??? Cheesy Grin Cheesy Grin

Razz



There's no code there as such test2005, the only thing I have change on the forum is the theme & it lives in an iframe.

The width of the iframe sets the width of the image.Smile

You can't do that with css only.
Let's recapitulate;
Test wanted to know what happens if someone tries to put inline image using [img] tag that is wider than IFRAME.
You said that in that case image is not shown, and instead you get only a link to the image.
Now, you don't need to share the if you don't want to, but to do what you described, you need an additional code outside the theme.
... But trust me on the sunscreen!

test2005 wrote:
There not bugs(in YAF)...it's either un-defined features or exceptions to expected behavior!!
plozzman
#15 Posted : Thursday, August 28, 2008 9:23:32 AM
Rank: Member




Joined: 3/12/2008
Posts: 29
Location: Australia
Neven wrote:
plozzman wrote:
test2005 wrote:
plozzman wrote:
test2005 wrote:

What effect does an image width greater than 550 have?


If the image is wider than 550 pixels it gets shown as a link. The user can click this link to download or view it.


Now that is too cool! Wanna share the code you used to implement this??? Cheesy Grin Cheesy Grin

Razz



There's no code there as such test2005, the only thing I have change on the forum is the theme & it lives in an iframe.

The width of the iframe sets the width of the image.Smile

You can't do that with css only.
Let's recapitulate;
Test wanted to know what happens if someone tries to put inline image using [img] tag that is wider than IFRAME.
You said that in that case image is not shown, and instead you get only a link to the image.
Now, you don't need to share the if you don't want to, but to do what you described, you need an additional code outside the theme.


Neven, sorry but there is no additional code to be had.
Are you saying this can't be done will the standard version of YAF, you may have to rethink that.
I have not altered the source code of my installation in anyway. It is a bog stock copy of version 1.9.1.7 running from a web page in an iframe.


Users browsing this topic
Guest (2)
2 Pages 12>
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

YAFPro Theme Created by Jaben Cargman (Tiny Gecko)
Powered by YAF 1.9.3 RC2 | YAF © 2003-2008, Yet Another Forum.NET
This page was generated in 0.152 seconds.

SourceForge.net Logo Powered by ASP.NET v2.0 411ASP.NET