The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#11
|
|||
|
|||
I need your help, please!!
|
#12
|
||||
|
||||
Do you have images turned off for guests? In my forum I can see the images as a guest when I tested this.
Maybe check the file edits again. |
#13
|
|||
|
|||
This for Guest :
This print screen for Register member : Please help me BirdOPrey5 --------------- Added [DATE]1318010552[/DATE] at [TIME]1318010552[/TIME] --------------- This is my index.php file content. Code:
// ******************************************************************************************** // display thread if ($do == 'thread') { if (!$vbulletin->options['archive_threadtype']) { // if we are not using the archive threadtype, invisibly redirect to the full thread view exec_header_redirect($vbulletin->options['bburl'] . "/showthread.php?" . $vbulletin->session->vars['sessionurl_js'] . "t=$threadinfo[threadid]"); } if ($vbulletin->options['wordwrap'] != 0) { $threadinfo['title'] = fetch_word_wrapped_string($threadinfo['title']); } $threadinfo['title'] = fetch_censored_text($threadinfo['title']); $output .= print_archive_navigation($foruminfo, $threadinfo); $output .= "<p class=\"largefont\">$vbphrase[view_full_version] : " . ($threadinfo['prefix_plain_html'] ? "$threadinfo[prefix_plain_html] " : '' ) . "<a href=\"" . $vbulletin->options['bburl'] . "/showthread.php?t=$threadinfo[threadid]\">$threadinfo[title]</a></p>\n<hr />\n"; if ($p == 0) { $p = 1; } $output .= print_archive_page_navigation($threadinfo['replycount'] + 1, $vbulletin->options['archive_postsperpage'], "t-$threadinfo[threadid]"); $posts = $db->query_read_slave(" SELECT post.postid, post.pagetext, IFNULL( user.username , post.username ) AS username, dateline FROM " . TABLE_PREFIX . "post AS post LEFT JOIN " . TABLE_PREFIX . "user AS user ON (user.userid = post.userid) WHERE threadid = $threadinfo[threadid] AND visible = 1 $globalignore ORDER BY dateline ASC LIMIT " . (($p - 1) * $vbulletin->options['archive_postsperpage']) . ',' . $vbulletin->options[archive_postsperpage] ); if ($pda AND false) { $output .= "<span id=\"posting\"><a href=\"?message=1\" rel=\"nofollow\">New Reply</a></span>"; } $i = 0; while ($post = $db->fetch_array($posts)) { $i++; $post['pagetext_simp'] = strip_bbcode($post['pagetext']); $post['postdate'] = vbdate($vbulletin->options['dateformat'], $post['dateline']); $post['posttime'] = vbdate($vbulletin->options['timeformat'], $post['dateline']); if ($vbulletin->options['wordwrap'] != 0) { $post['pagetext_simp'] = fetch_word_wrapped_string($post['pagetext_simp']); } $post['pagetext_simp'] = fetch_censored_text($post['pagetext_simp']); ($hook = vBulletinHook::fetch_hook('archive_thread_post')) ? eval($hook) : false; require_once(DIR . '/includes/class_bbcode.php'); $bbcode_parser =& new vB_BbCodeParser($GLOBALS['vbulletin'], fetch_tag_list(),true); $post['pagetext_simp'] = $bbcode_parser->parse($post['pagetext'] , $threadinfo['forumid'] , false); $output .= "\n<div class=\"post\"><div class=\"posttop\"><div class=\"username\">$post[username]</div><div class=\"date\">$post[postdate], $post[posttime]</div></div>"; $output .= "<div class=\"posttext\">" . nl2br(($post['pagetext_simp'])) . "</div></div><hr />\n\n"; } } |
#14
|
|||
|
|||
help me, please!!
|
#15
|
||||
|
||||
1st) You are not allowed to post entire files, it is a copyright violation. Only post the relevant part of the file.
2) Do not "QUOTE" it, if you post code use the [CODE] or [PHP] BB Code tags, not [QUOTE]. 3) You did not answer my question asked in post #12, can guests view posts and images in your normal forum because that is the only reason I can think it isn't working. You code changes look correct. ALSO- if you have any plugins you made trying to do this, or any plugins on the hook "archive_thread_post" - disable them. |
#16
|
|||
|
|||
1) You are not allowed to post entire files, it is a copyright violation. Only post the relevant part of the file.
# I'm so sorry for something stupid that I do. I promised not to repeat it again. Sorry!! The problem come from plugin in "archive_thread_post", after disable that plugin, guest can view photo Thank you so much BirdOPrey5 for help me. |
Благодарность от: | ||
BirdOPrey5 |
#17
|
||||
|
||||
Glad it is working...
You do not need to post everything in [code], only actual code. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|