You are not logged in. Please login or register.
Active topics Unanswered topics
Search options (Page 17 of 18)
sirena wrote:The only reason I'd consider removing the copyright and/or 'Powered by punBB' is for 'security by obscurity' reasons.
Browsing the HTML source a little would reveal the bb system your run, just don't show the version number on your forums footer and keep your board always up to date.
I'm not sure what might be the cause but have you updated the base url of the forum in the administration options with the new IP?
because Home is not in the common.php language file
Do this:
$links[] = '<li id="navindex"><a href="index.php">Home</a>';
I like the layout but I find the red too bright
Very nice looking, thumbs up.
Go in his/her profile then click Administration (in the left vertical menu) and change his/her user group to moderator.
Don't you forget to flag the forums you want him to moderate.
Nothing, I just assumed, if he doesn't keep any shame on him.
I assume he did the changes manually so he didn't bother to download the new version from the website, therefore his update.php script was actually outdated, probably to 1.2.10.
tassoman wrote:Wouldn't be almost done upgrading option in mysql database, by phpmyadmin? o_O?
That too if you feel more comfortable with PHPmyAdmin.
Smartys wrote:What are you talking about?
Download a copy of PunBB, look in the extras folder, there's a 12_to_1211_update.php file. Upload it to your forum directory, run it, delete it
You lazy
If you take a look at the Show Off forum you'll find many community members who replaced the topic indicators with images, just browse some.
tassoman wrote:How to roll up version from 1.2.10 to 1.2.11 for guyz who edited by hand?
Go to the extras folder in the zip archieve, get the x_to_y_update.php.
Edit line 31 and add '1.2.10' to the array
Edit line 32 and replace with $update_to = '1.2.11';
Upload, run and then remove the script.
elbekko wrote:He's right though. If you do integration and you put a file into another folder, none of the links work
Bless you elbekko, you found the words I missed.
Powered by PunBB.org and PunRes.org (assuming that you got the mods from it)?
Not really a feature request, just a syntax change.
I ask if it's possible for Rickard to add the PUN_ROOT string before of every link
like this:
$links[] = '<li id="navuserlist"><a href="'.PUN_ROOT.'userlist.php">'.$lang_common['User list'].'</a>';
Purpose of this is making easier for modders to include new pages changing PUN_ROOT.
PUN_ROOT should be added to all the links into functions.php and in the stylesheet link syntax in the header.php and the functions.php, like this:
<link rel="stylesheet" type="text/css" href="<?php echo PUN_ROOT; ?>style/<?php echo $pun_user['style'].'.css' ?>" />
I know I've been messy, I hope you got it.
Thanks in advance.
Since Guests posts are not counted try this
$rank_pips = "";
if($cur_post['num_posts'] > 1000) { $num_pips = 10; }
elseif($cur_post['num_posts'] > 600) { $num_pips = 9; }
elseif($cur_post['num_posts'] > 450) { $num_pips = 8; }
elseif($cur_post['num_posts'] > 300) { $num_pips = 7; }
elseif($cur_post['num_posts'] > 225) { $num_pips = 6; }
elseif($cur_post['num_posts'] > 150) { $num_pips = 5; }
elseif($cur_post['num_posts'] > 100) { $num_pips = 4; }
elseif($cur_post['num_posts'] > 65) { $num_pips = 3; }
elseif($cur_post['num_posts'] > 25) { $num_pips = 2; }
elseif($cur_post['num_posts'] > 0) { $num_pips = 1; }
Hard to tell without some piece of code, where did you add the stars?
Anyhow you probably have to exclude users that have id 1.
You can always download the package from this site.
dirkx wrote:Where can I find the script?
In the zip package.
I absolutely have no idea why those comments return an error, try removing them, if you need them try <?php //comment ?>
ameenullah wrote:if the problem is with header, then i should get error in all the pages know. But I am getting this error in few pages only.. and the space in the Header is ok. Coz i removed the image below that. If not i have to upload the image and all...
Post the code of a page with the problem and one without the problem
ameenullah wrote:Regarding Meta Tags, we usually use META in html pages. i think it ll not affect the page / code.
Do you think that, it will have some impact on the code?
No it will only make the page not HTML valid.
I think the issue is the <br style="line-height:56px "> in your header, it's some space.
No you don't have to change the Doctype, you used HTML 4.01 I used XHTML 1.1, they are simply different.
EDIT: On a second look you mixed up HTML and XHTML, if you want to go for HTML you have to remove the /> from your Meta tags, replacing it with a simple >.
Otherwise if you want to go for XHTML change the doctype, turn the meta tags to lower case (from META to meta) and close the <br> tag (to br />).
I always go like this
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html dir="ltr">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="en-us" />
<meta name="author" content="" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<style type="text/css">
</style>
</head>
<body>
<?php if(!isset($page)){include "home.php";}else{include "$page.php";}?>
</body>
</html>
Your links must look like
<a href="index.php?page=aboutme">About Me</a>
And the "About Me" page should be aboutme.php
The URL would look like http://./index.php?page=aboutme
if page is not set it automatically included home.php (you can change to wheter you like as long as you change the PHP syntax).
This creates no blank spaces.
Posts found: 401 to 425 of 440