Advertise Here

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ace71

Pages: [1]
1
I'm good now, thanks  :smitten:

Same here. Thanks!

2
Forum Url: http://fordhamfans.smfforfree.com
http://fordhamfans.smfforfree.com/index.php

Connection Problems

Sorry, SMF For Free was unable to connect to the database. This may be caused by the server being busy. Please try again later.

SMF For Free Support forums located at
http://www.smfsupport.com

3
General Support / Re: Forum not loading
« on: January 22, 2016, 02:15:35 pm »
A good way to gather up some funds would be to offer to sell us our data.

http://fordhamfans.smfforfree.com

I am in the middle of a key time for my forum and I am not sure I want to wait 3 to 5 days.

4
General Support / Re: Tapatalk Double Post
« on: November 10, 2014, 09:18:55 am »
Thanks!

5
General Support / Tapatalk Double Post
« on: November 10, 2014, 09:04:23 am »
Forum Url: http://fordhamfans.smfforfree.com
I searched for any recent Tapatalk posts here and did not find one that related to double posts.

I am the mod of the referenced forum and everytime I post I get the following error and my post gets posted twice.

Table 'smfforums.fordhamfans_tapatalk_users' doesn't exist
File: C:\inetpub\wwwroot\SMFForFree\mobiquo\push_hook.php
Line: 24


SELECT ln.id_member
FROM fordhamfans_log_notify ln, fordhamfans_tapatalk_users tu
WHERE ln.id_member=tu.uid AND ln.id_topic = 7728

Any thoughts on how to fix this would be appreciated.  It appears to only be happening with my user which is fortunate since it reduces the volume and as the mod I can delete one of the two posts.

6
Bugs / Can't Delete Style
« on: February 26, 2014, 09:48:44 am »
Forum Url: http://fordhamfans.smfforfree.com
I have a style that appears to be empty in the CSS Editing box at the bottom of the Modify Style page.  When I got to DELETE STYLE and try to delete it, I get the following error.
An Error Has Occurred!
Error deleting style.

The style is named "red-compresshs".

7
Stylesheet Requests and Support / Re: Border Radius in IE
« on: February 26, 2014, 09:33:08 am »
Yeah that tag is generated by our forums here.

Any chance that could be updated?  Would be neat to see what happens if implemented on one forum as a test.  I know it was needed when IE8 came out and SMF still was making exceptions for IE that caused issues in IE8, but I am not sure if SMF has since addressed that.  I first saw it reported almost 4 years ago.

8
Stylesheet Requests and Support / Re: Border Radius in IE
« on: February 25, 2014, 04:35:12 pm »
After running a few local tests, I have discovered that the issue is with the X-UA-Compatible meta tag.

The site is using this:
Code: [Select]
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
When I run my local test with the above it shows no rounding of the borders and instead shows them as straight edges.

If instead I change the above meta tag to the following, it shows the rounded borders.
Code: [Select]
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9" />
or
<meta http-equiv="X-UA-Compatible" content="IE=9" />

Something tells me that is generated by the system and it is not something I can control on my forum.   :'(

9
Stylesheet Requests and Support / Border Radius in IE
« on: February 25, 2014, 12:22:26 pm »
Forum Url: http://fordhamfans.smfforfree.com
I created a new stylesheet for my forum, looking to eliminate the need for images unless absolutely necessary.

To get the rounded edges for the menus I am using border radius.

For maintab_back, for instance, I have the following
.maintab_back
{
   color:#800000;
   background-color: #FFFFFF;
   border-left:1px solid #800000;
   border-right:1px solid #800000;
   border-bottom:1px solid #800000;
   border-bottom-right-radius:10px;
   border-bottom-left-radius:10px;
}

This works well enough in Chrome, but in IE11 border-bottom-right-radius and border-bottom-left-radius seem to be ignored.  When right-click and "inspect element" in developer tools those two properties show with a red squiggly underline.  When I try to type the property in on the developer tool it is not available.  If I do the same on this support forum, the property is available however, so it does not appear to be an issue inherent to IE11, but rather something in my stylesheet possibly.  I have not tested other browsers yet.

My CSS is contained in the code box below.  Any insight would be greatly appreciated.
Code: [Select]
/* Normal, standard links. */
a:link
{
color: #800000;
text-decoration: none;
}
a:visited
{
color: #800000;
text-decoration: none;
}
a:hover
{
text-decoration: underline;
}

/* Navigation links - for the link tree. */
.nav, .nav:link, .nav:visited
{
color: #000000;
text-decoration: none;
}
a.nav:hover
{
color: #800000;
text-decoration: underline;
}

/* Tables should show empty cells. */
table
{
empty-cells: show;
}

/* By default (td, body..) use verdana in black. */
body, td, th , tr
{
color: #000000;
font-size: small;
font-family: verdana, sans-serif;
}

/* The main body of the entire forum. */
body
{
background-color: #E8E5E5;
margin: 0px;
padding: 12px 30px 4px 30px;
}

/* Input boxes - just a bit smaller than normal so they align well. */
input, textarea, button
{
color: #000000;
font-family: verdana, sans-serif;
}
input, button
{
font-size: 90%;
}

textarea
{
font-size: 100%;
color: #000000;
font-family: verdana, sans-serif;
}

/* All input elements that are checkboxes or radio buttons. */
input.check
{
}

/* Selects are a bit smaller, because it makes them look even better 8). */
select
{
font-size: 90%;
font-weight: normal;
color: #000000;
font-family: verdana, sans-serif;
}

/* Standard horizontal rule.. ([hr], etc.) */
hr, .hrcolor
{
height: 1px;
border: 0;
color: #666666;
background-color: #666666;
}

/* No image should have a border when linked */
a img{
border: 0;
}
/* A quote, perhaps from another post. */
.quote
{
color: #000000;
background-color: #ECD7D7;
border: 1px solid #000000;
margin: 1px;
padding: 1px;
font-size: x-small;
line-height: 1.4em;
}

/* A code block - maybe even PHP ;). */
.code
{
color: #000000;
background-color: #dddddd;
font-family: "courier new", "times new roman", monospace;
font-size: x-small;
line-height: 1.3em;
/* Put a nice border around it. */
border: 1px solid #000000;
margin: 1px auto 1px auto;
padding: 1px;
width: 99%;
/* Don't wrap its contents, and show scrollbars. */
white-space: nowrap;
overflow: auto;
/* Stop after about 24 lines, and just show a scrollbar. */
max-height: 24em;
}

/* The "Quote:" and "Code:" header parts... */
.quoteheader, .codeheader
{
color: #000000;
text-decoration: none;
font-style: normal;
font-weight: bold;
font-size: x-small;
line-height: 1.2em;
}

/* Generally, those [?] icons.  This makes your cursor a help icon. */
.help
{
cursor: help;
}

/* /me uses this a lot. (emote, try typing /me in a post.) */
.meaction
{
color: red;
}

/* The main post box - this makes it as wide as possible. */
.editor
{
width: 96%;
}

/* Highlighted text - such as search results. */
.highlight
{
background-color: yellow;
font-weight: bold;
color: black;
}

/* Alternating backgrounds for posts, and several other sections of the forum. */
.windowbg
{
color: #000000;
background-color: #F9F6F6;
}
.windowbg2
{
color: #000000;
background-color: #F8ECEC;
}
.windowbg3
{
color: #000000;
background-color: #F3E3E3;
}
/* the today container in calendar */
.calendar_today
{
background-color: #FFFFFF;
}

/* These are used primarily for titles, but also for headers (the row that says what everything in the table is.) */
.titlebg, tr.titlebg th, tr.titlebg td, .titlebg2, tr.titlebg2 th, tr.titlebg2 td
{
color: #FFFFFF;
font-style: normal;
background-color: #800000;
border-bottom: solid 1px #BA7777;
border-top: solid 1px #FFFFFF;
background-repeat: repeat-x;
padding-left: 10px;
padding-right: 10px;
}
.titlebg, .titlebg a:link, .titlebg a:visited
{
font-weight: bold;
color: #FFFFFF;
font-style: normal;
}

.titlebg a:hover
{
color: #404040;
}
/* same as titlebg, but used where bold text is not needed */
.titlebg2 a:link, .titlebg2 a:visited
{
color: #FFFFFF;
font-style: normal;
text-decoration: underline;
}

.titlebg2 a:hover
{
color: #FF0000;
text-decoration: underline;
}
/* news */
#news {
color: #800000;
font-weight: bold;
}
#news a:link, #news a:visited
{
color: #800000;
text-decoration: underline;
}

#news a:hover
{
color: #FF0000;
text-decoration: underline;
}

/* This is used for categories, page indexes, and several other areas in the forum.
.catbg and .catbg2 is for boardindex, while .catbg3 is for messageindex and display headers*/
.catbg , tr.catbg td , .catbg3 , tr.catbg3 td
{
background-color: #800000;
color: #CCCCCC;
padding-left: 10px;
padding-right: 10px;
}
.catbg2 , tr.catbg2 td
{
background-color: #800000;
color: #CCCCCC;
padding-left: 10px;
padding-right: 10px;
}
.catbg, .catbg2, .catbg3
{
border-bottom: solid 1px #792424;
background-repeat: repeat-x;
}
.catbg, .catbg2
{
font-weight: bold;
}
.catbg3, tr.catbg3 td, .catbg3 a:link, .catbg3 a:visited
{
font-size: 95%;
color: white;
text-decoration: none;
}
.catbg a:link, .catbg a:visited , .catbg2 a:link, .catbg2 a:visited
{
color: white;
text-decoration: none;
}
.catbg a:hover, .catbg2 a:hover, .catbg3 a:hover
{
color: #FFE0E0;
}
/* This is used for tables that have a grid/border background color (such as the topic listing.) */
.bordercolor
{
background-color: #ADADAD;
padding: 0px;
}

/* This is used on tables that should just have a border around them. */
.tborder
{
padding: 1px;
border: 1px solid #696969;
background-color: #FFFFFF;
}

/* Default font sizes: small (8pt), normal (10pt), and large (14pt). */
.smalltext
{
font-size: x-small;
font-family: verdana, sans-serif;
font-weight: bold;
color:darkgray;
}
.middletext
{
font-size: 90%;
color:#000000;
}
.normaltext
{
font-size: small;
}
.largetext
{
font-size: large;
}


/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
width: 100%;
overflow: auto;
line-height: 1.3em;
}

/* All the signatures used in the forum.  If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
.signature
{
width: 100%;
overflow: auto;
padding-bottom: 3px;
line-height: 1.3em;
}

/* Sometimes there will be an error when you post */
.error{
color: red;
}


/* definitions for the main tab, active means the tab reflects which page is displayed */
.maintab_first, .maintab_back, .maintab_last, .maintab_active_first, .maintab_active_back, .maintab_active_last
{
background-position: left bottom;
color: white;
text-transform: uppercase;
vertical-align: top;

}
.maintab_back, .maintab_active_back
{
text-decoration: none;
font-size:  9px;
vertical-align: top;
padding: 2px 6px 6px 6px;
font-family: tahoma, sans-serif;
}

.maintab_first
{
background-repeat: no-repeat;
width: 10px;
background-color: transparent;
}
.maintab_back
{
color:#800000;
background-color: #FFFFFF;
border-left:1px solid #800000;
border-right:1px solid #800000;
border-bottom:1px solid #800000;
border-bottom-right-radius:10px;
border-bottom-left-radius:10px;
}
.maintab_last
{
background-repeat: no-repeat;
width: 8px;
background-color: transparent;
}
.maintab_active_first
{
background-image: none;
background-repeat: no-repeat;
width: 6px;
background-color: #CCCCCC;
border-bottom:1px solid #800000;
border-left:1px solid #800000;
border-bottom-left-radius:10px;
}
.maintab_active_back
{
color:#800000;
background-image: none;
background-repeat: repeat-x;
background-color: #CCCCCC;
border-bottom:1px solid #800000;
}
.maintab_active_last
{
background-image: none;
background-repeat: no-repeat;
width: 8px;
background-color: #CCCCCC;
border-bottom:1px solid #800000;
border-right:1px solid #800000;
border-bottom-right-radius:10px;
}

/* how links behave in main tab. */
.maintab_active_back a:link , .maintab_active_back a:visited
{
color: #800000;
text-decoration: none;
}
.maintab_back a:link , .maintab_back a:visited
{
color: #800000;
text-decoration: none;
}

.maintab_back a:hover, .maintab_active_back a:hover
{
color: #FF0000;
text-decoration: none;
}
/* definitions for the mirror tab */
.mirrortab_first, .mirrortab_back, .mirrortab_last, .mirrortab_active_first, .mirrortab_active_back, .mirrortab_active_last
{
background-position: left top;
color: #800000;
text-transform: uppercase;
vertical-align: top;

}
.mirrortab_back, .mirrortab_active_back
{
color: #800000;
text-decoration: none;
font-size: 9px;
vertical-align: bottom;
padding: 6px 6px 2px 6px;
font-family: tahoma, sans-serif;
}

.mirrortab_first
{
background-repeat: no-repeat;
width: 10px;
background-color: transparent;
}
.mirrortab_back
{
background-repeat: repeat-x;
background-color: #FFFFFF;
border-left:1px solid #800000;
border-right:1px solid #800000;
border-top:1px solid #800000;
border-top-right-radius:10px;
border-top-left-radius:10px;
}
.mirrortab_last
{
background-repeat: no-repeat;
width: 6px;
background-color: transparent;
}

.mirrortab_active_first
{
background-repeat: no-repeat;
width: 6px;
background-color: #CCCCCC;
border-top:1px solid #800000;
border-left:1px solid #800000;
border-top-left-radius:10px;
}
.mirrortab_active_back
{
background-repeat: repeat-x;
background-color: #CCCCCC;
border-top:1px solid #800000;
}
.mirrortab_active_last
{
background-repeat: no-repeat;
width: 8px;
background-color: #CCCCCC;
border-top:1px solid #800000;
border-right:1px solid #800000;
border-top-right-radius:10px;
}

/* how links behave in mirror tab. */
.mirrortab_back a:link , .mirrortab_back a:visited, .mirrortab_active_back a:link , .mirrortab_active_back a:visited
{
color: #800000;
text-decoration: none;
}

.mirrortab_back a:hover, .mirrortab_active_back a:hover
{
color: #FFE0E0;
text-decoration: none;
}

10
Bugs / Re: A couple of problems with logins and malware warnings.
« on: February 16, 2011, 04:02:48 pm »
Forum: http://fordhamfans.smfforfree.com/

I am having the login problem.  I keep getting logged out even though I select "forever" when logging in.  Have had other users report it also.  Thanks.

11
General Support / Re: ADSDAQ / ContextWeb
« on: April 15, 2009, 08:48:40 am »
As I said, I am not looking to remove them.  I don't really mind them, I just mind that they are so darn slow.  The page freezes and I can't even move to another tab in my browser until the page is finished loading.

12
General Support / ADSDAQ / ContextWeb
« on: April 14, 2009, 01:54:22 pm »
Forum Url: http://fordhamfans.smfforfree.com
I did a search for both ADSDAQ and ContextWeb, together and separately and came up with nothing.  I don't know if this issue is isolated to my forum, but several of my users have PM'd me to complain about it.  Pages on the forum are taking a long time to show presumably b/c of a call to contextweb which is what produces underlined (two light blue lines) type advertisement based on keywords.

I actually don't mind the ads themselves and have actually found a few of them interesting, but I do mind the slowdown.  Is anybody else experiencing this and is there anything that can be done about it other than purchasing ad free credits.  Of course that assumes that I am right in assuming that ad free credits would remove this type of advertisement.

Thanks.

Pages: [1]