Menu Content

Support

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

com_contacts and JoomSEF
(1 viewing) (1) Guest
Support forum for users using free edition of JoomSEF 3 (Joomla 1.5 compatible). These forums are mainly for mutual help between users.

Please note that due to our capacity limitations, we do not monitor these forums regularly.

TOPIC: com_contacts and JoomSEF

Re:com_contacts and JoomSEF 16 years, 4 months ago #3539

  • mx5gr
  • OFFLINE
  • Posts: 63
Paid version.

The rewrite rules are the default with the Joomla installation.

I can confirm that the problem with com_contacts occur in another Joomla installation on the same server (error in the redirect, after details have been submitted).

Can we at least disable SEO for com_contacts only, in order to enable contact information dispatch until problem is solved? Can this be achieved by removing com_contacts Artio SEO plugin?

Re:com_contacts and JoomSEF 16 years, 4 months ago #3541

  • miun
  • OFFLINE
  • A pesimist is just a well-informed realist.
  • Posts: 563
Well, you do not need to remove it, it is enough to disable com_content in JoomSEF config.

We have installed JoomSEF on several IIS servers with ISAPI_Rewrite (Lite) and it worked fine after some playing with the configs. But mostly it was not as straighforward as with Apache and we needed to adjust the rewrite rules. So I guess the problem is somewhere in the rewrite rules.

Maybe you can write to our paid support to have this done. Also I can put here example of the rules we used on other servers (these were however fot ISAPI_Rewrite 2 series, with v3 it might be easier):
[ISAPI_Rewrite]
 
RewriteCond Host: (www\.)?yourdomain\.com
RewriteCond URL .*(/|\.htm|\.php|\.html|/[^.?]*)(\?.*)?$
RewriteCond URL .*(?!.png|.gif|.jpg|.css|.js)(\?.*)?$
RewriteCond URL ^/(?!administrator).*
RewriteRule /([^?]*)(\?.*)? /index.php$6 [U,L]
ARTIO Support Team
Last Edit: 16 years, 4 months ago by miun.

Re:com_contacts and JoomSEF 16 years, 4 months ago #3544

  • mx5gr
  • OFFLINE
  • Posts: 63
Version 3 (the one we have) does not support rewrite rules. It supports .htaccess file.

Re:com_contacts and JoomSEF 14 years, 7 months ago #8164

Hi,

My com_contacts isn't working with joomSEF either. It does with ordinary joomla SEF.
I'm using v3.3.4

Has this been fixed?

Thanks

Re:com_contacts and JoomSEF 14 years, 5 months ago #9151

Hi,

I had the same problem recently and initially thought it was an Artio JoomSEF issue.

With Artio JoomSEF turned on, and handling SEF for the Contacts component, when submitting the contact form it would throw a "500" error page.

After some investigating, I noticed that the template override for com_contact was missing a hidden field for "option".

Check your template override for com_contact, e.g.

/templates/YOUR_TEMPLATE_FOLDER/html/com_contact/views/contact/tmpl/default_form.php

<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' ); ?>

Make sure it has the <input type="hidden" name="option" value="com_contact" /> field.

Worked for me.

Thanks.
Last Edit: 14 years, 5 months ago by salsaInternet.

Re:com_contacts and JoomSEF 14 years ago #11502

Thanks, worked for me as well.
User Login Empty