|
#11
|
||||
|
||||
|
According to http://help.godaddy.com/article/899, GoDaddy supports mod_rewrite.. The lines in your .htaccess, are they wrapping in TextEdit? Because each rule should be on one line by itself, in case something got messed up when copy-and-pasting??
You could also try just the top 2 lines in .htaccess only (as a test) Code:
RewriteEngine On RewriteBase /Portfolio |
|
#12
|
|||
|
|||
|
Quote:
I was using Mac's TextEdit which I HATE! So I went over to my PC and used good old fashion Wordpad and saved it that way and it worked. |
|
#13
|
||||
|
||||
|
Well there are plenty of free editors for mac which are leagues better than TextEdit. TextWrangler is free and plays nice with Fetch. I use TextMate but it costs money.
|
|
#14
|
||||
|
||||
|
and glad to see you got it working
|
|
#15
|
|||
|
|||
|
Hi Joe,
Firstly, a BIG Thank You for sharing this wonderful template. Its simply wonderful. I managed to get everything up and running fine. Now I'm trying to add a hyperlink on the template to link to my blog, which is not in the root install folder off my pixelpost install, and the link is behaving weirdly. Below is my .htaccess: (Note line 5, which I added for the hyperlink) RewriteEngine on RewriteBase /myphotos RewriteRule ^(about|downloads)/?$ index.php?x=$1 RewriteRule ^browse/?$ index.php?x=browse RewriteRule ^blog/?$ ../blog RewriteRule ^browse/([1-9][0-9]*)/?$ index.php?x=browse&pagenum=$1 RewriteRule ^browse/category/([1-9][0-9]*)/?$ index.php?x=browse&category=$1 RewriteRule ^browse/category/([1-9][0-9]*)/([1-9][0-9]*)/?$ index.php?x=browse&category=$1&pagenum=$2 RewriteRule ^browse/archive/(19|20)([0-9][0-9])[-](0[1-9]|1[012])/monthname/([^/]+)/?$ index.php?x=browse&archivedate=$1$2-$3&monthname=$4 RewriteRule ^browse/archive/(19|20)([0-9][0-9])[-](0[1-9]|1[012])/monthname/([^/]+)/([1-9][0-9]*)/?$ index.php?x=browse&archivedate=$1$2-$3&monthname=$4&pagenum=$5 RewriteRule ^browse/tag/([^/]+)/?$ index.php?x=browse&tag=$1 RewriteRule ^browse/tag/([^/]+)/([1-9][0-9]*)/?$ index.php?x=browse&tag=$1&pagenum=$2 RewriteRule ^comment/submit$ index.php?x=save_comment RewriteRule ^comment/([0-9]+)$ index.php?popup=comment&showimage=$1 RewriteRule ^(p|photo)/([0-9]+)$ index.php?showimage=$2 RewriteRule ^(p|photo)/([0-9]+)/rating/([1-5])$ index.php?showimage=$2&rating=$3 RewriteRule ^t/latest/?$ index.php?showthumb=latest&thumbtag=image RewriteRule ^feeds/(rss|atom).xml$ index.php?x=$1 This works fine on the image_template, and when I hover over the hyperlink, the status bar on my safari shows "pixellogue.com/blog" which is correct. However, on the browse_template, it shows "pixellogue.com/myphotos/blog", which is wrong. When I click on the link on this page, it first goes to pixellogue.com/myphotos/blog, and then a second later gets redirected to the correct address. How can I solve this issue? Please help. And once again, thank you. Thom |
|
#16
|
||||
|
||||
|
Quote:
HTML Code:
<a href="http://pixellogue.com/blog/">Blog</a> |
|
#17
|
|||
|
|||
|
I have another problem. The rewrite of 35mm with googlesitemap addon.
My old blog used the se.nsuo.us cleanurls addon. With the 35mm template the clean-urls are different as it looks like the rules are different. As a result of that the sitemap.xml isn't correct anymore. So what doing? Turn of the rules of 35mm and generate clean-urls with se.nsuo.us addon? And if yes... how to do that ? Second way would be to generate clean urls and change the sitemap addon that its working with 35. But I don't like this way as all the urls have to be changed again. Old links to pictures of my blog would be incorrect. Any Idea? Thanks SePp |
|
#18
|
|||
|
|||
|
Google Sitemap
Hi
I changed the google sitemap addon like you see below and it is working. (At least for all images and the about page.) Problem is that I want my old links back :-). I mean the links from se.nsuo.us cleanurls tool. Do you have any Idea how to realize. And I'm not sure this will work all the time. So no gurantee. PHP Code:
|
|
#19
|
|||
|
|||
|
Hi,
I have a problem similar with MikeyTampa at first it always giving me Internal Server Error (yes, I'm using Mac's TextEdit) and then I downloaded TextWrangler and still giving me no luck. My last try is using "file manager" from cpanel. There is a progress, I can access admin pages and also my photoblog, but i still have a problem with "BROWSE, DOWNLOAD and ABOUT". Do I missed something? here is my .htaccess <IfModule mod_rewrite.c> RewriteEngine on RewriteBase / RewriteRule ^(about|downloads)/?$ index.php?x=$1 RewriteRule ^browse/?$ index.php?x=browse RewriteRule ^browse/([1-9][0-9]*)/?$ index.php?x=browse&pagenum=$1 RewriteRule ^browse/category/([1-9][0-9]*)/?$ index.php?x=browse&category=$1 RewriteRule ^browse/category/([1-9][0-9]*)/([1-9][0-9]*)/?$ index.php?x=browse&category=$1&pagenum=$2 RewriteRule ^browse/archive/(19|20)([0-9][0-9])[-](0[1-9]|1[012])/monthname/([^/]+)/?$ index.php?x=browse&archivedate=$1$2-$3&monthname=$4 RewriteRule ^browse/archive/(19|20)([0-9][0-9])[-](0[1-9]|1[012])/monthname/([^/]+)/([1-9][0-9]*)/?$ index.php?x=browse&archivedate=$1$2-$3&monthname=$4&pagenum=$5 RewriteRule ^browse/tag/([^/]+)/?$ index.php?x=browse&tag=$1 RewriteRule ^browse/tag/([^/]+)/([1-9][0-9]*)/?$ index.php?x=browse&tag=$1&pagenum=$2 RewriteRule ^comment/submit$ index.php?x=save_comment RewriteRule ^comment/([0-9]+)$ index.php?popup=comment&showimage=$1 RewriteRule ^(p|photo)/([0-9]+)$ index.php?showimage=$2 RewriteRule ^(p|photo)/([0-9]+)/rating/([1-5])$ index.php?showimage=$2&rating=$3 RewriteRule ^t/latest/?$ index.php?showthumb=latest&thumbtag=image RewriteRule ^feeds/(rss|atom).xml$ index.php?x=$1 </IfModule> (if i didn't use the wrapper, it didn't work) and my site is in http://gunawanharrison.com/ thank you |
|
#20
|
|||
|
|||
|
Never mind .....
everything is OK now thank you for sharing this great template /a |
| Post Reply |
| Thread Tools | |
|
|