Search found 9 matches
- Sat Apr 15, 2006 4:15 pm
- Forum: [3.0/Olympus] Discussion
- Topic: Why does phpBB use a posting confirmation page?
- Replies: 44
- Views: 39288
Re: Why does phpBB use a posting confirmation page?
More efficent code. :P
$PostConf = $config['PostConfirm'];
if($PostConf == 0)
{
header("Location: blah.php?postid=blah");
}
elseif($PostConf == 1)
{
header("Location: the_page_that_shows_confirm_dialog.php");
}
else
{
do the default thing
}
Removed the SQL query because its done in common ...
- Thu Apr 13, 2006 8:11 pm
- Forum: [3.0/Olympus] Discussion
- Topic: Why does phpBB use a posting confirmation page?
- Replies: 44
- Views: 39288
Re: Why does phpBB use a posting confirmation page?
Eh??Cheater512 wrote:1 word: $configCraig321 wrote: Then some code can be added in the admin panel that allows the admin to toggle on/off.![]()
- Wed Apr 12, 2006 8:23 pm
- Forum: [3.0/Olympus] Discussion
- Topic: Why does phpBB use a posting confirmation page?
- Replies: 44
- Views: 39288
Re: Why does phpBB use a posting confirmation page?
it's actually not that hard to add a feature to turn it off at all.
Add new field into the config database called PostConfirm or something, 0=off 1=on.
Then somewhere in the post bit:
$sql = "SELECT PostConfirm FROM Config";
$result = mysql_query($sql);
$field = mysql_fetch_array($result ...
Add new field into the config database called PostConfirm or something, 0=off 1=on.
Then somewhere in the post bit:
$sql = "SELECT PostConfirm FROM Config";
$result = mysql_query($sql);
$field = mysql_fetch_array($result ...
- Wed Feb 08, 2006 5:38 pm
- Forum: [3.0/Olympus] Discussion
- Topic: Why does phpBB use a posting confirmation page?
- Replies: 44
- Views: 39288
Re: Why does phpBB use a posting confirmation page?
I was wondering if in this new version the confirmation page after posting that takes you back to your thread would still be there.
Why does phpBB use this page before going back to the thread? Is it not possible to see your own message as soon as you press post?
I've always wondered ...
- Wed Feb 08, 2006 5:36 pm
- Forum: [3.0/Olympus] Discussion
- Topic: Find Threads started by user
- Replies: 7
- Views: 7833
Re: Find Threads started by user
Will have phpBB3, "Find threads started by user" in profile and search.php ??? seem to be vBulletin
As said above search by author name, although that gives thread that the user has posted in. I have also checked on this forum and it doesn't have an option to find threads that the user has ...
- Wed Feb 08, 2006 5:34 pm
- Forum: [3.0/Olympus] Discussion
- Topic: Why?
- Replies: 8
- Views: 7893
Re: Why?
Who knows?franzemil wrote: Why have I kept coming back here for three years?
Pete told me to. =)
Why not
- Wed Feb 08, 2006 5:34 pm
- Forum: Chit Chat
- Topic: Good way to learn php?
- Replies: 17
- Views: 19017
Re: Good way to learn php?
I figured I needed to improve my php skills a little, so I'm gonna make something like phpnuke. I have no idea what I'm up against, but I'll try anyway. 8)
Good/bad idea?
I learnt mostly from php.net, also from examples and I did one tutorial for MySQL which is now useless because the coding ...
- Wed Feb 08, 2006 5:31 pm
- Forum: [3.0/Olympus] New features discussion
- Topic: Quick reply like vB
- Replies: 7
- Views: 11783
Quick reply like vB
Hi,
Maybe you could add a quick reply like vB 3.5.3 uses, the one that doesn't refresh the page at all when posting. It's very nice and quick.
Craig.
Maybe you could add a quick reply like vB 3.5.3 uses, the one that doesn't refresh the page at all when posting. It's very nice and quick.
Craig.
- Wed Feb 08, 2006 5:31 pm
- Forum: Chit Chat
- Topic: What OS do you use?
- Replies: 149
- Views: 142015
Re: What OS do you use?
Windows, Ubuntu on my server.justins wrote: What Operating System are you guys using?
I'm currently running Windows, but I'm gearing up to use Kubuntu.