Hi! Is it possible to set a test theme for a specific topic? I need to test some functionality (crawlers reach snippets) but i don't want to risk to change the theme of entire forum... I've search in code, where user settings are taken from database, but eventually i gave up.. it's a little to compl...
I have "pretty" URL's and searching for a proper "smooth" migrate, with permanent moved redirects (301 if i recall)...
I got something, but if you know a discussion topic on this... please give me the link.
I have a question... and i didn't find any answer on this forum/topic... Why google highlight (bold) keywords in URL's if it's not relevant for SEO? I always liked to edit topic first post to change the URL, to have relevant keywords. Is there another topic where users talk about advantages of 3.1.x...
generate_text_for_display() i think is used when accessing topic/post, so there is no reason not to display quotes parsed... I think there is a problem with generate_text_for_storage(), when storing message not parsing like other bbcodes :roll: I don't know... Perhaps what jsebean said could work......
I want to add manually users in database. I tried using add_user function, from phpbb3 library but it's not working: define('IN_PHPBB', true); $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.' . ...
It is checking username_clean for the searched name. Did you use utf8_clean_string() when you filled the username_clean field? That should be lowercase and clean of strang characters. Hi Brf! I used utf8_clean_string(), but the result is not clean of strang characters. For instance a nickname like ...
Hi, i'm trying to add some posts to database ("posts" table), executing a script (SQL INSERT statements). All field like poster_id, topic_id, forum_id and so on, are with correct values. The problem is that posts is not stored with bbcodes parsed. The post is displayed with bbcodes tags, n...
Ok, i managed to figure out how... $myBfHtml = $myBfResult[$myBF]->post_text; if ($myBfResult[$myBF]->bbcode_bitfield) { $bbcode->bbcode_second_pass($myBfHtml, $myBfResult[$myBF]->bbcode_uid, $myBfResult[$myBF]->bbcode_bitfield); } $myBfHtml = bbcode_nl2br($myBfHtml); It's working. Sorry for my bad ...