vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Major Additions - TfSEO 2: the free vBulletin url rewrite (https://vborg.vbsupport.ru/showthread.php?t=173738)

superjeff 03-26-2008 02:48 PM

Quote:

Originally Posted by Mr.619 (Post 1475002)
"View First Unread" doesn't work.

I will try to fix it in the next relase.. :)

Dan 03-26-2008 06:20 PM

Nice one :)

[high]* Dan installs[/high]

superjeff 03-26-2008 07:46 PM

Thank you :)

futureye 03-27-2008 06:06 AM

I've test it
but my forum
seem to be slower than before
does it take time to work

superjeff 03-27-2008 11:54 AM

Quote:

Originally Posted by futureye (Post 1475655)
I've test it
but my forum
seem to be slower than before
does it take time to work

Add this to your config.php file:
PHP Code:

$ips = array('123.123.123.123');
$config['Misc']['debug'] = (in_array($_SERVER['REMOTE_ADDR'], $ips) ? true false); 

And replace 123.123.123.123 with your ip. Now you can see the loads time.

neverstop 03-27-2008 01:56 PM

EDIT: The below was my error, I did not fill out the base url admincp option.
================================================== ===

I am getting this error in firefox after updating to latest version:

Quote:

Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
My site is new so I have turned off 301 redirects (no need for it?) and the problem is gone.

Cheers

superjeff 03-27-2008 03:14 PM

I don't get this error with firefox in local or in my forum.. Does it work all with IE? And yes, you don't nedd it if the site is new (for be sure put a rotbot.txt file with showthread.php and forumdisplay.php :))

superjeff 03-27-2008 03:46 PM

And you can try to edit the plugin (name: "301 showthread" and "301 forum") and delete the part with the "isset" variable, is what i have add here in the last relase.

neverstop 03-27-2008 05:51 PM

Hello,

It was my error, after re-importing the product I did not fill out the "Base URL of your site" admincp option. Sorry about that! Product is working nicely.

Greets

superjeff 03-27-2008 05:55 PM

Perfect :)

neverstop 03-27-2008 09:50 PM

Hi,

I think there may be a problem with tags.php. There is no keywords in the url resulting in a 404 (IE www.domain.com/f2/-51)

superjeff 03-28-2008 08:59 AM

With tags.php you must do a manual edit of tags.php. View README

uvex 03-28-2008 09:42 AM

*installed*
Forumname in URL would be nice.

superjeff 03-28-2008 10:05 AM

Quote:

Originally Posted by uvex (Post 1476612)
*installed*
Forumname in URL would be nice.

I could think to improve it in the future in the plugin will popular.

UPDATED: Fixed 2 bugs (view CHANGELOG)

neverstop 03-28-2008 10:01 PM

I did the chnages for tags.php but I got a DB error. I changed the added code to:
Code:

if ($vbulletin->options['tfseo_attivo'] AND $vbulletin->options['tfseo_riscrivi'])
{
$tfseo = $db->query_first("
SELECT thread.title
FROM " . TABLE_PREFIX . "thread as thread
WHERE threadid = '$thread[threadid]'
");
$tf = implode($tfseo);
$tfseourl['thread'] = tfseo_url($tf);
$tfseo_pagina = $vbulletin->options['tfseo_pagina'];
}

Db error is gone and the urls are fixed.

Cheers

superjeff 03-29-2008 06:26 AM

Ok, good. Readme updated (for the next relase).

MedellinStyle 03-29-2008 02:38 PM

hey pal I had to deactivate the plugin!!! the beauty urls are gone because im using Inferno External 1.0 Externally feeds data from your forum to anything!

that is a way of comunicate the forums with non-vbulletin pages, and when activated it was sending errors and bad headers, and wordpress was ++++ed up. :S

shit!

superjeff 03-29-2008 02:57 PM

Soo incomplatible with "Inferno External".. i hope to fix it. To display rss with wp you can use the rss widget.. without problem.

superjeff 04-01-2008 03:04 PM

UPDATED: Fixed a lot of bugs, add the option for last post (with thread with multiple page) in homepage

superjeff 04-02-2008 10:28 AM

Little bug fixed: In the plugin "Add in showthread" do the edit marked in red:


Original: (don't work)
if ($vbulletin->options['tfseo_attivo'] AND $vbulletin->options['tfseo_riscrivi'])
{
$tfseourl['thread'] = tfseo_url($thread[threadtitle]);
$tfseo_pagina = $vbulletin->options['tfseo_pagina'];
if ($thread[totalpages] != 1)
{
$lastpage = $tfseo_pagina . $thread[totalpages] . ".html";
}
}
New: (Work!)
if ($vbulletin->options['tfseo_attivo'] AND $vbulletin->options['tfseo_riscrivi'])
{
$tfseourl['thread'] = tfseo_url($thread[threadtitle]);
$tfseo_pagina = $vbulletin->options['tfseo_pagina'];
if ($thread[totalpages] > 1)
{
$lastpage = $tfseo_pagina . $thread[totalpages] . ".html";
}
}

superjeff 04-04-2008 11:46 AM

UPDATED: Add a fist, basic support to vbAdvanced. It don't rewrite, for now, the news's urls.

GoTTi 04-06-2008 07:21 AM

no rewrite for members.php pages? :(

hrk 04-06-2008 09:28 AM

i could not setup the .htacess files.

This is my htaccess for the dev site.

AuthUserFile "/home/site/.htpasswds/public_html/forum/passwd"
AuthName "Forum Development"
AuthType Basic
require valid-user

where do i start adding it ?

looking forward.

superjeff 04-06-2008 02:30 PM

Quote:

Originally Posted by GoTTi (Post 1484149)
no rewrite for members.php pages? :(

No, and i don't think to rewrite in in the future.
Quote:

Originally Posted by hrk (Post 1484223)
i could not setup the .htacess files.

This is my htaccess for the dev site.

AuthUserFile "/home/site/.htpasswds/public_html/forum/passwd"
AuthName "Forum Development"
AuthType Basic
require valid-user

where do i start adding it ?

looking forward.

I think you can add it under. Or first, try.

hrk 04-06-2008 02:45 PM

Quote:

Originally Posted by superjeff (Post 1484410)
No, and i don't think to rewrite in in the future.


I think you can add it under. Or first, try.

thanks, ive tried.
maybe this wont work with htacess site protected site ?

Ipuck 04-06-2008 06:23 PM

Quote:

Originally Posted by GoTTi (Post 1484149)
no rewrite for members.php pages? :(

You can use the information in this article, it's very simple: https://vborg.vbsupport.ru/showthread.php?t=165986

hrk 04-07-2008 12:17 AM

Quote:

Originally Posted by Ipuck (Post 1484572)
You can use the information in this article, it's very simple: https://vborg.vbsupport.ru/showthread.php?t=165986

something is wrong with my .htaccess file or VB cannot accept a htacess locked site ?
:(

superjeff 04-07-2008 10:56 AM

Quote:

Originally Posted by hrk (Post 1484816)
something is wrong with my .htaccess file or VB cannot accept a htacess locked site ?
:(

Do you get a 500 server error? Or it simply don't rewrite the urls? It should work without problem..

hrk 04-07-2008 11:02 AM

Quote:

Originally Posted by superjeff (Post 1485118)
Do you get a 500 server error? Or it simply don't rewrite the urls? It should work without problem..

server error. :(

superjeff 04-07-2008 11:56 AM

Can you add it directly from httpd.conf?

hrk 04-07-2008 12:02 PM

Quote:

Originally Posted by superjeff (Post 1485159)
Can you add it directly from httpd.conf?

where and what is that ?

thanks

superjeff 04-07-2008 12:54 PM

You can edit it only if tou have a vps or more.. not with a shared hosting.

smooth-c 04-07-2008 12:55 PM

wow!

superjeff 04-07-2008 01:02 PM

Quote:

Originally Posted by smooth-c (Post 1485198)
wow!

:confused::D

hrk 04-07-2008 01:19 PM

Quote:

Originally Posted by superjeff (Post 1485197)
You can edit it only if tou have a vps or more.. not with a shared hosting.

Sorry Jeff i am on Shared hosting.
any other recomendations on this?

superjeff 04-07-2008 02:05 PM

Sorry but i have not idea of what could be the problem. Try to post your integral htaccess file.

hrk 04-07-2008 02:12 PM

AuthUserFile "/home/HRK/.htpasswds/public_html/forum/passwd"

AddHandler application/x-httpd-php5 .php

AuthType Basic
AuthName "Forum Development"
require valid-user
:)

superjeff 04-07-2008 02:39 PM

I have no idea of what could be... sorry
Try do comment (with # the line of "addhandler")

hrk 04-07-2008 02:54 PM

Quote:

Originally Posted by superjeff (Post 1485249)
I have no idea of what could be... sorry
Try do comment (with # the line of "addhandler")

that is for php5 compatibility . no issue on that.
thanks

superjeff 04-07-2008 03:27 PM

Try to use .htaccess to rewrite, and .htpasswd for autentication.


All times are GMT. The time now is 01:02 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.01739 seconds
  • Memory Usage 1,823KB
  • 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
  • (1)bbcode_code_printable
  • (1)bbcode_php_printable
  • (15)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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