vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Add-On Releases - CES Site News (https://vborg.vbsupport.ru/showthread.php?t=137365)

Chadi 05-08-2008 11:58 PM

I ended up upgrading to 3.7.0 VB today and re-uploaded the CES files.

IE shows page not found/error, while FF shows loop error

The logs:

- - [08/May/2008:19:59:20 -0500] "GET /shownews.php?t=20961 HTTP/1.1" 301 - "http://www.talkjesus.com/" "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9b5) G

I still get a blank page now when going directly to the "blog" forum.

thincom2000 05-09-2008 04:52 AM

I would expect that the infinite redirect is probably a conflict with vbSEO. The two products must be fighting over who gets to change the thread URL... vbSEO is a paid-on, so I cannot offer support for this issue.

I would recommend making sure that any vbSEO showthread_start or forumdisplay_start plugins, if it has any, have an Execution Order HIGHER than 5. If this doesn't help, I would need admin access to see what your setup is like.

thincom2000 05-13-2008 02:31 AM

Recently found a bug where sometimes the AJAX Quick Edit on newsdisplay uses the shownews postbit and vice verse. Fixed in demo.

thincom2000 05-15-2008 05:01 PM

Found a few other bugs recently. Mainly that since adding support for news.php aliases, the preview, previewlength, and more BB-Codes stopped functioning properly.

@chadi, I suspect the solution to the BB-Code issue may also solve your vbSEO issue. Try out the new patch and let me know.

tpearl5 05-19-2008 07:23 PM

This is a great idea. I wish there was a way to mark any thread from any forum as 'news' and then have it display a list of those 'news' threads. That was really what I was looking for.

Sworm 08-31-2008 04:25 PM

Hi all,
i have a problem in the CES Last Thread Title Maximum Displayed Characters.
Ive forget to modify the XML file
Code:

<thead>
        <tr align="center">
          <td class="thead">&nbsp;</td>
          <td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
          <td class="thead" width="175" nowrap="nowrap">$vbphrase[last_post]</td>
          <td class="thead">$vbphrase[threads]</td>
          <td class="thead">$vbphrase[posts]</td>
          <if condition="$vboptions[showmoderatorcolumn]">
          <td class="thead">$vbphrase[moderator]</td>
          </if>
        </tr>
</thead>

replacig with this (like the rests of all my forums):

Code:

    <tr align="center">
      <td class="thead">&nbsp;</td>
      <td class="thead" width="70%" align="$stylevar[left]">$vbphrase[forum]</td>
      <td class="thead" width="20%">$vbphrase[last_post]</td>
      <td class="thead" width="5%">$vbphrase[threads]</td>
      <td class="thead" width="5%">$vbphrase[posts]</td>
      <if condition="$vboptions['showmoderatorcolumn']">
      <td class="thead" width="0%">$vbphrase[moderator]</td>
      </if>
    </tr>

Without this replacement in the forum home, the space on the title of post is to small of the others forum, and is not great to look.

Can i reupload the XML without lost the articles that i have already added?
Or i will lost all the articles?

Can i reupload in the plugin system with the "yes" check?

AnyOne can help me?

Sorry for my bad english.

thincom2000 09-01-2008 12:43 AM

You can edit the template in vBulletin's Style Manager. I'm sure there's a tutorial on this somewhere, but you don't need to be editing any XML files for something like this.

Sworm 09-01-2008 03:13 PM

Quote:

Originally Posted by thincom2000 (Post 1611600)
You can edit the template in vBulletin's Style Manager. I'm sure there's a tutorial on this somewhere, but you don't need to be editing any XML files for something like this.


Thanks for the reply thincom, i have alreadu edit my vb teplate for all others forum, only the ces forum is not alineated with the others....
Can you explain me how can i do without edit the xml?

thincom2000 09-01-2008 05:27 PM

The name of the template is ces_newsdisplay

Sworm 09-01-2008 08:17 PM

Quote:

Originally Posted by thincom2000 (Post 1612171)
The name of the template is ces_newsdisplay

TX i will try to do this.

Sworm 10-02-2008 04:37 PM

Quote:

Originally Posted by thincom2000 (Post 1612171)
The name of the template is ces_newsdisplay


Changing the impostations from "ces_newsdisplay"
in:
Code:

    <tr align="center">
      <td class="thead">&nbsp;</td>
      <td class="thead" width="70%" align="$stylevar[left]">$vbphrase[forum]</td>
      <td class="thead" width="20%">$vbphrase[last_post]</td>
      <td class="thead" width="5%">$vbphrase[threads]</td>
      <td class="thead" width="5%">$vbphrase[posts]</td>
      <if condition="$vboptions['showmoderatorcolumn']">
      <td class="thead" width="0%">$vbphrase[moderator]</td>
      </if>
    </tr>

like all others forum, don't work again :(

There's any other impostation/template to change?

Sworm 10-02-2008 04:46 PM

Quote:

Originally Posted by chadi (Post 1512151)
Thanks, but still one more issue :x

When I submit a new news post, it redirects me to the home page (yet successfully posting the new thread). However, when your on the home page or inside the CES News area and click on the post title, it redirects back to the home page again.

VBSEO related or not? Thanks again.

I have solved this problem changing in my shownews.php script :

In shownews.php search:
Code:

  define('THIS_SCRIPT', 'showthread');
and replace with:

Code:

define('THIS_SCRIPT', 'showthread2');
Is it a Seo + Ces News conflict, VbSeo assumes that this is showthread page and redirects it to corresponding SEOed URL.

After this, i have added in my SeoCp Custom Rewrite Rule (CRR) the ces news pages that now are showed in html , and all work proprely for now :)

thincom2000 10-02-2008 05:58 PM

I'm a bit unsure what the problem is that you're having with the news version of forum display. Can you explain this again and provide a link to your news forum?

thincom2000 06-22-2009 09:34 PM

For everyone's information, this is an integral part of our site. Unless blogs have quite an overhaul when vBulletin 4 goes gold, expect an updated version of this.

thincom2000 01-14-2010 04:34 PM

In case no one has realized this yet, I've discontinued development on this mod with the release of vB4 Publishing Suite. The CMS has been an acceptable replacement on our site, so we have no need to continue this. As a result, neither I nor anyone from my sites will be able to support any issues users who install this may have.


All times are GMT. The time now is 01:05 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01362 seconds
  • Memory Usage 1,760KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (15)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete