You are not logged in. Please login or register.
Active topics Unanswered topics
Search options (Page 25 of 71)
ayman, the main.tpl file is what you want to work on.... that is where the css template code will go and effect the look and feel of the forum
example:
http://hsv-netcom.com i took a css template and wraped punbb inside of it..
a complete wrap with punbb css example:
http://modelcrowd.com
Q
for some reason he couldnt get it going even with there help. so ask them to switch his account to a linux server and within a few mins punbb running smooothly... might be there guru he was on the phone with reading from a book.. called godaddy support for dummy's!
Q
if she got a windows host service... then she needs to change over to a linux server... alot of issue with windows based servers running.. mysql ....
good friend had to change over to linux he got a hosting account with godaddy...
Q
mrskrabitz wrote:Trying to install PunBB, and keep getting this error:
An error occured on line 58 in file d:\hosting\lauralynn\forums\include\dblayer\mysql.php.
PunBB reported: Unable to connect to MySQL server. MySQL reported: Client does not support authentication protocol requested by server; consider upgrading MySQL client
I have created the MySQL database...
Please advise... thanks a bundle!!
Susan
d:\hosting? that sound like it is on your machine instead of on godaddy server?
d:\hosting\lauralynn\forums\include\dblayer\mysql.php.
Q
what i did was make a quick video(sorry no audio) about it.
this is my rules page for my website.
http://modelcrowd.com/misc.php?action=rules
take your rule doc.
i use dreamweaver to create this there are several free programs that will do the same.
copy the word doc open DW go to design mode paste content.
then next go to code view.
copy everything between <body> but dont copy the body part. from the first <p> to the last </p>
go to admin-options rules box and paste your code there.
here is the video..
http://modelcrowd.com/123.wmv
i hope this help!
send me an email if you cant get this to work...
Q
eric, when you get a chance to holla at me on yim...
Q
StevenBullen wrote:quaker wrote:what happen when you are not logged in. and you click the button?
I guess...
"And when I follow that link, to take me to the <Log in> pannel, and after I logg in... to be redirected to the place where I pushed <reply> or <new post> and not to the index page."
what the bossman said!
hehe!
Q
so let me see if i get this right. you want a reply or new post by the thread in the forum.php?
login or not. what happen when you are not logged in. and you click the button?
Q
smarty, he is running mega pun mod.
go to the main.tpl and remove it...
Q
im working on the image title... it is not pbb_gallery but my own....hehe...
so bare with me!
Q
ok peps.... here is how to get the punbb and wordpress to share the same theme..
this is the main.tpl inside the include/template folder.
please make a backup copy of your main.tpl before doing anything... rename it to main1.tpl
first we need to work on the looks and feel before we integrate the db....
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html dir="<pun_content_direction>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<pun_char_encoding>" />
<pun_head>
<!-- Wordpress Template CSS -->
<link rel="stylesheet" type="text/css" media="screen" href="your wordpress css link/style.css" />
<link rel="stylesheet" type="text/css" media="screen" href="http://www.almosteffortless.com/wp/wp-content/themes/k2/styles/sample.css" />
<style type="text/css">
#brdtitle { display: none; }
#brdmenu { padding-top: 0; }
#punwrap { padding: 0; padding-top: 10px; margin: 0; width: 760px; }
DIV.box {BORDER-COLOR: #3388CC; }
.pun H2, #brdmenu {BACKGROUND-COLOR: #3388CC; COLOR: #FFF; }
DIV.blockpost H2 {BACKGROUND-COLOR: #3388CC; }
#punwrap * { font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif; }
DIV.blockpost DIV.box {BORDER-COLOR: #3388CC; }
.pun { font-size: 11px !important; }
</style>
<!-- Wordpress Template CSS -->
<!-- Mint -->
<!-- <script src='/mint/mint.js.php' type='text/javascript' language='javascript'></script> -->
<!-- Mint -->
</head>
<body>
<!-- Wordpress Template Header -->
put ur template header here
<!-- Wordpress Template Header -->
<div id="punwrap">
<div id="pun<pun_page>" class="pun">
<div id="brdheader" class="block">
<div class="box">
<div id="brdtitle" class="inbox">
<pun_title>
<pun_desc>
</div>
<pun_navlinks>
<pun_status>
</div>
</div>
<pun_announcement>
<pun_main>
<pun_footer>
<!-- Wordpress Template Footer -->
put your wordpress footer here!
<!-- Wordpress Template Footer -->
</div>
</div>
</body>
</html>
eric you ranged? wp and punbb... evil grins....
pc of cake.....
Q
I have started working on the New ModelCrowd.com site. I have added some new functions and Im working on a new gallery script that im integrating into punbb.
i have create some new blocks with images for background and such.
http://modelcrowd.com
click on thumbnail to see a larger size!
Q
thanks people i went threw the php.net site and fount what i need to do....
all this coding..hahaha...
Q
when i add the portal.tpl to my members.php script i get this error!
Fatal error: Cannot redeclare showrecent() (previously declared in /homepages/40/d174088604/htdocs/model/include/user/test5.php:8) in /homepages/40/d174088604/htdocs/model/include/user/test5.php on line 8
http://modelcrowd.com/members.php
this is my test5.php code!
it is a truncate latest topics
<div class="block">
<h2 class="block2"><span>News Topics</span></h2>
<div class="box" style="background-image:url(../../img/ifeeldirty/bloque2.gif);padding: 3px 18px 5px 16px;">
<?php
showRecent(10); // Set amount of posts to be displayed here
function showRecent($show=5) {
global $lang_common, $db, $pun_config, $db_prefix;
$order_by = 't.last_post';
$forum_sql = '';
//$show = isset($_GET['show']) ? intval($_GET['show']) : 5;
//if ($show < 1 || $show > 50) $show = 5;
$trunc_len = 20; // Set amount of text to be displayed in subject.
// Fetch $show topics
$result = $db->query('SELECT t.id, t.poster, t.subject, t.posted, t.last_post FROM '.$db->prefix.'topics AS t INNER JOIN '.$db->prefix.'forums AS f ON f.id=t.forum_id LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id=3) WHERE (fp.read_forum IS NULL OR fp.read_forum=1) AND t.moved_to IS NULL'.$forum_sql.' ORDER BY '.$order_by.' DESC LIMIT '.$show) or error('Unable to fetch topic list', __FILE__, __LINE__, $db->error());
while ($cur_topic = $db->fetch_assoc($result)) {
if ($pun_config['o_censoring'] == '1')
$cur_topic['subject'] = censor_words($cur_topic['subject']);
$subject_truncated = pun_htmlspecialchars($cur_topic['subject']);
echo '<li>»'.'<a href="'.$pun_config['o_base_url'].'/viewtopic.php?id='.$cur_topic['id'].'&action=new" title="'.pun_htmlspecialchars($cur_topic['subject']).'">'.substr($cur_topic['subject'], 0, $trunc_len).'</a>...'."\n";
}
echo '</li>';
return;
}
?>
</div>
</div>
this is how i got it posted
Posted: 2007-08-08 17:26:35 by: quaker
| Read More | Views: 21 | Replies: 0
how can i change it to ?
Posted: 2007/08/08 3:26:35 by: quaker
| Read More | Views: 21 | Replies: 0
Q
look in the functions.php file and you will find the links there.
if you want a single bar image then go to the _css or cs file and look for #brdmenu. example:
http://modelcrowd.com look at the nav bar.
Q
oh ok...
ill try to work on the mod for you tomorrow..
im thinking of going hiking take some photos...
Q
the news feeder pulls the last 10 topics and only displays there subject in a block.
Q
nick, i really like the site. i played with all 3 of the scripts. wp cpg and punbb. cpg got a bridge for punbb and wordpress got a mod for punbb . so i did it with just using that.
but i got tired of the three and set out to do my own stuff... im a punbb nut so i use punbb.....
http://modelcrowd.com my own gallery script and punbb now to do a blog system
keep the hard work up!
Q
how to display the truncate on the forum page. if u look at the main.tpl u can place a <pun_include'file.php"> and it will display the file there.
that index mod that i made is a stand alone page. I will have to create a mod for that to be displayed on any page.
Q
punres has a lot of mod that you have to install your self like a calendar and a mini calendar on the front page.
if u want to remove something from the forum look at the main.tpl in the folder include/template.
not sure on the login issue do u got a link so that i might be able to help you better?
Q
can u help me i see you released an update and now im looking at the editor.js file and how do i remove html and php from it again?
what line do i need to take out?
Q
yo dude, check out http://punres.org all the answer will be there.. look at the wiki.... on punres.org..
Q
Posts found: 601 to 625 of 1,758