Link-Liste - Link öffnen klappt nicht

Hallo liebe Oxid-Freunde,

ich habe eben die Link-Liste in meinem Shop 4.7.8 gepflegt und festgestellt, dass die gesetzten Links nicht funktionieren:

Die angeforderte Seite [I][B]‘links/www.f7.de/’[/B][/I] konnte nicht gefunden werden.

mod_rewrite scheint sauber zu funktionen. Der Shop macht an sich da auch keine zicken. Hat jemand eine Idee, warum das Öffnen über _blank nicht funktioniert?

Vielleicht kann mir jemand einen Tipp geben :slight_smile:

Viele Grüße
Joachim

Die .htacess sieht so aus:

AddHandler af_php53 .php
SetEnv PHPRC /home/www/doc/8839/f7.de/projekte/dev-hsv/

In case you want to add a .htpasswd authentification

you’ll have to add the host of the shop as an allowed entity,

so that calls from the host skip the authentification

Example:

Order Deny,Allow

Deny from All

AuthType Basic

AuthName “Access not allowed”

AuthUserFile path_to_htpasswd_file/.htpasswd

Require valid-user

Allow from localhost

Satisfy Any

<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]

RewriteCond %{REQUEST_URI} oxseo.php$
RewriteCond %{QUERY_STRING} mod_rewrite_module_is=off
RewriteRule oxseo.php$ oxseo.php?mod_rewrite_module_is=on [L]

RewriteCond %{REQUEST_URI} !(/admin/|/core/|/application/|/export/|/modules/|/out/|/setup/|/tmp/|/views/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !(.html|/|.jpg|.css|.pdf|.doc|.gif|.png|.js|.htc)$ %{REQUEST_URI}/ [R=301,L]

RewriteCond %{REQUEST_URI} !(/admin/|/core/|/application/|/export/|/modules/|/out/|/setup/|/tmp/|/views/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.html|/)$ oxseo.php

RewriteCond %{REQUEST_URI} (/out/pictures/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.jpe?g|.gif|.png)$ getimg.php

</IfModule>

disabling log file access from outside

<FilesMatch “(EXCEPTION_LOG.txt|.log$|.tpl$|pkg.rev|.ini|pkg.info|.pem$)”>
order allow,deny
deny from all
</FilesMatch>

Options -Indexes
DirectoryIndex index.php index.html

Nachtrag: zum Teil mein Fehler. Mit “http://” funktioniert zumindest schon mal der Link. Nur geht die Site dann nicht in einem neuen Tab auf, was natürlich nicht so schön ist.

Vielleicht den Link mit http://www. … eintragen?

Habe ich ja, so sind die jetzt eingetragen, öffnet sich aber leider im Tab des Shops. Ich suche gerade die .tpl. dazu…

/application/views/azure/tpl/page/info/links.tpl

Ich habe das Problem direkt in der “links.tpl” [/tpl/page/info/] gelöst.

<span>[{* $link->oxlinks__oxinsert->value|date_format:"%d.%m.%Y" *}] </span> <a href="[{ $link->oxlinks__oxurl->value }]" [B]target= “_blank”[/B]>[{ $link->oxlinks__oxurl->value }]</a>

Danke und Gruß
Joachim