Welcome, Guest. Please Login or Register.
November 25, 2024, 07:42:26 PM
Home Help Search Log in Register
News: SMF is the next generation in forum software, almost completely re-written from the ground up, make sure you don't fall for cheap imitations that suffer from feature bloat!

YaBB SE Community  |  Development  |  Completed mods  |  [beta 1.5.4] Smart URLs v2.1 « previous next »
Pages: 1 ... 11 12 [13] 14 15 ... 18 Reply Ignore Print
Author Topic: [beta 1.5.4] Smart URLs v2.1  (Read 212908 times)
Anguz
YaBB God
*****
Posts: 641


llama me?!

WWW
Re:[beta 1.5.4] Smart Urls v2.1
« Reply #180 on: December 14, 2003, 10:11:04 PM »
Reply with quote

Quote from: Cerberus on December 14, 2003, 09:36:36 PM
I've installed by hand the v2.1 and I have a problem. When I click on a board link I'm being redirected to the main page ???. Could this be a pfabb-related issue ???.

it could be... it happened before... how does the url look like? could you copy/paste it here?
Logged

My Mods: Avatar & Sig Size Control, No Show Msg Subject, Msg URL Composer, Built-in Avatar Rand, Built-in Sig Rand, Remove New-lines Excess, Show All Stars, Search Bar, Smart URLs
Cerberus
Full Member
***
Posts: 100


Who's a llama?!

WWW
Re:[beta 1.5.4] Smart Urls v2.1
« Reply #181 on: December 14, 2003, 10:32:12 PM »
Reply with quote

You can check the board here. ;)

Thanks :D
Logged

Best Regards, Cerberus
Check out http://www.pocketpcrussia.com :)
Anguz
YaBB God
*****
Posts: 641


llama me?!

WWW
Re:[beta 1.5.4] Smart Urls v2.1
« Reply #182 on: December 14, 2003, 10:59:04 PM »
Reply with quote

Quote from: Cerberus on December 14, 2003, 10:32:12 PM
You can check the board here. ;)

Thanks :D

yep, same problem as before... hmm... it works for threads, but not for boards...

I don't have pfabb installed to play with it, but I guess the easiest you could do, is leave the urls to boards with the query... remove these from index.php

      '~\?board=(\d+)[;&]action=messageindex[;&]start=0~',
      '~\?board=(\d+)[;&]action=messageindex[;&]start=(\d+)~',
      '~\?board=(\d+)(?:[;&]action=messageindex)?~',

           '/b\\1' . $fileExt,
           '/b\\1-\\2' . $fileExt,
           '/b\\1' . $fileExt,


the problem is probably with the $board var in index.php, I don't know why it won't work right when changed, if the one for threads works...

hmm.. maybe because the thread id is first $thread1 and then loaded from the database... hmm...

I don't know if it has to do... but could you try this? find this line at the beginning of index.php

      $board = substr($arr['0'], 1);
and change it to this
      $board = (int) substr($arr['0'], 1);
« Last Edit: December 14, 2003, 11:04:02 PM by Anguz » Logged

My Mods: Avatar & Sig Size Control, No Show Msg Subject, Msg URL Composer, Built-in Avatar Rand, Built-in Sig Rand, Remove New-lines Excess, Show All Stars, Search Bar, Smart URLs
Cerberus
Full Member
***
Posts: 100


Who's a llama?!

WWW
Re:[beta 1.5.4] Smart Urls v2.1
« Reply #183 on: December 15, 2003, 08:51:22 AM »
Reply with quote

No way :(.
But I've noticed that google indexes well url like www.domain.com/forum/?board=1. So I'll keep the "old" urls for the board links.

Now I'm trying to integrate the smart urls in the blocks, but with no success :(.
Logged

Best Regards, Cerberus
Check out http://www.pocketpcrussia.com :)
Cerberus
Full Member
***
Posts: 100


Who's a llama?!

WWW
Re:[beta 1.5.4] Smart Urls v2.1
« Reply #184 on: December 15, 2003, 10:23:18 AM »
Reply with quote

Quote from: Cerberus on December 15, 2003, 08:51:22 AM
Now I'm trying to integrate the smart urls in the blocks, but with no success :(.
Success! :D :D

What do you guys think, will google index pages with *.ppc extension? ;D
(www.domain.com/forum/index.php/t3720-6.ppc)
Logged

Best Regards, Cerberus
Check out http://www.pocketpcrussia.com :)
Cerberus
Full Member
***
Posts: 100


Who's a llama?!

WWW
Re:[beta 1.5.4] Smart Urls v2.1
« Reply #185 on: December 15, 2003, 10:26:43 AM »
Reply with quote

Quote from: Cerberus on December 15, 2003, 08:51:22 AM
No way :(.
But I've noticed that google indexes well url like www.domain.com/forum/?board=1. So I'll keep the "old" urls for the board links.
But this way google will index only the 1st page of any board ::) :'(
Logged

Best Regards, Cerberus
Check out http://www.pocketpcrussia.com :)
Anguz
YaBB God
*****
Posts: 641


llama me?!

WWW
Re:[beta 1.5.4] Smart Urls v2.1
« Reply #186 on: December 15, 2003, 10:38:30 AM »
Reply with quote

hmm... if someone could help making it work with links to boards, it'd be great... I really can't do it myself now :(

well... while it gets solved, you can have the new urls to threads, at least... that'll help at least a bit :)
Logged

My Mods: Avatar & Sig Size Control, No Show Msg Subject, Msg URL Composer, Built-in Avatar Rand, Built-in Sig Rand, Remove New-lines Excess, Show All Stars, Search Bar, Smart URLs
Cerberus
Full Member
***
Posts: 100


Who's a llama?!

WWW
Re:[beta 1.5.4] Smart Urls v2.1
« Reply #187 on: December 15, 2003, 11:03:03 AM »
Reply with quote

Quote from: Anguz on December 15, 2003, 10:38:30 AM
I really can't do it myself now :(
No problem, anyway thanks for all you have done.

Quotewell... while it gets solved, you can have the new urls to threads, at least... that'll help at least a bit :)
:)

So I'll try to fix it by myself ;)
I remember that the v1 was working (but it was installed on YSE, not pfabb/enigma).
Logged

Best Regards, Cerberus
Check out http://www.pocketpcrussia.com :)
Anguz
YaBB God
*****
Posts: 641


llama me?!

WWW
Re:[beta 1.5.4] Smart Urls v2.1
« Reply #188 on: December 15, 2003, 11:15:40 AM »
Reply with quote

Quote from: Cerberus on December 15, 2003, 11:03:03 AM
No problem, anyway thanks for all you have done.

So I'll try to fix it by myself ;)
I remember that the v1 was working (but it was installed on YSE, not pfabb/enigma).

no problem!

yeah, the problem is with pfabb :P

thank you for your help, I hope you can make it work :)
Logged

My Mods: Avatar & Sig Size Control, No Show Msg Subject, Msg URL Composer, Built-in Avatar Rand, Built-in Sig Rand, Remove New-lines Excess, Show All Stars, Search Bar, Smart URLs
Cerberus
Full Member
***
Posts: 100


Who's a llama?!

WWW
Re:[beta 1.5.4] Smart Urls v2.1
« Reply #189 on: December 15, 2003, 11:41:21 AM »
Reply with quote

How about using smarturls for link to members profiles?

PS: I've caught another evil llama :-X :(
Logged

Best Regards, Cerberus
Check out http://www.pocketpcrussia.com :)
Anguz
YaBB God
*****
Posts: 641


llama me?!

WWW
Re:[beta 1.5.4] Smart Urls v2.1
« Reply #190 on: December 15, 2003, 11:57:41 AM »
Reply with quote

Quote from: Anguz on December 11, 2003, 09:26:24 PM
Quote from: Cerberus on December 11, 2003, 08:40:16 PM
Thanks for your reply :). This night I'll install version 2.1 on my test setup. Is that possible to apply the smart urls concept to profile link? It would be quite useful - to have members indexed my google ;D.


well... I don't plan to include it, but if you want to do it, you'd have to add the proper regex and replace url to the arrays and then wrap the profile urls with the smart_url() function

it's actually easier to do with the output buffer, cause it saves you having to find all the urls in the files to wrap them with the smart_url function, but you can do it
Logged

My Mods: Avatar & Sig Size Control, No Show Msg Subject, Msg URL Composer, Built-in Avatar Rand, Built-in Sig Rand, Remove New-lines Excess, Show All Stars, Search Bar, Smart URLs
Cerberus
Full Member
***
Posts: 100


Who's a llama?!

WWW
Re:[beta 1.5.4] Smart Urls v2.1
« Reply #191 on: December 15, 2003, 12:00:16 PM »
Reply with quote

Ok, thanks :).
Logged

Best Regards, Cerberus
Check out http://www.pocketpcrussia.com :)
zoki
Noobie
*
Posts: 40


Have you seen me offline?

ICQ - 46742125
Re:[beta 1.5.4] Smart Urls v2.1
« Reply #192 on: December 19, 2003, 12:56:09 AM »
Reply with quote

Hello

I just have to say this is a great MOD!

Good job Anguz and others!

I have a small problem though...

Here's one topic on my board (you probably won't understand the language :) ):
http://www.psygarden.org/forum/index.php/psygarden/t167.htm

1) Why is there a "/" character in front of the forum name?

2) Category name is missing?

3) How do I make it so that name of the topic is actually displayed in the title bar (<title>.... </title>)?

Tanx in advance.
« Last Edit: December 19, 2003, 12:57:19 AM by zoki » Logged

All your psychedelics are belong to us!
Anguz
YaBB God
*****
Posts: 641


llama me?!

WWW
Re:[beta 1.5.4] Smart Urls v2.1
« Reply #193 on: December 19, 2003, 02:17:10 AM »
Reply with quote

1) you mean this?



I don't know... not the html page title  :P

2) did you put a category keyword? in the url you posted, there's only one kw, I assume it's the board's

3) that's how it should be normally... you can see it working at www.hablajapones.org
Logged

My Mods: Avatar & Sig Size Control, No Show Msg Subject, Msg URL Composer, Built-in Avatar Rand, Built-in Sig Rand, Remove New-lines Excess, Show All Stars, Search Bar, Smart URLs
zoki
Noobie
*
Posts: 40


Have you seen me offline?

ICQ - 46742125
Re:[beta 1.5.4] Smart Urls v2.1
« Reply #194 on: December 19, 2003, 02:07:08 PM »
Reply with quote

Hmm but where do I put a category keyword? In admin, both "Use category keywords" and "Use board keywords" are checked. For the "Forum's keyword" I put my forum name.

I have no clue why there's no topic name in the title bar :(
Logged

All your psychedelics are belong to us!
Pages: 1 ... 11 12 [13] 14 15 ... 18 Reply Ignore Print 
YaBB SE Community  |  Development  |  Completed mods  |  [beta 1.5.4] Smart URLs v2.1 « previous - next »
 


Powered by MySQL Powered by PHP YaBB SE Community | Powered by YaBB SE
© 2001-2003, YaBB SE Dev Team. All Rights Reserved.
SMF 2.1.4 © 2023, Simple Machines
Valid XHTML 1.0! Valid CSS

Page created in 0.072 seconds with 20 queries.