-
Posts
20,156 -
Joined
-
Last visited
Everything posted by TCH-Bruce
-
Password Protect Directories
TCH-Bruce replied to queenpictoria's topic in CPanel and Site Maintenance
There may be something in your .htaccess file causing the box to appear. If you did password protect the folder and then removed it it may not have removed it properly. If you can't edit the .htaccess file yourself you can open a help desk ticket and they will help you. Link at top of page. -
Problem Uploading With Invision Power Board 1.2
TCH-Bruce replied to heffey1022's topic in Scripting Talk
Did you get a confirmation when you submitted the help ticket? Check your spam folders. Log back into the help desk and check the status of the ticket. -
Voice Chat Service (ventrilo Or Teamspeak)
TCH-Bruce replied to Rednarb's topic in Looking for......
Good low cost solution. How about Skype? It's FREE -
Hope you aren't giving up your virus software!
-
Go in to the Options panel of WordPress and select Permalinks. I use the default ones it suggests. Just copy and paste the code into your .htaccess file. Here's what mine looks like. ><IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [S=35] RewriteRule ^feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?&feed=$1 [QSA,L] RewriteRule ^(feed|rdf|rss|rss2|atom)/?$ /index.php?&feed=$1 [QSA,L] RewriteRule ^page/?([0-9]{1,})/?$ /index.php?&paged=$1 [QSA,L] RewriteRule ^comments/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?&feed=$1&withcomments=1 [QSA,L] RewriteRule ^comments/(feed|rdf|rss|rss2|atom)/?$ /index.php?&feed=$1&withcomments=1 [QSA,L] RewriteRule ^comments/page/?([0-9]{1,})/?$ /index.php?&paged=$1 [QSA,L] RewriteRule ^search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?s=$1&feed=$2 [QSA,L] RewriteRule ^search/(.+)/(feed|rdf|rss|rss2|atom)/?$ /index.php?s=$1&feed=$2 [QSA,L] RewriteRule ^search/(.+)/page/?([0-9]{1,})/?$ /index.php?s=$1&paged=$2 [QSA,L] RewriteRule ^search/(.+)/?$ /index.php?s=$1 [QSA,L] RewriteRule ^category/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?category_name=$1&feed=$2 [QSA,L] RewriteRule ^category/(.+)/(feed|rdf|rss|rss2|atom)/?$ /index.php?category_name=$1&feed=$2 [QSA,L] RewriteRule ^category/(.+)/page/?([0-9]{1,})/?$ /index.php?category_name=$1&paged=$2 [QSA,L] RewriteRule ^category/(.+)/?$ /index.php?category_name=$1 [QSA,L] RewriteRule ^archives/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?author_name=$1&feed=$2 [QSA,L] RewriteRule ^archives/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$ /index.php?author_name=$1&feed=$2 [QSA,L] RewriteRule ^archives/author/([^/]+)/page/?([0-9]{1,})/?$ /index.php?author_name=$1&paged=$2 [QSA,L] RewriteRule ^archives/author/([^/]+)/?$ /index.php?author_name=$1 [QSA,L] RewriteRule ^archives/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&feed=$2 [QSA,L] RewriteRule ^archives/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&feed=$2 [QSA,L] RewriteRule ^archives/([0-9]{4})/page/?([0-9]{1,})/?$ /index.php?year=$1&paged=$2 [QSA,L] RewriteRule ^archives/([0-9]{4})/?$ /index.php?year=$1 [QSA,L] RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&monthnum=$2&feed=$3 [QSA,L] RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&monthnum=$2&feed=$3 [QSA,L] RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$ /index.php?year=$1&monthnum=$2&paged=$3 [QSA,L] RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/?$ /index.php?year=$1&monthnum=$2 [QSA,L] RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&monthnum=$2&day=$3&feed=$4 [QSA,L] RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&monthnum=$2&day=$3&feed=$4 [QSA,L] RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$ /index.php?year=$1&monthnum=$2&day=$3&paged=$4 [QSA,L] RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$ /index.php?year=$1&monthnum=$2&day=$3 [QSA,L] RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&feed=$5 [QSA,L] RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&feed=$5 [QSA,L] RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&paged=$5 [QSA,L] RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&page=$5 [QSA,L] RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&tb=1 [QSA,L] </IfModule> This will produce links like this: http://your-blog-address/2005/07/13/sample-post/
-
Welcome to the forum Filipe
-
Password Protect Directories - Is It Possible?
TCH-Bruce replied to fiberse's topic in CPanel and Site Maintenance
Welcome to the forums, Dean -
Welcome to the forums, PCWizard70
-
Cannot Find .htaccess File
TCH-Bruce replied to programthisweb's topic in CPanel and Site Maintenance
Welcome to the forums, programthisweb -
Welcome to the forum, Jonas Well, since nobody has stepped forward to write a new tutorial there is none to offer. Personally I wouldn't recommend installing it unless you intend to continually update it as updates become available.
-
Welcome to the forums, atikal
-
Generic Host Process For Win32 Services
TCH-Bruce replied to TCH-Thomas's topic in Operating Systems
Welcome to the forums, Camie -
The moderators do not have server access so please open a support ticket with the help desk to get it done. Link at the top of every forum page.
-
Glad to hear you guys are well.
-
Welcome to the forums, Ron
-
Welcome to the forums, Kewcee
-
Welcome to the forums, mizmamahaze
-
Welcome to the forums, dawheels
-
Welcome to the forums Mike
-
Welcome to the forums, vphmubkc
-
Glad you are happy and thanks for the kind words.
-
Madame Renee Little Lingerie For Fashion Dolls
TCH-Bruce replied to madame-renee's topic in Add Me to the Family
Welcome to the forums, Madame Renee -
My thoughts and prayers go out to the people of London
-
Have you tried removing or commenting out line 21? I just took a quick look and I could be wrong.
