Menu Content

Support

> Forums, FAQs & Paid Support
Welcome, Guest
Username Password: Remember me

Profile for da8iwr

  • OFFLINE
  • Time Zone: GMT +0:00
  • Local Time: 19:33
  • Posts: 10
  • Profile Views: 3303
  • Location: Unknown
  • Gender: Unknown
  • Birthdate: Unknown

Signature

Posts

Posts

emo
Its ok dont worry, its because i hadnt escaped the uk at the end, it works great now like this


##
# @version $Id: htaccess.txt 9975 2008-01-30 17:02:11Z ircmaxell $
# @package Joomla
# @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
# @license www.gnu.org/copyleft/gpl.html GNU/GPL
# Joomla! is Free Software
##


#####################################################
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE
#
# The line just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations. It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file. If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's. If they work,
# it has been set by your server administrator and you do not need it set here.
#
#####################################################

## Can be commented out if causes errors, see notes above.
Options +FollowSymLinks

#
# mod_rewrite in use

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.newworlddesigns\.co\.uk$
RewriteRule (.*) www.newworlddesigns.co.uk/$1 [R=301,L]


# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just / for root)

# RewriteBase /


########## Begin - Joomla! core SEF Section
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
########## End - Joomla! core SEF Section


########## Begin - Rewrite rules to block out some common exploits
## If you experience problems on your site block out the operations listed below
## This attempts to block the most common type of exploit `attempts` to Joomla!
#
# Block out any script trying to set a mosConfig value through the URL
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via URL
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]
#
########## End - Rewrite rules to block out some common exploits

Many thanks
Ian :)
non www to www Canon ...
Category: JoomSEF 3
emo
Hi there,

I have tried looking all over and cant find the solution. Im using Artio 3.3.2 on the latest Joomla and im wanting to redirect non www to www. so for example -
google.com
redirect to
www.google.com

I have tried this i i found on a site, and cant get it to work in the HT access file.
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.seo-consultant-services\.co.uk$
RewriteRule (.*) www.seo-consultant-services.co.uk/$1 [R=301,L]

Where would i put it in the normal artio htaccess file?

This is my file so far

##
# @version $Id: htaccess.txt 9975 2008-01-30 17:02:11Z ircmaxell $
# @package Joomla
# @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
# @license www.gnu.org/copyleft/gpl.html GNU/GPL
# Joomla! is Free Software
##


#####################################################
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE
#
# The line just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations. It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file. If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's. If they work,
# it has been set by your server administrator and you do not need it set here.
#
#####################################################

## Can be commented out if causes errors, see notes above.
# Options +FollowSymLinks

#
# mod_rewrite in use

RewriteEngine On


# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just / for root)

# RewriteBase /


########## Begin - Joomla! core SEF Section
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
########## End - Joomla! core SEF Section


########## Begin - Rewrite rules to block out some common exploits
## If you experience problems on your site block out the operations listed below
## This attempts to block the most common type of exploit `attempts` to Joomla!
#
# Block out any script trying to set a mosConfig value through the URL
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via URL
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]
#
########## End - Rewrite rules to block out some common exploits

<IfModule mod_gzip.c>
mod_gzip_on yes
mod_gzip_item_include mime text/html
mod_gzip_item_include mime text/plain
#configure CSS files to be compressed using GZIP-encoding
mod_gzip_item_include file \.css$
mod_gzip_item_include mime ^text/css$

#configure Javascript files to be compressed using GZIP-encoding
mod_gzip_item_include file \.js$
mod_gzip_item_include mime ^application/x-javascript$
mod_gzip_item_include mime application/xml
mod_gzip_dechunk yes
mod_gzip_min_http 1000
mod_gzip_temp_dir /tmp
mod_gzip_keep_workfiles No
mod_gzip_minimum_file_size 1000
mod_gzip_maximum_file_size 0
mod_gzip_maximum_inmem_size 1000000
mod_gzip_can_negotiate Yes
</IfModule>

FileETag MTime Size


<ifmodule mod_expires.c>
<filesmatch "\.(jpg|gif|png|css|js)$">
ExpiresActive on
ExpiresDefault "access plus 1 year"
</filesmatch>
</ifmodule>
#
########## End of Optimization

AddHandler application/x-httpd-php5 .php

Many thanks
Ian
non www to www Canon ...
Category: JoomSEF 3
emo
Thanks i had exactly the same issue with error500 when submitting the contact form. I had used the Beez template component override and it had the missing line

<input type="hidden" name="option" value="com_contact" />

from

<button class="button-validate" type="submit"><?php echo JText::_('Send'); ?></button>
<input type="hidden" name="option" value="com_contact" />
<input type="hidden" name="view" value="contact" />
<input type="hidden" name="id" value="<?php echo $this->contact->id; ?>" />
<input type="hidden" name="task" value="submit" />
<?php echo JHTML::_( 'form.token' ); ?>

In file
templates/(templatename)/html/com_contact/contact/default_form.php

Do a search for the other lines and you will find the lines of code and you can add the line in correctly as above

Thanks again
Ian
com_contact joomsef ...
Category: Extensions
emo
Just a few of the order numbers from me
5126, 2357, 2355, 2075, 583, 584, 639 from the quick search on my emails
Actually i have bought this many many times for different clients so I'm not sure which this one is related to.
J1.5.12 - VM 1.1.3, Artio component 3.3.2 VM SEF ext 2.0.2


I have found that when i view my site with the Base meta tag turned on, it is prefilling the base tag with a non SSL URL.
www.airbossworld.com/
and giving me the warning
Do you want to view only the webpage content that was delivered securely
The webpage contains content that will not be delivered using a secure HTTPS connections, which could compromise the security of the entire page

This appears to only be showing in IE8, not in FF?

The problem is that virtuemart needs to have SSL turned on for the gateway (HSBC will only work with it on), but the client doesn't want it on permanently as you cant press back after a search, as it gives you warnings.

But the base tag still says the none SSL URL, so the links to the CSS and JS files are all non SSL.

If we turn the Base tag off in the plugin, the images stop working when your more than one level deep in the site.

Do you know if there is a fix for this?

I use this a lot and push it to every new client i get, and you can see by the invoices, i always buy it, so any advice will be great as i need this sorting asap as my client is not happy.

Many thanks
Ian
SSL Errors because o ...
Category: JoomSEF 3
emo
File does not exist in upgrade package: /site/sef_ext/com_docman.xml

Errors detected when upgrading JoomSEF. Please check the errors reported above and repeat the upgrade process.

Hi there, im getting this message in my site from my paid commercial version of the component and Virtue Mart..

Installed version: 3.1.2
Newest version: 3.3.2

So I have deleted the doc manager expension and it is still doing it.

Have you any advice please, or where i can download the correct patch from.

The reason i need this is im assuming this is the reason my site wont convert links in the content to SEF URLs, you can see it here.

www.airbossworld.com/

Many thanks
Ian
File does not exist ...
Category: JoomSEF 3
emo
I see that there is now the new version which fixes this, but i cant auto download the new version to upgrade, as it says the above error.

Where can i download the upgrade files from?

I have 3.0.2 now

Regards
Ian
Upgrade Error
Category: JoomSEF 3
emo
I have the exact same problem with my site. I am using Mosets Tree 1.59 as i am also using gomoxi maps on it, and they havent released a compatible version for 2.1 yet.

Any chance of a little help Artio
Mosets extension not ...
Category: JoomSEF 3
emo
Did you modify the joomlaboard extension or try this one, which i believe is just a modified version of joomlaboard as well?

www.ballewsawandtool.com/forum/fireboard...-joomsef-plugin-for- fire.html
Too Many Pages - Fir ...
Category: JoomSEF 3
emo
There is something distinctly wrong with a commercial service/product that you pay for, when there are support questions that are not answered from May 2007 (5 months ago).

When you can find find the answer for free on other web sites, where other people have had to produce and released the answer for free to fit a paid solution, it shows there is something wrong.

When you pay for a product, your supposed to be paying for the support as well.

www.ballewsawandtool.com/forum/fireboard...plugin-for-fire.html

This has different versions of plugins designed for Artio, to make FireBoard work correctly, they have plugins for 1.5 and the newest 2.1.1 Artio versions.

Keep up Artio, it appears others are having to club together on other forums to make up for the lack of support and extensions here.<br><br>Post edited by: da8iwr, at: 2007/09/12 00:20
1.5.1 break Fireboar ...
Category: JoomSEF 3
emo
I have the same request, as i have the same problem
www.virtuemartfrooglefeed.com/froogle-feed-forum.html

You can see that my fireboard is working fine, but it just doesn't want to show the titles of the categories or threads in the URLs, is there any way of doing this?

I am using version 1.5.1 mind you, will it help if i upgrade to the current version 2.1.1?

Kindest regards
Ian
1.5.1 break Fireboar ...
Category: JoomSEF 3
More
User Login Empty