PDA

View Full Version : Need some feedback



GregT
October 3rd, 2002, 18:33
Im going to write a software like homefree except with more useful features. So far this is this what im going to have

Creates FTP, Subdomain, creates directories, and has IP check and email verfication to prevent multiple signups by one person.

for the user cp is what i need ideas on. so far i only got

View Webalizer logs
View FTP Info
Support Forums
Setup MySQL Database
Setup Postgresql Database

please tell me what else i should have.

Kaliber
October 3rd, 2002, 19:17
Are you sure you can build a program like this? What scripts have you wroten in the past. PHP I assume.

GregT
October 3rd, 2002, 19:49
ive written cms's for invisionboard, tons of stuff in php, but now i trying to learn perl, so thats what im writing this in. It should be sort of easy, i have already got most of the signup script done except the ip checking, email verifcation, and im not sure how to pull variables in like php's $HTTP_POST_VARS[''];

ansa
October 4th, 2002, 12:39
Originally posted by gt14
and im not sure how to pull variables in like php's $HTTP_POST_VARS[''];

if you haven't already worked this out, it's simple

cgi code "test.cgi"


use CGI;

#create a new cgi instance
my $cgi=new CGI;

#get formval
my $formval=$cgi->param('formval');

#output HTTP headers
print $cgi->header;

print "value of formval is".$formval."<br>";

exit;


html code "test.html"


<form action="/cgi-bin/test.cgi" method="post">
<input type="text" name="formval"><br>
<input type="submit" value="submit">
</form>


That's the basics anyway.


Andy.

GregT
October 5th, 2002, 04:12
ive changed my mind and decided to make it in php, so for im about 75% done with the signup script