1,176

(33 replies, posted in PunBB 1.3 extensions)

cool thx. that one now worked...

teva wrote:

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

(33 replies, posted in PunBB 1.3 extensions)

AdsBB wrote:

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

(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!

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

(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

(20 replies, posted in PunBB 1.3 extensions)

esupergood wrote:

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

(27 replies, posted in PunBB 1.3 additions)

great...
glad to have both soon then!

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>

@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

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....

Don't understand your question....

I believe they're in the public domain so you needn't worry about it.
Cheers.

1,189

(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

(27 replies, posted in PunBB 1.3 extensions)

sirena wrote:

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 smile

1,191

(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

(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

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...

CrustyDOD wrote:

Is there any HOWTO on how to create extension?

http://fluxbb.org/wiki/v1.3:developing_extensions

check that out

1,195

(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

(12 replies, posted in PunBB 1.3 troubleshooting)

gibsongk55 wrote:

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

(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

(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 ? big_smile

HOVER EFFECT ADDED 25-02-2009:
Navlinks 1.5
see here

http://keydogbb.info/img/navlinks.jpg

good work. added to

http://keydogbb.info/img/menu_solution.gif THE DIRECTORY http://keydogbb.info/img/menu_solution.gif


http://www.keydogbb.info/img/new_images/accept.png       http://www.keydogbb.info/img/flag/kurdistan.gif Kurdish by hamdpire    http://www.keydogbb.info/img/new_images/Download.pnghere (Original DL location) or here (Rapidshare)