cool thx. that one now worked...
1,177 2009-03-17 12:18
Re: [Extension] Login Boxes On Frontpage (Login_Frontpage) (16 replies, posted in PunBB 1.3 extensions)
And since it only works on 1.3.2 i can't use it anyway.
The warning doesn't mean you can't use it. It just means it was tested on 1.3.2. It will most likely work on 1.3.0 and 1.3.1.
1,178 2009-03-17 12:11
Re: Social Bookmarking Buttons (33 replies, posted in PunBB 1.3 extensions)
Left out the PHP and just linked to extensions/social_bookmarking/img/imagename.png and uploaded the images.
Just downloaded it again. It seems you still have the version with old links in it. (no folder img, etc)
Thanks.
1,179 2009-03-16 13:58
Re: Social Bookmarking Buttons (33 replies, posted in PunBB 1.3 extensions)
very good idea....
would be nice if you put the images in a folder "img" inside the extension though and then called them with code "'.$ext_info['url'].'/img/imagename.png"
thanks!
1,180 2009-03-16 13:52
Re: [Extension] Login Boxes On Frontpage (Login_Frontpage) (16 replies, posted in PunBB 1.3 extensions)
judging by that error it's your language files - related to the manage extensions improved ext... the problem lies in your languages files or that extension. my ext doesn't seem to be your problem....
and it was made for 1.3.2.... !
1,181 2009-03-15 11:38
Re: Basic Image Upload (20 replies, posted in PunBB 1.3 extensions)
I tried this. It shows the image I upload in a new window. But it's not in the post? And no way to reach it from the post?
Have you got a WORKING demo site you are using this extension on???
1,182 2009-03-11 23:46
Re: Basic Image Upload (20 replies, posted in PunBB 1.3 extensions)
I think the other image upload is better for my needs.
Simpler integration, more minimal design, doesn't use my hosting or bandwidth.
I would use this one (if it becomes an extension) as I prefer having stuff on my server as opposed to something beyond my control and potentially later with ads or going out of business. So I personally would very much welcome this extension if it gets made!
1,183 2009-03-09 10:17
Re: Language Directory (27 replies, posted in PunBB 1.3 additions)
great...
glad to have both soon then!
1,184 2009-03-08 16:44
Re: [Request] Disable post count for a particular forum (7 replies, posted in PunBB 1.3 extensions)
just installed , but couldn't find that it changed any settings... when I click on edit a forum it looks as usual - maybe i'm missing something? any screeshot of what it looks like in admin area?
this is that extensions code btw
<?xml version="1.0" encoding="UTF-8"?>
<extension engine="1.0">
<id>db_skip_post_counting</id>
<title>Skip Post Counting</title>
<version>1.1.0</version>
<description>Disable post count increments for users / forum totals on specific forums.</description>
<author>DollarBill (Greg)</author>
<minversion>1.3 Beta</minversion>
<maxtestedon>1.3 Beta</maxtestedon>
<install>
<![CDATA[
if (defined('EXT_CUR_VERSION')) {
if (EXT_CUR_VERSION == '1.0.0')
$forum_db->add_field('forums', 'skip_post_counting_t', 'tinyint(1)', false, 0, 'last_post');
}
else {
$forum_db->add_field('forums', 'skip_post_counting', 'tinyint(1)', false, 0, 'last_post');
$forum_db->add_field('forums', 'skip_post_counting_t', 'tinyint(1)', false, 0, 'last_post');
}
]]>
</install>
<uninstall>
<![CDATA[
$forum_db->drop_field('forums', 'skip_post_counting');
$forum_db->drop_field('forums', 'skip_post_counting_t');
]]>
</uninstall>
<hooks>
<hook id="po_qr_get_forum_info"><![CDATA[
$query['SELECT'] .= ', f.skip_post_counting';
]]></hook>
<hook id="po_qr_increment_num_posts"><![CDATA[
$query['WHERE'] .= ' AND '.$cur_posting['skip_post_counting'].'=0';
]]></hook>
<hook id="in_qr_get_post_stats"><![CDATA[
$query['WHERE'] = 'f.skip_post_counting_t=0';
]]></hook>
<hook id="afo_start"><![CDATA[
require $ext_info['path'].'/lang/'.$forum_user['language'].'.php';
]]></hook>
<hook id="afo_qr_get_forum_details"><![CDATA[
$query['SELECT'] .= ', f.skip_post_counting, f.skip_post_counting_t';
]]></hook>
<hook id="afo_edit_forum_details_end"><![CDATA[
?>
<fieldset class="frm-group">
<legend><span><?php echo $lang_skip_post_counting['Count posts user question'] ?></span></legend>
<div class="radbox frm-choice">
<label for="fld<?php echo ++$forum_page['fld_count'] ?>">
<input type="checkbox" id="fld<?php echo $forum_page['fld_count'] ?>" name="skip_post_counting" value="1"<?php if ($cur_forum['skip_post_counting']) echo ' checked="checked"';?> />
</label>
</div>
</fieldset>
<fieldset class="frm-group">
<legend><span><?php echo $lang_skip_post_counting['Count posts total question'] ?></span></legend>
<div class="radbox frm-choice">
<label for="fld<?php echo ++$forum_page['fld_count'] ?>">
<input type="checkbox" id="fld<?php echo $forum_page['fld_count'] ?>" name="skip_post_counting_t" value="1"<?php if ($cur_forum['skip_post_counting_t']) echo ' checked="checked"';?> />
</label>
</div>
</fieldset>
<?php
]]></hook>
<hook id="afo_save_forum_form_submitted"><![CDATA[
$skip_post_counting = (isset($_POST['skip_post_counting'])) ? 1 : 0;
$skip_post_counting_t = (isset($_POST['skip_post_counting_t'])) ? 1 : 0;
]]></hook>
<hook id="afo_qr_update_forum"><![CDATA[
$query['SET'] .= ', skip_post_counting='.$skip_post_counting.', skip_post_counting_t='.$skip_post_counting_t;
]]></hook>
</hooks>
</extension>
1,185 2009-03-07 10:03
Re: [Extension] Adding Images To Navlinks 1.2 (29 replies, posted in PunBB 1.3 extensions)
@Stormeh. thx for posting solution on the centering issue
@SuperMAG : you'll have to make an own version based on 1.2 as explained by Stormeh and myself (prior post) ... there isn't a version WITH it now....
cheers
1,186 2009-03-06 13:43
Re: [Extension] Adding Images To Navlinks 1.2 (29 replies, posted in PunBB 1.3 extensions)
ah ok - see what you mean
will look into it
regarding the center issue;
***********************
try changing these (original) lines to your needs which you find in 'yourstyle'.css
#brd-navlinks ul {
margin: 0;
padding: 0.5em 0;
float: left;
}
#brd-navlinks li {
display: inline;
margin-right: 1em;
}
#brd-navlinks li a {
font-size: 1.167em;
text-decoration: none;
}
regarding the 'supermag' question
****************************
one needs to add back
<span>'.$lang_common['Index'].'</span>
<span>'.$lang_common['Search'].'</span>
<span>'.$lang_common['Profile'].'</span>
<span>'.$lang_common['Admin'].'</span>
<span>'.$lang_common['Login'].'</span>
<span>'.$lang_common['Logout'].'</span>
<span>'.$lang_common['Userlist'].'</span>
to all the different places in manifest.xml
(.....).png"/>ABOVE RELEVANT LINE OF CODE</a></li>';
I believe... if you want to do that supermag....
1,187 2009-03-05 22:19
Re: [Extension] Adding Images To Navlinks 1.2 (29 replies, posted in PunBB 1.3 extensions)
Don't understand your question....
1,188 2009-03-05 17:56
Re: [Extension] Different Set Of Smilies 2.0 and 2.1 (13 replies, posted in PunBB 1.3 extensions)
I believe they're in the public domain so you needn't worry about it.
Cheers.
1,189 2009-03-03 21:44
Re: [release] Simple Image Upload (27 replies, posted in PunBB 1.3 extensions)
It's non profit. This site has no ads either. Is that a reason to distrust?! I trust Facebook and Google less, a lot less to be honest!
And if they want privacy and use servers all over the world, up to them no?
1,190 2009-03-03 21:23
Re: [release] Simple Image Upload (27 replies, posted in PunBB 1.3 extensions)
I can think of lots of reasons why a service like this (just like most image hosts) could be potentially useful to bad guys
lets hear an example then
1,191 2009-03-03 18:09
Re: [release] Simple Image Upload (27 replies, posted in PunBB 1.3 extensions)
@sirena: don't know where you are getting dominican russian stuff !?
i have New Jersey - Egg Harbor Township
and is active since 2005
a very well known site. see alexa etc
1,192 2009-03-03 12:06
Re: [release] Simple Image Upload (27 replies, posted in PunBB 1.3 extensions)
yeah easy to install and use extension.
thx.
demosite i'm using it on:
http://punbb-a.keydogbb.info/viewtopic.php?id=7
1,193 2009-03-01 11:52
Re: How to add Google Adsense to punbb version 1.3.2 (1 replies, posted in PunBB 1.3 additions)
http://punbb.informer.com/forums/topic/ … -solution/
as it's very individual how you want your site to look; if you don't want it in header post some screenshot dummies of what you'd like your website to look like WITH ads.
or
look at MAIN.tpl in include/ and try putting the google ad sense code in different places on a test board...
1,194 2009-03-01 11:46
Re: [Release] Easy Screenshot Dumpster 1.1 (8 replies, posted in PunBB 1.3 additions)
Is there any HOWTO on how to create extension?
http://fluxbb.org/wiki/v1.3:developing_extensions
check that out
1,195 2009-02-27 15:59
Re: PunBB 2.1.19 (3 replies, posted in Discussions)
http://punbb.informer.com/forums/topic/ … unbb-1219/
can only be 1.2.19 - typo?
there is no 2.x.x
screenshot of that version number and of admin would be good...
1,196 2009-02-27 15:53
Re: new install (12 replies, posted in PunBB 1.3 troubleshooting)
So i got that to work along with the style, only now i get about 23 errors.
you're using a mix of files now? some 1.3 and some 1.2 thai? or what? you can NOT do that
the style you're using is obviously not 1.3 so use a default style and see if you get errors with the languages mix you've installed... if you do: you need to properly translate the "frontend" thai files based on the files of 1.3.
style: upload the style to rapidshare or somewhere and post link here
that way anyone can help who has time for it
I assume you will need to remake the 1.2 style or have someone do it for you.
1,197 2009-02-27 12:03
Re: new install (12 replies, posted in PunBB 1.3 troubleshooting)
translating is easy part:
all you need to do is
replace the right hand columns english text in those 29 language 1.3.* files on the above mentioned page with the THAI words/phrases,
then save them as .php
maybe download a trial version of phpdesigner if you don't want to do it in text editors
or let your wife just translate in word or text and then you copy it to phpdesigner or similiar...
will take some time. but sure it will be appreciated....
*****
on your other issue:
where did you download the style? link?
1,198 2009-02-27 09:22
Re: new install (12 replies, posted in PunBB 1.3 troubleshooting)
I've never seen THAI 1.3 language till now.
Check if you have these 29 files gib : http://keydogbb.info/viewforum.php?id=11
Chances are good you're trying with 1.2 I think.
But maybe you could translate for 1.3 ?
1,199 2009-02-25 20:01
Re: [Extension] Adding Images To Navlinks 1.2 (29 replies, posted in PunBB 1.3 extensions)
HOVER EFFECT ADDED 25-02-2009:
Navlinks 1.5
see here