Jump to content
MakeWebGames

Forum file


AnfieldMike

Recommended Posts

Hey everyone, I purchased the gRPG script a few months ago, and since buying it I have noticed that the zip file didn't come with a forum file.

I have since emailed Pibulis, but he still hasn't got back to me after many weeks.

It would be greatly appreciated if someone who has the origial forum file could send it to me, or post its coding, or upload the file somewhere so that it is available to download.

Also I need the MySQL information for the forums, so if you could paste that too, that would be great.

If you have had the same experience, then feel free to post, all help would be like i said greatly appreciated.

Thanks!

Link to comment
Share on other sites

There is a grpg forum but it's nothing to do with the grpg, and it is user made

There is one floating about but I don't know if it is licensed or if it's free

Is that for internal based forums, like the McCodes forums? Or like external, such as a MyPHB script or other forum script?
Link to comment
Share on other sites

Eh just secure the $_POST variable then lol

Secure it once you wouldnt "need" to secure the same variable 13 times

$_POST['variable'] = mysql_real_escape_string(strip_tags($_POST['variable']));

 

Then wherever it's output

Assuming Magic Quotes is on and you arent using a class to already stripslashes

$_POST['variable'] = stripslashes(htmlentities($_POST['variable'], ENT_QUOTES));

That + A secured BBcode engine you should be good to go.

Link to comment
Share on other sites

T, If all you can do is run your mouth why don't you go play in pre-school.

We were talking about securing a certain few variables in the forums, have you even looked at GRPG?

Please Explain why it fails, since apparently you think you know the entire php manual.

Link to comment
Share on other sites

Could you not read a few tutorials and create one? Or use SMF?

I don't want to use SMF, because that would involve creating a theme that would match my game, and I don't think I have the time to do that. Also I wanted the forums to be internally based, and I am sure there is a way to do this, in fact I think I am sure I have done it once before, but I don't want to use SMF.

As for reading tutorials, what tutorials are there for creating an internally based forum for the gRPG script? If you know of any, and can direct me there I will sure give it a shot.

Link to comment
Share on other sites

Eh just secure the $_POST variable then lol

Secure it once you wouldnt "need" to secure the same variable 13 times

$_POST['variable'] = mysql_real_escape_string(strip_tags($_POST['variable']));

 

Then wherever it's output

Assuming Magic Quotes is on and you arent using a class to already stripslashes

$_POST['variable'] = stripslashes(htmlentities($_POST['variable'], ENT_QUOTES));

That + A secured BBcode engine you should be good to go.

Why use htmlentitles when you're stripping the tags?

Plus, Magic Quotes isn't used for GRPG, if it was then most of the mysql_query(); 's would error/double slash quotes :S :S

Link to comment
Share on other sites

  • 3 weeks later...
  • 3 weeks later...
  • 3 weeks later...

i created my forum from scratch, all it took was a little brain racking :P

with a little bit of time, i made a fully functional forum within my grpg game from scratch,

has working lock/sticky/move thread/delete thread/delete post/forum bans etc

the day this was complete was the happiest day of my life :D

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...