Sponsored Content
Top Forums Web Development Removing VBSEO for vbulletin – Reverting back to vbulletin URLs Post 302868619 by Neo on Monday 28th of October 2013 11:02:15 AM
Old 10-28-2013
Example Forum RewriteRules

Here are some example rewrite rules when vBSEO was removed, for forums:


Code:
RewriteRule ^linux/$ /forumdisplay.php?f=45
RewriteRule ^google-chrome-os/$ /forumdisplay.php?f=131
RewriteRule ^red-hat/$ /forumdisplay.php?f=109
RewriteRule ^hp-ux/$ /forumdisplay.php?f=44
RewriteRule ^solaris/$ /forumdisplay.php?f=43
RewriteRule ^aix/$ /forumdisplay.php?f=47
RewriteRule ^os-x-apple/$ /forumdisplay.php?f=48
RewriteRule ^sco/$ /forumdisplay.php?f=52
RewriteRule ^debian/$ /forumdisplay.php?f=120
RewriteRule ^security/$ /forumdisplay.php?f=14
RewriteRule ^slackware/$ /forumdisplay.php?f=122
RewriteRule ^android/$ /forumdisplay.php?f=140
RewriteRule ^gentoo/$ /forumdisplay.php?f=121
RewriteRule ^suse/$ /forumdisplay.php?f=118
RewriteRule ^hardware/$ /forumdisplay.php?f=136
RewriteRule ^programming/$ /forumdisplay.php?f=104
RewriteRule ^bsd/$ /forumdisplay.php?f=46
RewriteRule ^ubuntu/$ /forumdisplay.php?f=117
RewriteRule ^infrastructure-monitoring/$ /forumdisplay.php?f=141
RewriteRule ^shell-programming-scripting/$ /forumdisplay.php?f=30
RewriteRule ^ip-networking/$ /forumdisplay.php?f=3
RewriteRule ^filesystems-disks-memory/$ /forumdisplay.php?f=34
RewriteRule ^virtualization-cloud-computing/$ /forumdisplay.php?f=125
RewriteRule ^unix-desktop-dummies-questions-answers/$ /forumdisplay.php?f=33
RewriteRule ^windows-dos-issues-discussions/$ /forumdisplay.php?f=36
RewriteRule ^web-programming/$ /forumdisplay.php?f=104
RewriteRule ^news-links-events-announcements/$ /forumdisplay.php?f=31
RewriteRule ^unix-ieee-std-1003-1-2001-posix-1/$ /forumdisplay.php?f=38
RewriteRule ^war-stories/$ /forumdisplay.php?f=145
RewriteRule ^whats-your-mind/$ /forumdisplay.php?f=54
RewriteRule ^members-only/$ /forumdisplay.php?f=87

 

We Also Found This Discussion For You

1. Post Here to Contact Site Administrators and Moderators

vbulletin addon for ads?

i'm wondering what vbulletin addon is used here to manage ads if the admin could let me know :) (1 Reply)
Discussion started by: disgust
1 Replies
Net::Google::Code(3pm)					User Contributed Perl Documentation				    Net::Google::Code(3pm)

NAME
Net::Google::Code - a simple client library for google code SYNOPSIS
use Net::Google::Code; my $project = Net::Google::Code->new( project => 'net-google-code' ); $project->load; # load its metadata, e.g. summary, owners, members, etc. print join(', ', @{ $project->owners } ); # return a Net::Google::Code::Issue object, of which the id is 30 $project->issue( id => 30 ); # return a Net::Google::Code::Download object, of which the file name is # 'FooBar-0.01.tar.gz' $project->download( name => 'FooBar-0.01.tar.gz' ); # return a Net::Google::Code::Wiki object, of which the page name is 'Test' $project->wiki( name => 'Test' ); # loads all the downloads $project->load_downloads; my $downloads = $project->downloads; # loads all the wikis $project->load_wikis; my $wikis = $project->wikis; DESCRIPTION
Net::Google::Code is a simple client library for projects hosted in Google Code. Since 0.15, Net::Google::Code offers google's official issues api support. Besides the new "Net::Google::Code::Issue::list", "Net::Google::Code::Issue::Comment::list" and <Net::Googlel::Code::Issue::load_comments> methods, which use the api from start, you can set $Net::Google::Code::Issue::USE_HYBRID to true to load, create and update issue with the api too. But the official api is not function complete yet( e.g. no attachment support, can't merge, etc. ), Net::Google::Code will back to the scraping way to accomplish those stuff. ATTRIBUTES
project the project name email, password user's email and password, used to authenticate base_url the project homepage base_svn_url the project svn url (without trunk) base_feeds_url the project feeds url summary description labels owners members INTERFACE
load load project's home page, and parse its metadata parse acturally do the parse job, for load(); load_downloads load all the downloads, and store them as an arrayref in $self->downloads load_wikis load all the wikis, and store them as an arrayref in $self->wikis issue return a new Net::Google::Code::Issue object, arguments will be passed to Net::Google::Code::Issue's new method. download return a new Net::Google::Code::Download object, arguments will be passed to Net::Google::Code::Download's new method. wiki return a new Net::Google::Code::Wiki object, arguments will be passed to Net::Google::Code::Wiki's new method. DEPENDENCIES
Any::Moose, HTML::TreeBuilder, WWW::Mechanize, Params::Validate XML::FeedPP, DateTime, JSON, URI::Escape, MIME::Types, File::MMagic INCOMPATIBILITIES
None reported. BUGS AND LIMITATIONS
No bugs have been reported. This project is very very young, and api is not stable yet, so don't use this in production, at least for now. AUTHOR
sunnavy "<sunnavy@bestpractical.com>" Fayland Lam "<fayland@gmail.com>" LICENCE AND COPYRIGHT
Copyright 2008-2010 Best Practical Solutions. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-04-26 Net::Google::Code(3pm)
All times are GMT -4. The time now is 06:51 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy