PDA

View Full Version : how do we make our links like yours?


evo_j
05-08-2005, 10:10 PM
how do we make our vbulletin links same as this forum? have messed about various versions of the archive hack from vb.org, would prfer to make same as this forum, we dont have mod_mime running at the moment not sure if we can but are moving to a dedicated server very soon with full control, were running 3.07 same as this version

Regards
J

clasione
05-08-2005, 10:25 PM
Welcome EvoJ !!!!

Nice to meet you..... This is the whole kit n' kabootle below.....

It's unsupported here but there's the code..




Step 1 - File Edits
This step covers all files that need to be edited. Step 2 covers the template edits.
forumdisplay.php
Find:
PHP Code:
foreach ($parentlist AS $forumID)
{
$forumTitle = $forumcache["$forumID"]['title'];
$navbits["forumdisplay.php?$session[sessionurl]f=$forumID"] = $forumTitle;
}
Replace with:
PHP Code:
// ################ MOD_REWRITE HACK ######################
foreach ($parentlist AS $forumID)
{
$forumTitle = $forumcache["$forumID"]['title'];
$forumURL = strtolower(str_replace(" ", "-",str_replace("/", "-", $forumTitle)));
$navbits["f$forumID-$forumURL.html"] = $forumTitle;
}
// ################ MOD_REWRITE HACK ######################
Find:
PHP Code:
$thread = process_thread_array($thread, $lastread, $foruminfo['allowicons']);
Below that add:
PHP Code:
// ################ MOD_REWRITE HACK ######################
$thread['url'] = strtolower(str_replace(" ", "-", $thread['threadtitle']));
$thread['url'] = ereg_replace("[\/!£$%^&*«»,.;:'#@~{}|=+`¬<>?]+", "", $thread['url']);
// ################ MOD_REWRITE HACK ######################

showthread.php
Find:
PHP Code:
foreach ($parentlist AS $forumID)
{
$forumTitle = $forumcache["$forumID"]['title'];
$navbits["forumdisplay.php?$session[sessionurl]f=$forumID"] = $forumTitle;
}
Replace with:
PHP Code:
// ################ MOD_REWRITE HACK ######################
foreach ($parentlist AS $forumID)
{
$forumTitle = $forumcache["$forumID"]['title'];
$forumURL = strtolower(str_replace(" ", "-",str_replace("/", "-", $forumTitle)));
$navbits["f$forumID-$forumURL.html"] = $forumTitle;
}
// ################ MOD_REWRITE HACK ######################

search.php
Find:
PHP Code:
$thread = process_thread_array($thread, $lastread["$thread[forumid]"]);
Below that add:
PHP Code:
// ################ MOD_REWRITE HACK ######################
$thread['url'] = strtolower(str_replace(" ", "-", $thread['threadtitle']));
$thread['url'] = ereg_replace("[\/!£$%^&*«»,.;:'#@~{}|=+`¬<>?]+", "", $thread['url']);
// ################ MOD_REWRITE HACK ######################

includes/functions_forumlist.php
Find:
PHP Code:
// do light bulb
$forum['statusicon'] = fetch_forum_lightbulb($forumid, $lastpostinfo, $forum);
Above that add:
PHP Code:
// ################ MOD_REWRITE HACK ######################
$forum['url'] = strtolower(str_replace(" ", "-",str_replace("/", "-", $forum['title'])));
// ################ MOD_REWRITE HACK ######################
Find:
PHP Code:
$forumperms = $bbuserinfo['forumpermissions']["$forumid"];
Above that add:
PHP Code:
// ################ MOD_REWRITE HACK ######################
$forum['url'] = strtolower(str_replace(" ", "-",str_replace("/", "-", $forum['title'])));
// ################ MOD_REWRITE HACK ######################

includes/functions_online.php
Find:
PHP Code:
// ###################### Start showonline #######################
Above that add:
PHP Code:
// ###################### MOD_REWRITE HACK #################
function mod_rewrite_title($title)
{
$rewritten = strtolower(str_replace(" ", "-",str_replace("/", "-", $title)));
return ereg_replace("[\/!£$%^&*«»,.;:'#@~{}|=+`¬<>?]+", "", $rewritten);
}
// ###################### MOD_REWRITE HACK #################
Find all instances of:
PHP Code:
<a href="showthread.php?$session[sessionurl]t=$threadid\" title=\"$threadpreview\">$threadtitle</a>
And replace with:
PHP Code:
<a href="t$threadid-" .mod_rewrite_title($threadtitle). ".html\" title=\"$threadpreview\">$threadtitle</a>
Find all instances of:
PHP Code:
<a href="forumdisplay.php?$session[sessionurl]f=$forumid\">$forumtitle</a>
And replace with:
PHP Code:
<a href="f$forumid-" .mod_rewrite_title($forumtitle). ".html\">$forumtitle</a>
Find:
PHP Code:
convert_short_varnames($values);
$userinfo['values'] = $values;
Below that add:
PHP Code:
// #################### MOD_REWRITE HACK #################
if (eregi("t([0-9]+)-(.*).html$", $filename, $tmatch)) {
$filename = 'showthread.php';
$values['threadid'] = $tmatch[1];
}

if (eregi("f([0-9]+)-(.*).html$", $filename, $fmatch)) {
$filename = 'forumdisplay.php';
$values['forumid'] = $fmatch[1];
}
// #################### MOD_REWRITE HACK #################

Step 2 - Template Edits
This step covers all the template edits needed. Step 3 covers the .htaccess file needed.
Within the Forum Home Templates group the following templates all require the modification below.
forumhome_forumbit_level1_nopost
forumhome_forumbit_level1_post
forumhome_forumbit_level2_nopost
forumhome_forumbit_level2_post
forumhome_subforumbit_nopost
forumhome_subforumbit_post

Find:
PHP Code:
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">

replace:
PHP Code:
<a href="f$forum[forumid]-$forum[url].html">
In the forumhome_lastpostby template find:
PHP Code:
<a href="showthread.php?$session[sessionurl]goto=newpost&amp;t=$lastpostinfo[lastthreadid]" title="<phrase 1="$lastpostinfo[lastthread]">$vbphrase[go_first_unread_in_thread_x]</phrase>"><strong>$lastpostinfo[trimthread]</strong></a>
And Replace with:
PHP Code:
<a href="newpostinthread$lastpostinfo[lastthreadid].html" title="<phrase 1="$lastpostinfo[lastthread]">$vbphrase[go_first_unread_in_thread_x]</phrase>"><strong>$lastpostinfo[trimthread]</strong></a>
Find:
PHP Code:
<a href="showthread.php?$session[sessionurl]goto=lastpost&amp;t=$lastpostinfo[lastthreadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/lastpost.gif" alt="$vbphrase[go_to_last_post]" border="0" /></a>
And replace with:
PHP Code:
<a href="lastpostinthread$lastpostinfo[lastthreadid].html"><img class="inlineimg" src="$stylevar[imgdir_button]/lastpost.gif" alt="$vbphrase[go_to_last_post]" border="0" /></a>
Find:
PHP Code:
<a href="showthread.php?$session[sessionurl]goto=lastpost&amp;t=$lastpostinfo[lastthreadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/lastpost.gif" alt="$vbphrase[go_to_last_post]" border="0" /></a>
And replace with:
PHP Code:
<a href="lastpostinthread$lastpostinfo[lastthreadid].html"><img class="inlineimg" src="$stylevar[imgdir_button]/lastpost.gif" alt="$vbphrase[go_to_last_post]" border="0" /></a>

In the Threadbit Templates group, the threadbit template requires the following modifications.
Find:
PHP Code:
<a href="showthread.php?$session[sessionurl]goto=lastpost&amp;t=$thread[threadid]">
And replace with:
PHP Code:
<a href="lastpostinthread$thread[threadid].html">
Find:
PHP Code:
<a href="showthread.php?$session[sessionurl]goto=newpost&amp;t=$thread[threadid]">
And replace with:
PHP Code:
<a href="newpostinthread$thread[threadid].html">
Find:
PHP Code:
<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]">
And replace with:
PHP Code:
<a href="t$thread[threadid]-$thread[url].html">
Find:
PHP Code:
<a href="showthread.php?$session[sessionurl]goto=lastpost&amp;t=$thread[threadid]">
And replace with:
PHP Code:
<a href="lastpostinthread[threadid].html">

Step 3 -.htaccess file
Open notepad or your usual text editor and copy and paste the following into a new file.

PHP Code:
RewriteEngine On
Options +FollowSymLinks
RewriteRule ^t([0-9]+)-(.*).html$ showthread.php?t=$1 [L]
RewriteRule ^lastpostinthread([0-9]+).html$ showthread.php?goto=lastpost&t=$1 [L]
RewriteRule ^newpostinthread([0-9]+).html$ showthread.php?goto=newpost&t=$1 [L]
RewriteRule ^f([0-9]+)-(.*).html$ forumdisplay.php?forumid=$1 [L]

evo_j
05-08-2005, 10:31 PM
thanks that looks EXCELLENT!! do i need any special features enabled on server??

clasione
05-08-2005, 10:43 PM
Not that I know of, as long as you have access to .htaccess you should be able to get that running in notime.. ;)

evo_j
05-08-2005, 10:44 PM
Not that I know of, as long as you have access to .htaccess you should be able to get that running in notime.. ;)


great will try it out and let you know, best hack ive found yet for vb seo

thanks

clasione
05-08-2005, 11:43 PM
Just make sure you back up the files your modifing incase you need to put them back....

but that should work on 3.0.7 with no problems...

and yes, it's the best vb hack available for optimization... Previous versions were close, but not as good as this one...

evo_j
05-09-2005, 07:11 AM
Hi, just wondering, this mod looks as if its dependant on mod_rewrite on the linux server, is that right?? as if so, i am not sure many virtual hosts will enable this, i just had a closer look at the code before installing it??

thanks

clasione
05-09-2005, 07:35 AM
I'm really not too sure. I know that alot of shared hosts do not give you access to .htaccess, but as far as anything else, i'm really not sure....

I'm dedicated, and my server admin takes care of the server settings...

evo_j
05-09-2005, 07:38 AM
hi, yes i have .htaccess file to edit, but i think lookin at the code it relies on mod_rewrite which is a feature of apache, not always enabled by virtual hosts, is it possible to ask the person who wrote this??? as its quite a large hack to install if its not going to run properly...

thanks for ur help

clasione
05-09-2005, 08:06 AM
Yes, must b enabled..

Before you begin, make sure your web server supports it. Calling your host support line is probably easiest.

evo_j
05-11-2005, 06:17 PM
is there a fix for the online.php file, as all the links that it shows the users lookin at, when you view whos online and what they are doing are broken?? any ideas??

but mostly working now, some coding errors though in the hack and wrong code links that need changing, however i worked out it

many thanks

clasione
05-11-2005, 06:22 PM
Post a link to the board and I'll take a look...

evo_j
05-11-2005, 08:12 PM
Post a link to the board and I'll take a look...


thanks

http://www.ironforlife.com/online.php?order=asc&sort=username&pp=40&page=1

clasione
05-11-2005, 08:35 PM
Did you check this file modification?
includes/functions_online.php

evo_j
05-12-2005, 05:55 AM
Did you check this file modification?
includes/functions_online.php

yep i did the full hack, i will double check over it now though for that page

thanks

evo_j
05-12-2005, 12:12 PM
yep i did the full hack, i will double check over it now though for that page

thanks

actually the hack is also missing the \ before the " for the functions online page, just took me a while to work that out, now its fixed, the links are still not working

Searchen Networks Forum Archive - Forums | Directory | What's New | Popular | Add Listing | Edit Listing | Company | Domains | Hosting | Marketing | Terms | Search

Arts
Animation, Antiques, Architecture...
Business
Accounting_, Aerospace_and_Defense, Agriculture_and_Forestry...
Computers
Algorithms, Artificial_Intelligence, Artificial_Life...
Games
Board_Games, Card_Games, Computer_Games...
Health
Addictions, Aging, Alternative...
Home
Apartment_Living, Consumer_Information, Cooking...
Kids_and_Teens
Arts, Computers, Directories...
News
Breaking_News, Chats_and_Forums, Current_Events...
Recreation
Antiques, Audio, Autos...
Reference
Almanacs, Archives, Ask_an_Expert...
Science
Agriculture, Anomalies_and_Alternative_Science, Astronomy...
Shopping
Antiques_and_Collectibles, Auctions, Autos...
Society
Activism, Advice, Crime...
Sports
Baseball, Basketball, Billiards...
United_States
Alabama, Alaska, Arizona...
World
Abkhazia, Afghanistan, Albania...

 

Animation | Antiques | Architecture | Archives | Art_History | Awards | Bodyart | Chats_and_Forums | Classical_Studies | Comics | Costumes | Crafts | Cultures_and_Groups | Dance | Design | Digital | Directories | Education | Entertainment | Events | Genres | Graphic_Design | Humanities | Illustration | Libraries | Literature | Magazines | Movies | Museums | Music | Myths_and_Folktales | Native_and_Tribal | News_and_Media | Online_Writing | Organizations | People | Performing_Arts | Periods_and_Movements | Photography | Radio | Regional | Rhetoric | Television | Theatre | Typography | Video | Visual_Arts | Writers_Resources

Accounting_ | Aerospace_and_Defense | Agriculture_and_Forestry | Arts_and_Entertainment_ | Associations_ | Automotive_ | Biotechnology_and_Pharmaceuticals_ | Business_and_Society_ | Business_Law | Business_Services | Business_Travel | Chemicals_ | Classifieds_ | Construction_and_Maintenance_ | Consumer_Goods_and_Services_ | Cooperatives_ | Customer_Service_ | Dictionaries_ | Directories_ | E-Commerce | Education_and_Training | Electronics_and_Electrical_ | Employment_ | Energy_and_Environment | Financial_Services | Food_and_Related_Products | Healthcare | History | Hospitality | Human_Resources | Industrial_Goods_and_Services | Information_Technology | Insurance | International_Business_and_Trade | Investing | Major_Companies | Management | Marketing_and_Advertising | Mining_and_Drilling | News_and_Media | Opportunities | Publishing_and_Printing | Real_Estate | Resources | Retail_Trade | Small_Business | Software | Telecommunications | Textiles_and_Nonwovens | Transportation_and_Logistics | Wholesale_Trade

Algorithms | Artificial_Intelligence | Artificial_Life | Bulletin_Board_Systems | CAD_and_CAM | Chats_and_Forums | Companies | Computer_Science | Consultants | Data_Communications | Data_Formats | Desktop_Publishing | Directories | E-Books | Education | Employment | Emulators | Ethics | Fonts | Games | Graphics | Hacking | Hardware | History | Home_Automation | Human-Computer_Interaction | Internet | Intranet | Mailing_Lists | MIS | Mobile_Computing | Multimedia | Newsgroups | News_and_Media | Open_Source | Operating_Systems | Organizations | Parallel_Computing | Performance_and_Capacity | Product_Support | Programming | Repair | Robotics | Security | Shopping | Software | Speech_Technology | Supercomputing | Systems | Usenet | Virtual_Reality

Arcade Games | Board_Games | Card_Games | Computer_Games | Console_Games | Developers_and_Publishers | Dice | Gambling | Game_Studies | Online | Party_Games | Puzzles | Resources | Roleplaying | Shopping | Trading_Card_Games | Video_Games

Addictions | Aging | Alternative | Animal | Beauty | Child_Health | Conditions_and_Diseases | Dentistry | Directories | Disabilities | Education | Employment | Environmental_Health | Fitness | Hair_Care | Healthcare_Industry | History | Home_Health | Insurance | Medicine | Men's_Health | Mental_Health | News_and_Media | Nursing | Nutrition | Occupational_Health_and_Safety | Organizations | Pharmacy | Products_and_Shopping | Professions | Publications | Public_Health_and_Safety | Reproductive_Health | Resources | Senior_Health | Senses | Services | Specific_Substances | Support_Groups | Teen_Health | Weight_Loss | Women's_Health

Apartment_Living | Consumer_Information | Cooking | Do-It-Yourself | Domestic_Services | Emergency_Preparation | Entertaining | Family | Gardening | Homemaking | Homeowners_ | Home_Automation | Home_Business | Home_Buyers | Home_Improvement_ | Moving_and_Relocating | News_and_Media_ | Personal_Finance_ | Personal_Organization_ | Pets_ | Rural_Living_ | Seniors_ | Shopping_ | Software_ | Urban_Living_

Arts | Computers | Directories | Entertainment | Games | Health | International | News | People_and_Society | Pre-School | School_Time | Sports_and_Hobbies | Teen_Life | Your_Family | Breaking_News | Chats_and_Forums | Current_Events | Directories | Extended_Coverage | Internet_Broadcasts | Journalism | Journals | Magazines_and_E-zines | Media | Newspapers | Online_Archives | Politics | Radio | Services | Sports | Television | Weather | Weblogs

Antiques | Audio | Autos | Aviation | Birding | Boating | Bowling | Camps | Climbing | Collecting | Crafts | Directories | Fireworks | Fishing | Gambling | Games | Gardens | Genealogy | Guns | Horoscopes | Humor | Knives | Martial_Arts | Models | Motorcycles | Outdoors | Scouting | Sports | Theme_Parks | Travel

Almanacs | Archives | Ask_an_Expert | Bibliography | Biography | Books | Dictionaries | Directories | Education | Encyclopedias | Flags | Geography | Journals | Knots | Knowledge_Management | Libraries | Maps | Museums | Open_Access_Resources | Parliamentary_Procedure | Questions_and_Answers | Quotations | Scientific_Reference | Style_Guides | Thesaurus | Time | World_Records

Agriculture | Anomalies_and_Alternative_Science | Astronomy | Biology | Chats_and_Forums | Chemistry | Conferences | Directories | Earth_Sciences | Educational_Resources | Employment | Environment | History_of_Science | Institutions | Instruments_and_Supplies | Math | Methods_and_Techniques | Museums | News_and_Media | Philosophy_of_Science | Physics | Publications | Reference | Science_in_Society | Search_Engines | Social_Sciences | Software | Technology | Women

Antiques_and_Collectibles | Auctions | Autos | Beauty_Products | Books | Children | Classifieds | Clothing | Computers | Consumer_Electronics | Crafts | Credit_Services | Death_Care | Directories | Education | Entertainment | Flowers | Food | Furniture | General_Merchandise | Gifts | Health | Holidays | Home_and_Garden | Jewelry | Music | Niche | Office_Products | Pets | Photography | Publications | Recreation | Religious | Sports | Tobacco | Tools | Toys_and_Games | Travel | Vehicles | Weddings | Wholesale

Activism | Advice | Crime | Death | Disabled | Economics | Education | Ethnicity | Folklore | Future | Gay,_Lesbian,_and_Bisexual | Genealogy | Government | History | Holidays | Issues | Language_and_Linguistics | Law | Lifestyle_Choices | Men | Military | Organizations | Paranormal | People | Philanthropy | Philosophy | Politics | Relationships | Religion_and_Spirituality | Sexuality | Social_Sciences | Sociology | Subcultures | Support_Groups | Transgendered | Urban_Legends | Women | Work

Baseball | Basketball | Billiards | Bowling | Boxing | Cheerleading | Cycling | Darts | Equestrian | Extreme_Sports | Fishing | Football | Golf | Greyhound_Racing | Gymnastics | Hockey | Horse_Racing | Hunting | Lacrosse | Martial_Arts | Motorsports | Racquetball | Shooting | Skateboarding | Soccer | Softball | Swimming | Tennis | Track_and_Field | Volleyball | Wrestling

Alabama | Alaska | Arizona | Arkansas | California | Colorado | Connecticut | Delaware | Florida | Georgia | Guides_and_Directories | Hawaii | Idaho | Illinois | Indiana | Iowa | Kansas | Kentucky | Louisiana | Maine | Maps_and_Views | Maryland | Massachusetts | Michigan | Minnesota | Mississippi | Missouri | Montana | Nebraska | Nevada | New_Hampshire | New_Jersey | New_Mexico | New_York | North_Carolina | North_Dakota | Ohio | Oklahoma | Oregon | Pennsylvania | Rhode_Island | South_Carolina | South_Dakota | Tennessee | Texas | Utah | Vermont | Virginia | Washington | Washington,_DC | West_Virginia | Wisconsin | Wyoming

Afghanistan | Albania | Algeria | Andorra | Angola | Antigua | Argentina | Armenia | Australia | Austria | Azerbaijan | Bahamas | Bahrain | Bangladesh | Barbados | Belarus | Belgium | Belize | Benin | Bhutan | Bolivia | Bosnia | Botswana | Brazil | Brunei | Bulgaria | Burkina | Burundi | Cambodia | Cameroon | Canada | Cape_Verde | Chad | Chile | China | Colombia | Comoros | Congo | Costa_Rica | Cote_d'Ivoire | Croatia | Cuba | Cyprus | Czech_Republic | Denmark | Djibouti | Dominica | Dominican_Republic | East_Timor | Ecuador | Egypt | El_Salvador | Equatorial_Guinea | Eritrea | Estonia | Ethiopia | Fiji | Finland | France | Gabon | Gambia | Georgia | Germany | Ghana | Greece | Grenada | Guatemala | Guinea | Guyana | Haiti | Honduras | Hungary | Iceland | India | Indonesia | Iran | Iraq | Ireland | Israel | Italy | Jamaica | Japan | Jordan | Kazakhstan | Kenya | Kiribati | Korea | Kuwait | Kyrgyzstan | Laos | Latvia | Lebanon | Lesotho | Liberia | Libya | Liechtenstein | Lithuania | Luxembourg | Macedonia | Madagascar | Malawi | Malaysia | Maldives | Mali | Malta | Marshall_Islands | Mauritania | Mauritius | Mexico | Micronesia | Moldova | Monaco | Mongolia | Morocco | Mozambique | Myanmar | Nagorno | Namibia | Nauru | Nepal | Netherlands | New_Zealand | Nicaragua | Niger | Nigeria | Northern_Cyprus | Norway | Oman | Pakistan | Palau | Palestine | Panama | Papua_New_Guinea | Paraguay | Peru | Philippines | Poland | Portugal | Qatar | Romania | Russia | Rwanda | Saint_Kitts_and_Nevis | Saint_Lucia | Saint_Vincent_and_the_Grenadines | Samoa | San_Marino | Sao_Tome | Saudi_Arabia | Senegal | Serbia | Seychelles | Sierra_Leone | Singapore | Slovakia | Slovenia | Solomon_Islands | Somalia | Somaliland | South_Africa | South_Ossetia | Spain | Sri_Lanka | Sudan | Suriname | Swaziland | Sweden | Switzerland | Syria | Taiwan | Tajikistan | Tanzania | Thailand | Togo | Tonga | Transnistria | Trinidad | Tunisia | Turkey | Turkmenistan | Tuvalu | Uganda | Ukraine | United_Arab_Emirates | United_Kingdom | Uruguay | Uzbekistan | Vanuatu | Vatican_City | Venezuela | Vietnam | Western_Sahara | Yemen | Zambia | Zimbabwe |