How to configure Webmail and SEO Mod ?

When i am trying to view webmail it shows “WebMail probably not configured”



Someone please try to solve this problem



Second



When i try to enable SEO mods it shows “SEO URLs can’t work for now - they were disabled. Please check your Apache and mod_rewrite settings.”



how to enable them.

Any help ?

Regarding your SEO add-on problem, have you confirmed that mod_rewrite is enabled on your server?



If it is enabled and you still have a problem, look at this thread, post #10 and 11:



[url]http://forum.cs-cart.com/showthread.php?t=11174&highlight=seo[/url]



For Webmail, try disabling and then re-enabling the add-on.



Bob

Thanks webmail was now working



I confirm from webserver that mod_rewirte was enabled on their server. But to do now ?

[quote name=‘miracles’]Thanks webmail was now working



I confirm from webserver that mod_rewirte was enabled on their server. But to do now ?[/QUOTE]



Check the apache.conf file. If the directory options are set to allow override none, then .htaccess is not processed

Is your store in the root or in a subdirectory? Also a url to your site would be helpful.

it is on sub directory.



Website - www.dadusarees.in/shop



Please only open this on firefox browser

If it is a subdirectory ‘shop’ then your .htaccess file should read:



DirectoryIndex index.html index.php





RewriteEngine on

Some hostings require RewriteBase to be uncommented

Example:

Your store url is [url]http://www.yourcompany.com/store/cart[/url]

So “RewriteBase” should be:

RewriteBase /store/cart

[COLOR=“Red”]RewriteBase /shop[/COLOR]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . index.php?sef_rewrite=1 [L,QSA]



RewriteCond %{REQUEST_FILENAME} ./catalog/.

RewriteCond %{REQUEST_FILENAME} -d

RewriteCond %{REQUEST_FILENAME}/index.html !-f

RewriteRule . index.php?sef_rewrite=1 [L,QSA]



Yeah now all are working fine



Thanks all :smiley:

…And if its not in a sub directory, what should be done?

Paddy

[quote name=‘DIZZYMOTHER’]…And if its not in a sub directory, what should be done?

Paddy[/QUOTE]



DirectoryIndex index.html index.php





RewriteEngine on

Some hostings require RewriteBase to be uncommented

Example:

Your store url is [url]http://www.yourcompany.com/store/cart[/url]

So “RewriteBase” should be:

RewriteBase /store/cart

[COLOR=“Red”]RewriteBase /[/COLOR]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . index.php?sef_rewrite=1 [L,QSA]



RewriteCond %{REQUEST_FILENAME} ./catalog/.

RewriteCond %{REQUEST_FILENAME} -d

RewriteCond %{REQUEST_FILENAME}/index.html !-f

RewriteRule . index.php?sef_rewrite=1 [L,QSA]