Forum software without mySQL?

For everything that's not in any way related to PureBasic. General chat etc...
Jellybean
User
User
Posts: 95
Joined: Wed Aug 24, 2005 7:33 pm

Forum software without mySQL?

Post by Jellybean »

Does anyone know a forum software in php that does not require a database?
dagcrack
Addict
Addict
Posts: 1868
Joined: Sun Mar 07, 2004 8:47 am
Location: Argentina
Contact:

Post by dagcrack »

software? - You can use plain databases (txt) by your own or get txtsql..
If you have low amounts of data then a txt database will do.

Else explain better what you exactly need please.


Theres many CMS (Free) php-based and txt-based out there, if thats what you want I can suggest you some I worked with.

Cheers
! Black holes are where God divided by zero !
My little blog!
(Not for the faint hearted!)
Jellybean
User
User
Posts: 95
Joined: Wed Aug 24, 2005 7:33 pm

Post by Jellybean »

I want a forum (bulletin board, message board, discussion group) written in php. It should use plain text files as "database". It needs to have basic features and an "edit post" feature. (That excludes Elite forum and Silentum boards.)

I would very happy if someone could recommend something like the above.
User avatar
griz
Enthusiast
Enthusiast
Posts: 167
Joined: Sun Jun 29, 2003 7:32 pm
Location: Canada

Post by griz »

If you're using php 5 you could use Sqlite (built-in) ...
dagcrack
Addict
Addict
Posts: 1868
Joined: Sun Mar 07, 2004 8:47 am
Location: Argentina
Contact:

Post by dagcrack »

Well he wants something already programmed (a forum)..

heres the default siteman 1.1.1 running (no edition just what you get when you download it):

http://gushh.com.ar/temp/index.php

for admin login, user is siteman and the same for pass.

download here:
http://prdownloads.sourceforge.net/site ... r=easynews

its a CMS though, you can strip it down to the forum very easly though.
Siteman2 is on the go, the beta is very unfinished.. you cant do much with it, but it just shows you that its faster with txtsql...
! Black holes are where God divided by zero !
My little blog!
(Not for the faint hearted!)
Jellybean
User
User
Posts: 95
Joined: Wed Aug 24, 2005 7:33 pm

Post by Jellybean »

Looks nice.
dagcrack
Addict
Addict
Posts: 1868
Joined: Sun Mar 07, 2004 8:47 am
Location: Argentina
Contact:

Post by dagcrack »

I have my own though - but I dont give it away for free im afraid :)
well.. if you need help stripping down siteman's forum, just tell.
! Black holes are where God divided by zero !
My little blog!
(Not for the faint hearted!)
ricardo
Addict
Addict
Posts: 2438
Joined: Fri Apr 25, 2003 7:06 pm
Location: Argentina

Post by ricardo »

www.hotscripts.com here you can find some
ARGENTINA WORLD CHAMPION
dagcrack
Addict
Addict
Posts: 1868
Joined: Sun Mar 07, 2004 8:47 am
Location: Argentina
Contact:

Post by dagcrack »

www.hotscripts.com here you can find some
Not since they became dictators .. And plus, whats the problem with reading the php manual and writting your own forum? its straight forward once you understand the syntax and remember the function names.
! Black holes are where God divided by zero !
My little blog!
(Not for the faint hearted!)
Jellybean
User
User
Posts: 95
Joined: Wed Aug 24, 2005 7:33 pm

Post by Jellybean »

Probably because I'm an idiot.

Actually, I can't understand sessions. A simple page containing <? session_start(); ?> gives an error with "headers already sent by something".
Dare2
Moderator
Moderator
Posts: 3321
Joined: Sat Dec 27, 2003 3:55 am
Location: Great Southern Land

Post by Dare2 »

My guess is that something like:

Code: Select all

<html>
<head><title>MyDoc</title></head>
<body>
<?
session_start();
...
will cause the error because the server has initiated contact with the agent, ie started the session already. The http headers are sent and it cannot legitimately resend them. So session_start should be the first thing in the script, or at least precede the first bit of HTML.
@}--`--,-- A rose by any other name ..
Jellybean
User
User
Posts: 95
Joined: Wed Aug 24, 2005 7:33 pm

Post by Jellybean »

I just found out that I don't get an error if I don't have any newlines above <? session_start(); ?>. I didn't have any HTML in the first place.

Here is the error: Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at C:\Programfiler\Abyss Web Server\htdocs\forum\index.php:2) in C:\Programfiler\Abyss Web Server\htdocs\forum\index.php on line 2

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\Programfiler\Abyss Web Server\htdocs\forum\index.php:2) in C:\Programfiler\Abyss Web Server\htdocs\forum\index.php on line 2

Basically it says that it cannot send headers because headers are already sent by the same function that is trying to send the headers. Or something. :? My little brain is confused.
Edwin Knoppert
Addict
Addict
Posts: 1073
Joined: Fri Apr 25, 2003 11:13 pm
Location: Netherlands
Contact:

Post by Edwin Knoppert »

I think you mean the YABB forum?
I have one on my site if you want to take a peek.
Post Reply