| Author |
Message |
Anonymous
|
Posted: 6 Feb 2006 16:12:14
Hiya i was wondering if someone could help me, iv jusr installed the skalinks on my website, everything went fine, iv just added a link now when i click on 'More Info' to see the description of that link i get a 404 error. i just cant figure out why im getting that error displayed
All help appriciated
Emma
|
skalinks Admin
|
Posted: 7 Feb 2006 04:11:59
Check, if the mode rewrite option is enabled on your hosting.
|
Anonymous
|
Posted: 7 Feb 2006 06:42:03
Hiya again, thanx for your quick reply, iv just checked, the mode rewrite option is enabled on the compnay im hosting with, plus iv enabled the ReWrite Engine Mode ON, i still get the 404 error page
Emma
|
Anonymous
|
Posted: 7 Feb 2006 06:46:13
The 'More Info' link works fine when ReWrite Engine Mode is OFF, but i really like this feature and i would like to have it ON
Emma
|
BEN Member
|
Posted: 7 Feb 2006 10:37:34
Hi Emma,
Did you know that the more info link doesnt actually give any more info!! I think SL are looking at changing this for the next version.
I removed the code completley.
Ben
|
Anonymous
|
Posted: 7 Feb 2006 15:47:25
I removed the code completley.
I'd like to remove this as well. Could you tell me which file & what lines of code to eliminate. Thank you
|
BEN Member
|
Posted: 8 Feb 2006 01:12:57
Do a search in your site files for "More info", it will pull up the file containg the text....think cat.tpl..........not 100% as I've deleted it now!! Then just look at the code and take out what you dont want.
|
skalinks Admin
|
Posted: 10 Feb 2006 05:42:08
The "More info" link is necessary not only for additional link description, but also for the number of pages doubling.
|
Anonymous
|
Posted: 16 Feb 2006 11:21:46
Hiya again, i still havent managed to sort out this little problem, iv had a word with my hosting company, they have tole me mod rewrite is availeable on my server, but these directives are disabled:
Action, AddCharSet, AddEncoding, AddLanguage, AddType, BrowserMatch, BrowserMatchNoCase, CookieTracking, DefaultLanguage, DefaultType, ErrorDocument, ErrorHeader, Header, LanguagePriority, Options, PassEnv, Redirect, RedirectMatch, RedirectPermanent, RedirectTemporary, SetEnv, SetEnvIf, SetEnvIfNoCase, UnsetEnv
is there anyway of overcoming this problem?
All help appriciated
Emma
|
skalinks Admin
|
Posted: 17 Feb 2006 05:31:32
Hi, the only way to solve the problem is to change the hosting provider.
You can use this hosting their host fits best for our soft and people there are in touch about our soft, and they can help you if something goes wrong.
|
WTM Member
|
Posted: 22 Mar 2006 03:16:36 ° Edited by: WTM
If you are using 1&1 hosting this is what you need to do:
In .htaccess file after the line:
RewriteEngine on
add next line:
RewriteBase /your_links_directory/
where "your_links_directory" is actual directory of your script
If you installed directory script on the root than your .htaccess file should look like this:
# BEGIN SkaLinks
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteRule ^(.*)detailed/listing([0-9]*)\.html $1detailed/listing.php?link_id=$2
RewriteRule search_(.*)\.html search.php?$1
RewriteRule ^(.*)page([0-9]*)\.html $1index.php?page=$2
RewriteRule ^(.*)index.html $1index.php
</IfModule>
# END SkaLinks
If it is installed in the directory lets say your_domain.com/links
than RewriteBase should be:
RewriteBase /links/
It did the trick for me with 1&1 hosting. I don't know if it will work with other hosts.
Good luck!
|
|