Thanks Rickard! *gulp!* Works like a charm now baby!
1 2004-04-23 22:27
Re: punBB doesn't show updated Forums (8 replies, posted in PunBB 1.2 troubleshooting)
2 2004-04-23 15:54
Re: punBB doesn't show updated Forums (8 replies, posted in PunBB 1.2 troubleshooting)
Rickard, you're admin. Thanks so much for taking the time to help me. And by the way I am VERY impressed at what you are doing at your age. You'll be running places like Sun Microsystems by the time you're 30
3 2004-04-22 22:55
Re: punBB doesn't show updated Forums (8 replies, posted in PunBB 1.2 troubleshooting)
So what you're telling me is that if you navigate to admin_forums.php, you see a list of forums you've created, but if you look at index.php, you see a different list or just the default forum?
That is what I am saying! I see a list of forums I've created in admin_forums.php and the default forum in index.php. For some unknown reason index.php is not updating... hopefully it's not something that I did!
4 2004-04-22 19:18
Re: punBB doesn't show updated Forums (8 replies, posted in PunBB 1.2 troubleshooting)
No it is not a caching issue. I have refreshed and it does not help. Just so you know everything I am doing:
I am iframing punBB... here is my temporary url... select "Forum"
http://colemans.homeip.net/christiantrailrider
config.php looks like this:
<?php
$db_type = 'mysql';
$db_host = 'localhost';
$db_name = '******';
$db_username = '******';
$db_password = '******';
$db_prefix = 'punbb_';
$p_connect = true;
$cookie_name = 'punbb_cookie';
$cookie_domain = '';
$cookie_path = '/';
$cookie_secure = 0;
$language = 'en';
define('PUN', 1);
?>
In forum/admin_options.php I have entered the following for "Base URL":
I go into MySQL and all my modifications are there. HELP!
5 2004-04-22 18:47
Topic: punBB doesn't show updated Forums (8 replies, posted in PunBB 1.2 troubleshooting)
My database, MySQL, has been updated with the correct forum names via the punBB Admin pages... but when I navigate to the main page, index.php, it shows no updates at all. I still have the default forum called "Forum"
6 2004-04-22 18:31
Re: Horizontal Scroll when forum is in frame (1 replies, posted in PunBB 1.2 troubleshooting)
Here is what I used to iframe punBB. It works great to eliminated the horizontal scroll bar and resize vertically automatically.
<script language="JavaScript">
function iFrameHeight() {
if(document.getElementById && !(document.all)) {
h = document.getElementById('iframename').contentDocument.body.scrollHeight;
document.getElementById('iframename').style.height = h;
}
else if(document.all) {
h = document.frames('iframename').document.body.scrollHeight;
document.all.iframename.style.height = h;
}
}
</script>
<iframe onLoad="iFrameHeight();" src="forum/index.php" scrolling="no"
scroll="auto" id="iframename" marginwidth="0" marginheight="0"
frameborder="0" style="width:100%;" height=600></iframe>
7 2004-04-16 19:17
Re: 1.1.2 - install.php (8 replies, posted in PunBB 1.2 bug reports)
Hmmm... I still choose a password field. It's just more secure and leaves less liabilty on the administrator's shoulders if you know what I mean?!
8 2004-04-16 17:05
Re: How to verify username/password against punBB (3 replies, posted in General discussion)
I'm going to try this for the MySQL version...