How to make my own imageboard (14)

1 Name: #!/usr/bin/anonymous : 2013-12-13 02:52 ID:ivLZN6o0 This thread was merged from the former /code/ board. You can view the archive here.

I am very new to the imageboard setup stuff so I have no clue how to set it up. And I haven't/don't know how to make a table for a DB. If someone could he that would be great.

2 Name: #!/usr/bin/anonymous : 2013-12-13 02:59 ID:ivLZN6o0

Like step by step help.

3 Name: #!/usr/bin/anonymous : 2014-01-03 22:03 ID:+wYIocZK

you need at least a 4 year degree to make an imageboard

4 Name: #!/usr/bin/anonymous : 2014-04-12 09:43 ID:Heaven

>>3
You need at least a 4 inch cock to fuck my anus.

5 Name: #!/usr/bin/anonymous : 2014-04-21 20:10 ID:rqtFFo91

  1. Learn HTML and CSS (or find a cheatsheet)
  2. Learn basic PHP or Perl (one or the other)
  3. Install apache and PHP/Perl and MySQL
  4. Learn SQL commands like SELECT, INSERT, UPDATE, and DROP
  5. ???
  6. PROFIT

Or just do:

[form.html]
``<html><body><h1>Post here:</h1><form name="theform" action="post.php" method="post"><textarea name="comment" placeholder="Post a comment here" rows="8" cols="64"></textarea> <input type="submit" name="submit" value="Reply" /></form></body></html>

[post.php]
``<?php $conn = mysql_connect('localhost','root',''); $db = mysql_select_db('wakaba_beta',$conn);
$mysql_query("INSERT INTO wakaba_beta.posts (name,comment) VALUES ('Anonymous','".mysql_real_escape_string($_POST['comment'])."');
mysql_close();
header('location:posts.html'); ?>

[posts.html]
``<html><body><h1>Showing all posts:</h1><?php $query = mysql_query('SELECT * FROM wakaba_beta.posts; foreach($row = mysql_fetch_assoc($query) { echo "<p>Name: ".$row['name']."<br />".htmlspecialchars(str_replace(PHP.EOL,"<br />",$row['comment']))."</p>"; ?></body></html>

Assuming you used a GUI editor like MySQL workbench to create a database called wakaba_beta and a table called posts with 2 columns canned name and comment.

But then you have to add name and subject fields, show an error message if the comment is blank/too short/too long/etc, make a moderation page for deleting posts, make a spam filter, upload images (with artificial intelligence to block cp) etc.

tl;dr - it takes 4 years 2 weeks to make an imageboard

6 Name: #!/usr/bin/anonymous : 2014-05-03 05:47 ID:Heaven

tl;dr - it takes 4 years 2 weeks 1 second to make an imageboard!

7 Post deleted.

8 Name: #!/usr/bin/anonymous : 2017-05-09 11:48 ID:yejGrNaH

read all the scripts at http://tanami.org/overscript/ then come back

9 Name: #!/usr/bin/anonymous : 2017-05-11 09:21 ID:U9no1vcm

>>8
huh, didn't know that existed. Thanks.

10 Name: #!/usr/bin/anonymous : 2017-05-16 05:02 ID:uDa0QT6N

ったく日本人にこれといった腕を持つプログラマがいなくて困ってるわ

どんだけ日本人じはスキルがねーんだよw

11 Name: ANONYMOUS : 2019-01-15 07:45 ID:iXcXD2BI

HTML + CSS + PHP + MySQL + SQL + ??? = PROFIT!!!!

12 Name: HA : 2019-01-15 07:48 ID:iXcXD2BI

TROLOLOLOLOLOL HAHAHAHA

13 Name: #!/usr/bin/anonymous : 2019-08-20 00:43 ID:9zIAkO+F

sudo apt get website

14 Name: #!/usr/bin/anonymous : 2019-10-06 20:00 ID:uzcpeJza

use wakaba. if you are not stupid then you can do it. try your best ganbatte (*´∀`)

Name: Link:
Leave these fields empty (spam trap):
More options...
Verification: