51
Burnzy
menu background is cut off
  • 2005/1/28 17:34

  • Burnzy

  • Just popping in

  • Posts: 75

  • Since: 2005/1/23


can sumone tell me how to make the menu's background to appear full? It gets cut off for sum reason.

http://www.burnsdesign.org/index.php

hit this link or it will appear under construction



52
Burnzy
IRC Mod - Make width smaller
  • 2005/1/24 18:32

  • Burnzy

  • Just popping in

  • Posts: 75

  • Since: 2005/1/23


How do i make the width smaller on the irc mod java applet? Please i really need help because it is going pushing my right column over.



53
Burnzy
Re: a module for broadcast
  • 2005/1/24 16:36

  • Burnzy

  • Just popping in

  • Posts: 75

  • Since: 2005/1/23


it is a custom block, all u do is make it center and on all pages



54
Burnzy
Re: Sites being defaced...anyone else seeing a trend here?
  • 2005/1/24 16:28

  • Burnzy

  • Just popping in

  • Posts: 75

  • Since: 2005/1/23


omg im cracking up here. They hacked ur site and left there email. Thats halarious. wooo



55
Burnzy
Re: How to find IP with shoutbox 3
  • 2005/1/24 15:57

  • Burnzy

  • Just popping in

  • Posts: 75

  • Since: 2005/1/23


i suggest u close it so only registed can do it. Cuz it seems that would be the best. Then u can get the ip from his username if he registers.



56
Burnzy
Re: IrcMod
  • 2005/1/24 15:53

  • Burnzy

  • Just popping in

  • Posts: 75

  • Since: 2005/1/23


please sumone



57
Burnzy
Re: Getting Spammed through contactus module LOL!!!
  • 2005/1/24 15:26

  • Burnzy

  • Just popping in

  • Posts: 75

  • Since: 2005/1/23


there is no way to prevent it. That really isnt a spam mail, it is junk mail. Well if ur site is popular it will happen. The only way to do anything about it is add an ip send in the form going to the email.

I created a contact us form and it sent the ip in my email.

Here is what the contact form looks like:
<html>
<head>
<title>Email Form </title>
</head>
<body>

<form name="frm" method="post" action="sendeail.php" onSubmit="return validate(frm)">

<!-- DO NOT change ANY of the php sections -->
<?php
$ipi 
getenv("REMOTE_ADDR");
$httprefi getenv ("HTTP_REFERER");
$httpagenti getenv ("HTTP_USER_AGENT");
?>

<input type="hidden" name="ip" value="<?php echo $ipi ?>">
<input type="hidden" name="httpref" value="<?php echo $httprefi ?>">
<input type="hidden" name="httpagent" value="<?php echo $httpagenti ?>">

<font size="2"><b>
Your Name:* <br>
<input type="text" name="visitor" size="35">
<br>
Your Email:*<br>
<input type="text" name="visitormail" size="35">
<br /> <br />
Copy Sender ? No<input checked="checked" name="ccopy" type="radio" value="ccno" />   Yes<input name="ccopy" type="radio" value="ccyes" /> <br /> 

<br>
Subject:*<br>
<select name="attn" size="1">
<option value=" General Support ">General Support
<option value=" Ordering Support ">Ordering Support
<option value=" Technical Support ">Technical Support
<option value=" Templates Support ">Templates Support
<option value=" Templates Support ">Application
<option value=" Webmaster ">Webmaster
</select>
<br><br>
Mail Message:*
<br>
<textarea name="notes" rows="4" cols="40"></textarea>
Required*
<br>
<input type="submit" value="Send Mail">
 
<SCRIPT LANGUAGE="JavaScript"> 
<!-- 
function validate(frm) 
{
    if (frm.visitor.value.length == 0) 
    { 
        alert("Please enter your name"); 
        frm.visitor.focus(); 
        return false; 
    }
    if (frm.visitormail.value.length == 0) 
    { 
        alert("Please enter an e-mail address"); 
        frm.visitormail.focus(); 
        return false; 
    } 
    if (frm.visitormail.value.indexOf("@") == -1) 
    { 
        alert("Please enter a valid e-mail address"); 
        frm.visitormail.focus(); 
        return false; 
    }
    if (frm.visitormail.value.indexOf(".") == -1) 
    { 
        alert("Please enter a valid e-mail address"); 
        frm.visitormail.focus(); 
        return false; 
    }
    if (frm.notes.value.length == 0) 
    { 
        alert("Please enter your message"); 
        frm.notes.focus(); 
        return false; 
    } 

//--> 
</SCRIPT>

</form>

</font></b>
</body>
</html>


And here is the sendeail:
<html>
<head>
<title>Sendemail Script</title>
</head>
<body>

<!-- You must enter YOUR email address ($myemail shown below). 
Then you should check (or modify) the link for the 'next page' (at the bottom) --> 

<?php
                       $myemail 
"burnzy@burnsdesign.org";
                       
$badinput "<h2>Feedback was NOT submitted</h2>n"

if(!
$visitormail == "" && (!strstr($visitormail,"@") || !strstr($visitormail,"."))) 
{
echo 
"<h2>Use Back - Enter valid e-mail</h2>n"
echo 
$badinput;
}
if(empty(
$visitor) || empty($visitormail) || empty($notes )) {
echo 
"<h2>Use Back - fill in all fields</h2>n";
echo 
$badinput;
}


$todayis date("l, F j, Y, g:i a") ;

$attn $attn "(" $ccopy ")" 
$subject $attn

$notes stripcslashes($notes); 

$message $todayis [EST] n
Subject: 
$attn n
Message: 
$notes n 
From: 
$visitor ($visitormail)n
IP: 
$ip n
Browser Info: 
$httpagent n
"
;

$from "From: $visitormailrn";

if (
$myemail != ""
mail($myemail$subject$message$from);

if ((
$ccopy == "ccyes") && ($visitormail != "")) 
mail($visitormail$subject$message$from);

?>

<b><p align="center">
Date: <?php echo $todayis ?> 
<br>
Thank You : <?php echo $visitor ?> ( <?php echo $visitormail ?> ) 
<br>

Subject: <?php echo $attn ?>
<br> 
Message: <?php echo $notes ?>
<br>
<?php echo $ip ?> 

<br><br>
<a href="contact2.php"> Back to Contact Form </a>

</body>
</html>



58
Burnzy
Allow access to Anoynomous
  • 2005/1/24 15:19

  • Burnzy

  • Just popping in

  • Posts: 75

  • Since: 2005/1/23


how to i make it so everything registed people can do, Anoynomous can?



59
Burnzy
Re: Which is a good Tips and Tricks module??
  • 2005/1/24 15:18

  • Burnzy

  • Just popping in

  • Posts: 75

  • Since: 2005/1/23


well mine seems easier since its just a pop-up window when modules have lots of stuff to edit and u.. well w/e



60
Burnzy
Re: Sendmail help!!
  • 2005/1/24 15:14

  • Burnzy

  • Just popping in

  • Posts: 75

  • Since: 2005/1/23


i suggest to test the contact us and change ur notification to email. That should work




TopTop
« 1 ... 3 4 5 (6) 7 8 »



Login

Who's Online

244 user(s) are online (148 user(s) are browsing Support Forums)


Members: 0


Guests: 244


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits