@ethan42411

Great  wink ! Now, i don't lost my SEO coz redirect to login

2

(11 replies, posted in Supported extensions)

ups wrong url for linkedin

i'm trying to modified like this

$fancy_profile_fields_linkedin_url = (strpos($user['linkedin'], 'http') === 0) ? forum_htmlencode($user['linkedin']) : forum_htmlencode('https://id.linkedin.com/in/'.$user['linkedin']);
$forum_page['user_contact']['linkedin'] = '<li><span>'.$fancy_profile_fields['Linkedin'].': <a href="'.$fancy_profile_fields_linkedin_url.'" class="external url" rel="linkedin">'.$fancy_profile_fields_linkedin_url.'</a></span></li>';

still doesn't work  neutral

3

(0 replies, posted in PunBB show off)

My New Forum
http://www.idsysadmin.org/
PunBB still Rockz  cool

4

(11 replies, posted in Supported extensions)

and..
maybe version 0.5 have linkedin field  smile

5

(11 replies, posted in Supported extensions)

nice work  big_smile
thx

6

(28 replies, posted in Feature requests)

agree!
let's donate to buy punbb from informer

7

(32 replies, posted in PunBB 1.3 extensions)

can make for meta description too?  big_smile
SEO

8

(5 replies, posted in PunBB 1.3 additions)

how about this?

http://img707.imageshack.us/img707/261/fonang.png

i use all onion smiley
with simple array modification in punbb smiley extension

punbb rockz  big_smile

indonesian language:

wah ini om fadly yg mn y?
ad nyangkut feed dr omega
om hemstar7 toh

thx a lot  big_smile

thx it's works
http://forum.pinang.or.id/
wink

12

(9 replies, posted in PunBB 1.3 additions)

Faith Jaya wrote:

would you please share how you made the share and the retweet buttons in every post? I like it and would like to use it  smile

here http://punbb.informer.com/forums/topic/ … ost-share/

13

(9 replies, posted in PunBB 1.3 additions)

thx
it work's
http://forum.pinang.or.id/topic21-sejarah-fonang.html

14

(32 replies, posted in PunBB 1.3 extensions)

avatar default  smile

15

(3 replies, posted in PunBB 1.3 troubleshooting)

your modify the links
see your .htaccess

16

(1 replies, posted in PunBB 1.3 troubleshooting)

it's okay  wink

17

(41 replies, posted in PunBB 1.3 extensions)

KANekT wrote:

any extension of jQuery are you using?

yeah i use jquery from yonash
is it effect?

18

(41 replies, posted in PunBB 1.3 extensions)

i have install jquery
but Forum messages when i try to install

This extension cannot be installed unless "jquery" is installed and enabled

why?

i wanna try this one  lol
thx

20

(170 replies, posted in PunBB 1.3 extensions)

can i replace the bold text

http://pinang.or.id/forum/?forum

with another word?

21

(2 replies, posted in PunBB 1.3 discussion)

maybe u can use http://punbb.informer.com/forums/topic/ … hide-tags/  wink

22

(22 replies, posted in PunBB 1.3 extensions)

very interesting
thx a lot  big_smile

23

(11 replies, posted in PunBB 1.3 extensions)

thank you very much parpalak
it's fix  wink

24

(11 replies, posted in PunBB 1.3 extensions)

but it's still something problem

<?php
/**
 * Outputs the footer used by most forum pages.
 *
 * @copyright (C) 2008-2009 PunBB, partially based on code (C) 2008-2009 FluxBB.org
 * @license http://www.gnu.org/licenses/gpl.html GPL version 2 or higher
 * @package PunBB
 */


// Make sure no one attempts to run this script "directly"
if (!defined('FORUM'))
    exit;

// START SUBST - <!-- forum_about -->
ob_start();
($hook = get_hook('ft_about_output_start')) ? eval($hook) : null;

// Display the "Jump to" drop list
if ($forum_user['g_read_board'] == '1' && $forum_config['o_quickjump'] == '1')
{
    ($hook = get_hook('ft_about_pre_quickjump')) ? eval($hook) : null;

    // Load cached quickjump
    if (file_exists(FORUM_CACHE_DIR.'cache_quickjump_'.$forum_user['g_id'].'.php'))
        include FORUM_CACHE_DIR.'cache_quickjump_'.$forum_user['g_id'].'.php';

    if (!defined('FORUM_QJ_LOADED'))
    {
        if (!defined('FORUM_CACHE_FUNCTIONS_LOADED'))
            require FORUM_ROOT.'include/cache.php';

        generate_quickjump_cache($forum_user['g_id']);
        require FORUM_CACHE_DIR.'cache_quickjump_'.$forum_user['g_id'].'.php';
    }
}

($hook = get_hook('ft_about_pre_copyright')) ? eval($hook) : null;

?>
<script type="text/javascript" src="http://www.footerchat.com/chat/cons.js"></script>
<script type="text/javascript" >
    if (!$forum_user['is_guest'])
    echo '<script type="text/javascript">autoLogin("'.$forum_user['username'].'");</script>';
</script>

    <p id="copyright"><?php echo sprintf($lang_common['Powered by'], '<a href="http://punbb.informer.com/">PunBB</a>'.($forum_config['o_show_version'] == '1' ? ' '.$forum_config['o_cur_version'] : ''), '<a href="http://www.informer.com/">Informer Technologies, Inc</a>') ?></p>
<?php

($hook = get_hook('ft_about_end')) ? eval($hook) : null;

$tpl_temp = forum_trim(ob_get_contents());
$tpl_main = str_replace('<!-- forum_about -->', $tpl_temp, $tpl_main);
ob_end_clean();
// END SUBST - <!-- forum_about -->


// START SUBST - <!-- forum_debug -->
if (defined('FORUM_DEBUG') || defined('FORUM_SHOW_QUERIES'))
{
    ob_start();

    ($hook = get_hook('ft_debug_output_start')) ? eval($hook) : null;

    // Display debug info (if enabled/defined)
    if (defined('FORUM_DEBUG'))
    {
        // Calculate script generation time
        list($usec, $sec) = explode(' ', microtime());
        $time_diff = forum_number_format(((float)$usec + (float)$sec) - $forum_start, 3);
        echo '<p id="querytime">[ '.sprintf($lang_common['Querytime'], $time_diff, forum_number_format($forum_db->get_num_queries())).' ]</p>'."\n";
    }

    if (defined('FORUM_SHOW_QUERIES'))
        echo get_saved_queries();

    ($hook = get_hook('ft_debug_end')) ? eval($hook) : null;

    $tpl_temp = forum_trim(ob_get_contents());
    $tpl_main = str_replace('<!-- forum_debug -->', $tpl_temp, $tpl_main);
    ob_end_clean();
}
// END SUBST - <!-- forum_debug -->



// Last call!
($hook = get_hook('ft_end')) ? eval($hook) : null;

// End the transaction
$forum_db->end_transaction();

// Close the db connection (and free up any result data)
$forum_db->close();

// Spit out the page
exit($tpl_main);

see http://forum.pinang.or.id/

25

(11 replies, posted in PunBB 1.3 extensions)

thx, it's works  big_smile
yippie