sitemap  |  contact

Sakic.Net Forum
09 January 2009, 15:05 *
Welcome, Guest. Please login or register.
Did you miss your activation email?
Login with username, password and session length
News: Introducing AJAX Scroller - Joomla News Slider Module: http://www.sakic.net/news/introducing_ajax_scroller/
 
  Home Help Search Login Register  
  Show Posts
Pages: [1]
1  Products / SEF Advance / Re: SEF Advance with My Blog? on: 27 January 2008, 19:21
Yeah I downloaded that from their forum and put it into the root of the My Blog component. However that kinda makes things worse. With that file in place if I click on any Read More link all my side modules dissapear BUT I do see the entire article AND the URL is SEF. I've tried this using several different templates and they all behave in the same way.

I've set all the relevant modules to be visible on the My Blog pages but this has no effect, in fact the ONLY way I can get the modules to remain visible is by setting the modules to appear on ALL pages but there are certain pages on my site where I simply don't want any modules to be visible. Oh and guess what? If I do set the modules to always be visible and then click on any Read More link I then get the message saying that it can't find the article!
2  Products / SEF Advance / Re: SEF Advance with My Blog? on: 27 January 2008, 18:57
I'm using Pro 1.0 Build 105
3  Products / SEF Advance / Re: SEF Advance with My Blog? on: 27 January 2008, 18:28
Wow, that's nothing like my screen!!!?Huh


4  Products / SEF Advance / Re: SEF Advance with My Blog? on: 26 January 2008, 21:37
Hello,

When you create an entry (post) in MyBlog, you can see a field called permanent link;

You do??  Huh Huh

I don't see anything like that at all  Sad

5  Products / SEF Advance / Re: SEF Advance with My Blog? on: 24 January 2008, 21:55

When you create an entry in your blog, you need to copy the title and paste in the permanent link

Sorry, I'm probably being thick but where do you paste the permanent link?
6  Products / SEF Advance / SEF Advance with My Blog? on: 22 January 2008, 14:04
Has anyone got SEF Advance to work with My Blog from www.azrul.com?

I've installed the extension for it in the My Blog components folder and yes this does create SEF URL's EXCEPT that the url's now end in .html.html and I get this error message when I click on the Read more link:

Cannot find the entry.The user has either change the permanent link or the content has not been published.

Also when using the extension I find that all my modules dissapear when I click on the main menu which links to the My Blog component.

This is driving me nuts!
7  Products / SEF Advance / Re: Getting 403 error on just one page on: 16 January 2008, 17:39
Update:

Well I've got it all working I just don't understand why what I did made a difference. I just added .html to the suffix field in the SEF Advance configuration, unpublished the alaises I'd set up for /gallery2/ and hey presto it's working again  Huh Huh Huh Huh Huh

It's great that it's working, just wish I knew why it didn't work in the first place and why adding .html makes it work!
8  Products / SEF Advance / Re: Getting 403 error on just one page on: 16 January 2008, 15:46
Have now kinda got it working. If I enter an alias it will work but ONLY if I don't use the word gallery. In other words the 'correct' url should be www.peakoverload.com/gallery/ but instead I'm having to use www.peakoverload.com/gallery2/

This is fine for people just navigating around my site but I've posted links to my gallery all over the  Internet and now if any of those are clicked on they'll just get the 403.
9  Products / SEF Advance / Getting 403 error on just one page on: 16 January 2008, 15:05
I've recently installed SEF Advance and it appears to be working correctly everywhere on my site except one page where I just get a 403 Forbidden message.

The page in question is for my gallery which is a static content page (but I have other static content pages that work fine) that has a .swf file embeded into it. The gallery I'm using is SlideShow Pro and I'm also using Slideshow Pro director so that I can administer my gallery online without having to use Flash MX or edit any XML files.

If I access my gallery via Slideshow Pro Director it all works fine and if I disable SEF Advance then I can access the gallery from my main menu's in Joomla. So the problem does seem to be caused either in part or totally by SEF Advance.

This is my .htaccess file

Code:
   1.
      #
   2.
      # mod_rewrite in use
   3.
      #
   4.
   5.
      RewriteEngine On
   6.
   7.
      # Uncomment following line if you get 403 Forbidden Error
   8.
   9.
      Options +FollowSymLinks
  10.
  11.
      # Uncomment following line if your webserver's URL
  12.
      # is not directly related to physival file paths.
  13.
      # Update YourMamboDirectory (just / for root)
  14.
  15.
      #RewriteBase /YourMamboDirectory
  16.
  17.
      #
  18.
      # Rules
  19.
      #
  20.
  21.
      #RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR]
  22.
      RewriteCond %{REQUEST_FILENAME} !\.(jpg|jpeg|gif|png|css|js|pl|txt)$
  23.
      RewriteCond %{REQUEST_FILENAME} !-f
  24.
      RewriteCond %{REQUEST_FILENAME} !-d
  25.
      RewriteRule ^(.*) index.php
  26.
  27.
      ########## Begin - Rewrite rules to block out some common exploits
  28.
      ## If you experience problems on your site block out the operations listed below
  29.
      ## This attempts to block the most common type of exploit `attempts` to Joomla!
  30.
      #
  31.
      # Block out any script trying to set a mosConfig value through the URL
  32.
      RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
  33.
      # Block out any script trying to base64_encode crap to send via URL
  34.
      RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
  35.
      # Block out any script that includes a <script> tag in URL
  36.
      RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
  37.
      # Block out any script trying to set a PHP GLOBALS variable via URL
  38.
      RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
  39.
      # Block out any script trying to modify a _REQUEST variable via URL
  40.
      RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2}) [OR]
  41.
      # Block out any script trying to execute an extern script in the URL
  42.
      RewriteCond %{QUERY_STRING} http [OR]
  43.
      RewriteCond %{QUERY_STRING} ftp
  44.
      # Send all blocked request to homepage with 403 Forbidden error!
  45.
      RewriteRule ^(.*)$ index.php [F,L]
  46.
      #
  47.
      ########## End - Rewrite rules to block out some common exploits

Rendering Time: 0 Sec.
[ Top ]



Commenting or uncommenting line 9 doesn't make a difference. If the truth be known, having now tried so many different things to get this to work I now can't remember where this .htaccess file came from. I can't remember if it came from the default Joomla installation, whether it came with SEF Advance or if read somewhere that this one should work.

Like I say SEF Advance is working in all other areas of my site it's just this one static page that doesnt work

My site is www.peakoverload.com

Any ideas?
Pages: [1]