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.


Topics - NYNick

Pages: [1] 2
1
General Support / Forgot which email I used :(
« on: August 01, 2009, 11:52:46 am »
Forum Url: http://musicalness.smfforfree3.com
I set up a new forum yesterday (link above). It will be about Music, as you can see from the title.

But, I have forgotten my password AND the email I used to sign up :( Is there anything I can do??

2
In the permissions panel, there is a "Send a forum email to members" option under the Member Administration category... I was just curious as to what this does? Thank you

3
I've been looking to center tabs without javascript. I am aware there is a javascript that does this {it's a great code, btw}, but that, as with many javascripts, has a slight delay while loading. I was wondering if this can be accomplished using CSS? I have tried it in the stylesheets (using text-align and horizontal-align attributes) on a few forums, but can't get it to work for some reason. Help would be appreciated. Thanks :)

4
Code Requests / (REQUEST)PM form
« on: June 29, 2009, 12:54:18 am »
We all have seen the contact forms that send emails when submitted. I was just curious as to whether or not there can be a way to make a form that sends a PM to a specific user when submitted.


Here is an example email form:
(example is JayB's email form code located here: http://www.smfsupport.com/support/smf_for_free_codes_and_support/code_email_form_on_your_forum-t27477.0.html])

Code: [Select]
<html>
<body>
<form action="MAILTO:YOUREMAIL@YOURMAIL.COM" method="post" enctype="text/plain">

<h3>This form send an E-mail to ME</h3>
Your Name:<br>
   <input type="text" name="name"
 value="your full name" size="30">
<br>
 E-Mail:<br>
<input type="text" name="mail"
value="your e-mail account" size="30">
<br>
Your Message:<br>
 <input type="text" name="comment"
value="yourmessage" size="40">
 <br><br>
<input type="submit" value="Send E-Mail">
 <input type="reset" value="Retry">

</form>
</body>
</html>

5
Bugs / Keep getting this message on the support forums
« on: June 26, 2009, 10:39:38 pm »
Every few pages I visit, I get this message:

PHP has encountered an Access Violation at 026CA5BA


This only happens on the support forums for me :P Is this normal?

6
If this already exists, please disregard this... I was just curious as to if it were possible to hide certain profile fields? Is it in the Admin panel, and, if not, is there a way to make a code for it?
{Here comes the part where I find out it was already in the Admin panel and I had just never seen it}

7
For some reason, I thought there was a code that changed names across the board {posts, profiles, online list, and PMs} according to their Member Groups so you didn't have to do it on an individual basis... Was I wrong? I'm running on little to no sleep, so I could be crazy  :idiot2:

8
SMF For Free Codes and Support / Raindrops
« on: June 19, 2009, 08:32:13 pm »
I'm using this code to create rain drops falling down the forum:

Code: [Select]
<SCRIPT LANGUAGE="JavaScript">
<!-- Original:  Matthew Musgrove ( muskrat@lvnworth.com) -->
<!-- Web Site:  http://free.prohosting.com/~musgrove -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var no = 50;
var speed = 1;
var ns4up = (document.layers) ? 1 : 0;
var ie4up = (document.all) ? 1 : 0;
var s, x, y, sn, cs;
var a, r, cx, cy;
var i, doc_width = 800, doc_height = 600;
if (ns4up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
else
if (ie4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
x = new Array();
y = new Array();
r = new Array();
cx = new Array();
cy = new Array();
s = 8;
for (i = 0; i < no; ++ i) { 
initRain();
if (ns4up) {
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"1\" ");
document.write("top=\"1\" visibility=\"show\"><font color=\"blue\">");
document.write(",</font></layer>");
}
else {
document.write("<layer name=\"dot"+ i +"\" left=\"1\" ");
document.write("top=\"1\" visibility=\"show\"><font color=\"blue\">");
document.write(",</font></layer>");
   }
}
else
if (ie4up) {
if (i == 0) {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><font color=\"blue\">");
document.write(",</font></div>");
}
else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><font color=\"blue\">");
document.write(",</font></div>");
      }
   }
}
function initRain() {
a = 6;
r[i] = 1;
sn = Math.sin(a);
cs = Math.cos(a);
cx[i] = Math.random() * doc_width + 1;
cy[i] = Math.random() * doc_height + 1;
x[i] = r[i] * sn + cx[i];
y[i] = cy[i];
}
function makeRain() {
r[i] = 1;
cx[i] = Math.random() * doc_width + 1;
cy[i] = 1;
x[i] = r[i] * sn + cx[i];
y[i] = r[i] * cs + cy[i];
}
function updateRain() {
r[i] += s;
x[i] = r[i] * sn + cx[i];
y[i] = r[i] * cs + cy[i];
}
function raindropNS() {
for (i = 0; i < no; ++ i) {
updateRain();
if ((x[i] <= 1) || (x[i] >= (doc_width - 20)) || (y[i] >= (doc_height - 20))) {
makeRain();
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
document.layers["dot"+i].top = y[i];
document.layers["dot"+i].left = x[i];
}
setTimeout("raindropNS()", speed);
}
function raindropIE() {
for (i = 0; i < no; ++ i) {
updateRain();
if ((x[i] <= 1) || (x[i] >= (doc_width - 20)) || (y[i] >= (doc_height - 20))) {
makeRain();
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
document.all["dot"+i].style.pixelTop = y[i];
document.all["dot"+i].style.pixelLeft = x[i];
}
setTimeout("raindropIE()", speed);
}
if (ns4up) {
raindropNS();
}
else
if (ie4up) {
raindropIE();
}
//  End -->
</script>

<p><center>
<font face="arial, helvetica" size="-2">Free JavaScripts provided<br>
by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
</center><p>


It does not work though. I'm an idiot when it comes to coding Javascript, so am I doing something wrong?

9
General Support / Is it hacking?
« on: June 19, 2009, 11:11:01 am »
Hi everyone. I am really bored right now, and I thought I'd ask something:

If someone makes someone else an Admin and the Admin trashes the forum, is it considered truly hacking?


Weird question, I know, but I am really bored and got curious

10
General Support / HTML and BBC in registration agreement?
« on: June 16, 2009, 10:36:45 am »
I was just wondering whether or not BBC and/or HTML works when I post the Registration agreement? Thanks :)

11
General Discussion / Uggghh
« on: June 15, 2009, 04:51:12 pm »
I have a user driving me insaaaaaaaaaaaaaaane    :crazy2:, lol. He has registered 6 times on my forum (all from different IPs, emails, and hosts). Just thought I'd ask if anyone else has a user like this... It's like that pimple on the end of your nose; it just won't go away xD

12
Code Requests / Hide certain membergroups from the staff list?
« on: June 14, 2009, 05:12:27 pm »
I was wondering if a code like this would be possible :)


When I create a membergroup that isn't based on Post Count, it adds it to the Staff page. Are there any codes I can use to remove this? Thanks!

13
Suggestions / Custom ranks bars
« on: May 29, 2009, 10:18:57 pm »
Either this isn't in there or I just haven't figured it out :)

My suggestion would be to make it to where we can link to our own rank bars on our forums ;) Where the field for rank bars currently is, we could just put the direct link to our bars in.



Thanks

14
Bugs / SMF4free Webpage Editor
« on: May 29, 2009, 04:26:43 pm »
Forum URL: http://www.smf4free.com/forums/kstesting/index.php

On SMF4free, I have never been able to get the Webpage Editor in the Admin panel on SMF4free forums to work. I have tried it on 6 or 7 different forums now... I've tried it on SMFForFree and it's awesome; just wondering if this tool would be available or whether or not it's a bug? :)



(When I try it it says "No Action defined" on a white page)

15
General Support / Footer won't clear
« on: May 27, 2009, 03:02:34 pm »
For some reason, the footer on a forum I Admin on won't clear. The only HTML I used in it were <center> tags, so I doubt I jacked up the forum like that. Every time I clear it and try to save a message pops up saying "Cannot open file." It has happened to the root account as well as other Admins. Has anyone else ever had this?



The Owner told me not to just give out the link for some reason, so I can PM it to you but can't post it here.

Pages: [1] 2