
http://maxim.zp.ua/users/2/files.html
Hello.

http://maxim.zp.ua/users/2/files.html
facebook: the meeting point ebay: the market place CMSimple: your home at the www
Impressum - Legal Notice | Datenschutzerklärung - Privacy Policy
Code: Select all
<?php echo loginlink();?>
Code: Select all
<a href="http://vitalij.maxim.zp.ua/login.html">Вход</a>
Code: Select all
<?php echo loginlink();?>
Code: Select all
<a href="http://vitalij.maxim.zp.ua/login.html">Login</a>
Здравствуйте,
CMSimple - не несет ответственности за доработки.
Герт
Hallo,
das Forum "Andere Lösungen" ist ein Forum für Lösungen, die nicht als Plugin oder Addon realisiert wurden, insbesondere für Lösungen, die geänderte Systemdateien enthalten.
CMSimple (cmsimple.org) übernimmte keinerlei Verantwortung für solche Lösungen,
Gert
"mysite.com/?Test_1___Test_2___Test_3" так же хорошо, как "mysite.com/Test_1/Test_2/Test_3.html", как для людей, так и для поисковых систем.
Это не является необходимым и даже не планируется.
"mysite.com/?Test_1___Test_2___Test_3" ist genauso gut wie "mysite.com/Test_1/Test_2/Test_3.html", sowohl für Menschen als auch für Suchmaschinen.
Es ist nicht notwendig und auch nicht geplant.
Hi Maxim,Maxim wrote:I get the feeling that you are offended at me and ignore.
No problem, you may share it, if you want.Maxim wrote:If you want, I will not share Clean URLs.
Code: Select all
<?php // utf8-marker = äöü
/*
==================================================
File modified by addon CleanURLs for CMSimple
Released: 2013-08-01
URL: http://maxim.zp.ua/users/2/files.html
==================================================
*/
// Original System Info:
/*
==================================================
This file is a part of CMSimple 4.2.2
Released: 2013-07-12
Project website: www.cmsimple.org
...
Code: Select all
// version-informations
define('CMSIMPLE_XH_VERSION', 'CMSimple 4.2.2 with CleanURLs Addon'); //for compatibility CMSimple_XH
define('CMSIMPLE_XH_BUILD', 2013080101); //for compatibility CMSimple_XH
define('CMSIMPLE_XH_DATE', '2013-08-01'); //for compatibility CMSimple_XH
define('CMSIMPLE_VERSION', 'CMSimple 4.2.2 with CleanURLs Addon');
define('CMSIMPLE_RELEASE', 2013080101);
define('CMSIMPLE_DATE', '2013-08-01');
define('CMSIMPLE_VERSIONSINFO', 'http://www.cmsimple.org/downloads_cmsimple40/versioninfo/version.nfo');
//END version-informations
Code: Select all
function printlink()
{
global $f, $search, $file, $sn, $tx, $adm;
$t = amp() . uenc($tx['menu']['print']);
if ($f == 'search')
$t .= amp() . 'function=search' . amp() . 'search=' . htmlspecialchars(stsl($search), ENT_COMPAT, 'UTF-8');
else if ($f == 'file')
$t .= amp() . 'file=' . $file;
else if ($f != '' && $f != 'save')
$t .= amp() . $f;
else if (sv('QUERY_STRING') != '')
$t = htmlspecialchars(sv('QUERY_STRING'), ENT_COMPAT, "UTF-8") . $t;
return '<a href="' . $sn . '' . $t . '.html" target="_blank">' . $tx['menu']['print'] . '</a>';
}
Code: Select all
function printlink()
{
global $f, $search, $file, $sn, $tx, $adm;
$t = amp() . 'print';
if ($f == 'search')
$t .= amp() . 'function=search' . amp() . 'search=' . htmlspecialchars(stsl($search), ENT_COMPAT, 'UTF-8');
else if ($f == 'file')
$t .= amp() . 'file=' . $file;
else if ($f != '' && $f != 'save')
$t .= amp() . $f;
else if (sv('QUERY_STRING') != '')
$t = htmlspecialchars(sv('QUERY_STRING'), ENT_COMPAT, "UTF-8") . $t;
return '<a href="' . $sn . '?' . $t . '">' . $tx['menu']['print'] . '</a>';
}
Code: Select all
function printlink($img_src = '')
{
global $f, $search, $file, $sn, $tx, $pth;
$t = amp().uenc($tx['menu']['print']);
$title = $tx['menu']['print'];
if ($f == 'search')
$t .= amp() . 'function=search' . amp() . 'search=' . htmlspecialchars(stsl($search));
else if ($f == 'file')
$t .= amp() . 'file=' . $file;
else if ($f != '' && $f != 'save')
$t .= amp() . $f;
else if (sv('QUERY_STRING') != '')
$t = htmlspecialchars(sv('QUERY_STRING'), ENT_QUOTES, "UTF-8") . $t;
$link = '';
if ($img_src != '')
{
$link = tag('img title="' . $title . '" src="' . $pth['folder']['template'] . 'images/' . $img_src . '" alt="' . $title . '"');
}
else
{
$link .= $title;
}
return '<a href="'.$sn.''.$t.'.html" target="_blank">' . $tx['menu']['print'] . '</a>';
}
Code: Select all
function printlink($img_src = '')
{
global $f, $search, $file, $sn, $tx, $pth;
$t = amp().'print';
$title = $tx['menu']['print'];
if ($f == 'search')
$t .= amp() . 'function=search' . amp() . 'search=' . htmlspecialchars(stsl($search));
else if ($f == 'file')
$t .= amp() . 'file=' . $file;
else if ($f != '' && $f != 'save')
$t .= amp() . $f;
else if (sv('QUERY_STRING') != '')
$t = htmlspecialchars(sv('QUERY_STRING'), ENT_QUOTES, "UTF-8") . $t;
$link = '';
if ($img_src != '')
{
$link = tag('img title="' . $title . '" src="' . $pth['folder']['template'] . 'images/' . $img_src . '" alt="' . $title . '"');
}
else
{
$link .= $title;
}
return '<a href="'.$sn.'?'.$t.'">' . $link . '</a>';
}
Code: Select all
return '<a href="'.$sn.''.$t.'.html" target="_blank">' . $tx['menu']['print'] . '</a>';
Code: Select all
return '<a href="'.$sn.''.$t.'.html" target="_blank">' . $link . '</a>';