Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #31.8K
~4K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

6 Posted Topics

Member Avatar for dina
Member Avatar for Brandog

First find out where the perl executable is, most likely /usr/bin/perl My guess is that the cgi script is calling for /usr/local/bin/perl so Open your ikonboard.cgi with Kwrite or w/e you like best. The first line.... [code]#!/usr/bin/perl[/code] replace that with the correct url and it should work!

Member Avatar for axieaxie
0
2K
Member Avatar for Killer_Typo

try this... [code] $result = mysql_query("SELECT * FROM users WHERE username = \"$_The_Name_Your_Checking\""); if($myrow = mysql_fetch_assoc($result)) { echo(" Name Taken... "); } else { //Continue functions } [/code] Mysql doesn't match CaSe so if the user is trying to make the name "Dave" and there is alrdy a user in …

Member Avatar for fEcAlMaTteR
0
248
Member Avatar for xc_xtc

.tar is a linux compressed file like win's .zip. To get the most recent php dist for windows go here... [url]http://us2.php.net/get/php-4.3.7-Win32.zip/from/a/mirror/[/url] That is the binaries w/o the installer. I'm guessing your using Apache? If so do as follows to install php as an Apache module. you can find Apache at …

Member Avatar for Killer_Typo
0
251
Member Avatar for Killer_Typo

What i like to do with form submissions... First off, you never want to put your SQL login info directly in your script instead make a file like db.cnnt.php Inside, write something like this... [code] <?PHP // No direct call... if(ereg('db.cnnt.php', $_SERVER['SCRIPT_NAME'])) { die("Access Denied! No Direct Call!"); } // …

Member Avatar for samaru
0
171
Member Avatar for web4naija
Member Avatar for fEcAlMaTteR
0
106

The End.