Для вступления в общество новичков и профессионалов домен-индустрии, пожалуйста нажмите здесь ...

   
 Купля-продажа и обсуждение доменных имён
        

  
Вернуться   Форум о доменах > Дизайн и развитие проектов > Программирование
Регистрация Реноме Правила форума Справка Сообщество
Программирование PHP, Perl, HTML, XHTML, CSS, JavaScript, MySQL и другие языки кодирования.

Ответ
 
Опции темы
Сегодня
от 149р за .RU
Аренда сервера
2x Intel Hexa-Core Xeon E5-2420
Всего 79 евро!

с видеокартой GeForce GTX 1080 Ti
всего 99 евро!

от 149р за .РФ Реклама на DomenForum.net
Старый 30.08.2011, 12:36   #1
 
Аватар для polnik
 
Регистрация: 15.08.2010
Сообщений: 75
Доменные сделки: 0
Реноме:
Одобрения
Спасибо (Отдано): 4
Спасибо (Получено): 0
Отправить сообщение для polnik с помощью ICQ
Нужна помощь в русификации domainportfolio

Нужна помощь с русификацией domainportfolio
Конечно тема уже устаревшая, однако облазил все
все ссылки битые
но вопрос не с русификацией, вопрос .....
при вводе кириллицей в админке (описание, кейвордс) или в контактас - происходит обнуление, поля очищаются и сообщение - "заполните данные поля"
Думаю что нужно что то изменить или добавить functions.php поскольку, на сколько я знаю за этот процесс обнуления отвечает sanitize

Вообщем подскажите что нужно сделать

PHP код:
<?php

/**
* @author    Eric Sizemore <admin@domainportfolio.us>
* @package   Domain Name Portfolio
* @link      www.domainportfolio.us
* @version   1.6.0
* @copyright (C) 2006 - 2009 Eric Sizemore
* @license   http://www.domainportfolio.us/docs/license.html GNU Public License
* @file      ./includes/functions.php
*/

if (!defined('IN_DNP'))
{
    die(
'You\'re not supposed to be here.');
}

/**
* Strip any unsafe tags/chars/attributes from input values.
*
* @param  string   $value       Value to be cleaned
* @param  boolean  $strip_crlf  Strip \r\n ?
* @param  boolean  $is_email    If the value is an email, pass it through the email sanitize filter.
* @return string                Sanitized value.
*/
function sanitize($value$strip_crlf true$is_email false)
{
    
$value preg_replace('@&(?!(#[0-9]+|[a-z]+);)@si'''$value);

    if (
$is_email)
    {
        
/**
        * PHP versions older than 5.2.11 have bugs in FILTER_SANITIZE_EMAIL
        * It allows characters that shouldn't be allowed.
        *
        * We will only sanitize the email if they are using 5.2.11 and greater.
        * This shouldn't pose a problem on < 5.2.11 cause we validate the email
        * later on anyway.
        */
        
if (version_compare(PHP_VERSION'5.2.11''>='))
        {
            
$value filter_var($valueFILTER_SANITIZE_EMAIL);
        }
    }
    else
    {
        
$value filter_var($valueFILTER_SANITIZE_STRINGFILTER_FLAG_STRIP_HIGH);
    }

    
// This will strip new line characters if $strip_crlf is set to true.
    
if ($strip_crlf)
    {
        
$value preg_replace('@([\r\n])[\s]+@'''$value);
    }

    return 
clean($value);
}

/**
* Clean values pulled from the database, although could be used on anything.
*
* Cleans either a string, or can clean an entire array of values:
*    clean($array);
*
* @param  mixed  $value  Value to be cleaned
* @return mixed          Cleaned array or string.
*/
function clean($value)
{
    if (
is_array($value))
    {
        foreach (
$value AS $key => $val)
        {
            if (
is_string($val))
            {
                
$value["$key"] = trim(stripslashes($val));
            }
            else if (
is_array($val))
            {
                
$value["$key"] = clean($value["$key"]);
            }
        }
        return 
$value;
    }
    return 
trim(stripslashes($value));
}

/**
* Will make sure a variable is valid.
*
* @param  string  $option  What to check
* @param  mixed   $value   What to check's value.
* @return mixed            Depending on the $option, could return a string, NULL, or boolean.
*/
function is($option$value)
{
    global 
$db;

    switch (
$option)
    {
        case 
'orderby':
            if (!
in_array($value, array('domain''category''registrar''expiry''price''status')))
            {
                return 
'domain';
            }
            break;
        case 
'catid':
            if (
is_string($value))
            {
                return 
NULL;
            }
            else if (
is_integer($value) AND !is('category'$value))
            {
                return 
NULL;
            }
            break;
        case 
'email':
            return (bool)(
preg_match('#^[a-z0-9.!\#$%&\'*+-/=?^_`{|}~]+@([0-9.]+|([^\s\'"<>]+\.+[a-z]{2,6}))$#si'$value));
            break;
        case 
'injection':
            return (bool)(
preg_match('#(To:|Bcc:|Cc:|Content-type:|Mime-version:|Content-Transfer-Encoding:)#i'urldecode($value)));
            break;
        case 
'spam':
            
preg_match_all('#(<a href|\[url|http[s]?://)#i'$value$matchesPREG_PATTERN_ORDER);
            return (bool)(
count($matches[0]) > 2);
            break;
        case 
'domain':
            
$getdomain $db->query("
                SELECT *
                FROM " 
TABLE_PREFIX "domains
                WHERE " 
. (is_numeric($value) ? "domainid = " intval($value) : "domain = '$value'") . "
            "
);

            
$numrows $db->num_rows($getdomain);
            
$db->free_result($getdomain);

            return (bool)(
$numrows 0);
            break;
        case 
'category':
            if (
is_numeric($value) AND $value == 0)
            {
                return 
true;
            }

            
$getcategory $db->query("
                SELECT *
                FROM " 
TABLE_PREFIX "categories
                WHERE " 
. (is_numeric($value) ? "catid = " intval($value) : "title = '$category'") . "
            "
);

            
$numrows $db->num_rows($getcategory);
            
$db->free_result($getcategory);

            return (bool)(
$numrows 0);
            break;
        case 
'expdate':
            
$value str_replace('-''/'$value);

            
// Expects mm/dd/yyyy Example: 8/30/2009
            
if (preg_match('#[0-9]{2}/[0-9]{2}/[0-9]{4}#'$value))
            {
                
$value explode('/'$value);

                if (
$value[2] < date('Y'))
                {
                    return 
false;
                }

                if (
checkdate($value[0], $value[1], $value[2]))
                {
                    return 
true;
                }
            }
            return 
false;
            break;
    }
    return 
$value;
}

/**
* Get the users ip address.
*
* @param  void
* @return string  IP Address
*/
function get_ip()
{
    
$ip dnp_getenv('REMOTE_ADDR');

    if (
dnp_getenv('HTTP_X_FORWARDED_FOR'))
    {
        if (
preg_match_all('#\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}#s'dnp_getenv('HTTP_X_FORWARDED_FOR'), $matches))
        {
            foreach (
$matches[0] AS $match)
            {
                if (!
preg_match('#^(10|172\.16|192\.168)\.#'$match))
                {
                    
$ip $match;
                    break;
                }
            }
            unset(
$matches);
        }
    }
    else if (
dnp_getenv('HTTP_CLIENT_IP'))
    {
        
$ip dnp_getenv('HTTP_CLIENT_IP');
    }
    else if (
dnp_getenv('HTTP_FROM'))
    {
        
$ip dnp_getenv('HTTP_FROM');
    }

    if (!
filter_var($ipFILTER_VALIDATE_IP))
    {
        return 
'0.0.0.0';
    }
    return 
$ip;
}

/**
* Returns an environment variable.
*
* @param  string  $varname  Variable name, eg: PHP_SELF
* @return string            Variable's value.
*/
function dnp_getenv($varname)
{
    if (isset(
$_SERVER[$varname]))
    {
        return 
$_SERVER[$varname];
    }
    else if (isset(
$_ENV[$varname]))
    {
        return 
$_ENV[$varname];
    }
    return 
'';
}

/**
* A wrapper for date that will format dates using the UTC timezone.
* This is used for domain expiration dates as UTC is pretty much 
* the standard for domain expiration dates.
*
* @param  string   $format     Date format
* @param  integer  $timestamp  Unix timestamp
* @return string               Formatted date
*/
function dnp_date($format$timestamp)
{
    if (empty(
$timestamp))
    {
        
$timestamp time();
    }

    
// Get the current timezone
    
$current_tz date_default_timezone_get();

    
// Set to UTC, as that's pretty much the standard for domain expiration
    
date_default_timezone_set('UTC');

    
// format the time
    
$date date($format$timestamp);

    
// Set back to old timezone
    
date_default_timezone_set($current_tz);

    return 
$date;
}

/**
* Returns a md5'ed hash.
*
* @param  string  $string  String to hash
* @return string  Hash
*/
function dnp_hash($string)
{
    return 
hash('md5'$string);
}

/**
* Helper function for encode_email
*
* @param  string  $char  Character to encode.
* @return string         Encoded character.
*/
function _encode_email_helper($char 0)
{
    return 
'&#' ord($char) . ';';
}

/**
* Encodes an email address, if that email is valid.
*
* At this time, this will mainly be used on database error pages, that
* places the email address in HTML.
*
* @param  string  $email  Email address to encode.
* @return string          Encoded email address if valid, or plain email if not valid.
*/
function encode_email($email)
{
    if (
is('email'$email))
    {
        
$chars str_split($email);

        
$encoded filter_var($charsFILTER_CALLBACK, array('options' => '_encode_email_helper'));
        
$encoded implode(''$encoded);

        unset(
$chars);

        return 
$encoded;
    }
    return 
$email;
}

/**
* Redirects to another URL.
*
* @param  string  $url  Destination url
* @return void
*/
function redirect($url)
{
    if (
count($_SESSION))
    {
        
session_write_close();
    }

    
$url filter_var($urlFILTER_SANITIZE_URL);

    
header("Location: $url"true302);
    exit;
}

/**
* Generates the pagination.
*
* @param  integer  $numresults  Total number of results.
* @param  integer  $page        Current page
* @param  string   $orderby     Sort order
* @param  integer  $catid       Category ID (if any)
* @param  string   $search      Search query (will only be used for search.php)
* @return array                 Array consisting of SQL limit, and pagination links.
*/
function paginate($numresults$page$orderby NULL$catid NULL$search NULL)
{
    global 
$config;

    
$usedefault = (bool)($config->get('template') == 'default' AND !defined('IN_ADMIN'));
    
$link '';
    
$extra = array();

    if (
$numresults 0)
    {
        
$perpage = ($config->get('maxperpage') <= 10) ? 10 $config->get('maxperpage');
        
$numpages ceil($numresults $perpage);
        
$numpages = ($numpages == 0) ? $numpages;
        
$page = ($page 1) ? : ($page $numpages $numpages $page);

        
// Currently using sort?
        
if (!is_null($orderby))
        {
            
array_push($extra"&amp;sort=$orderby");
        }

        
// Browsing a category?
        
if (!is_null($catid))
        {
            
array_push($extra"&amp;cat=$catid");
        }

        
// Searching?
        
if (!is_null($search))
        {
            
array_push($extra'&amp;query=' urlencode($search));
        }

        
$extra implode(''$extra);

        
// Generate Links - I know, it looks messy, but it works :P
        // It'll be something like: 1 ... 4 5 6 7 8 ... 15
        
if ($page 1)
        {
            
$link .= " <a href=\"?page=1$extra\">First</a>";

            if (
$page AND $page != 4)
            {
                
$link .= ($usedefault) ? ' <span class="current">&hellip;</span>' '&hellip;';
            }
        }

        for (
$i = ($page 2), $stop = ($page 3); $i <= $stop; ++$i)
        {
            if (
$i OR $i $numpages)
            {
                continue;
            }

            if (
$page == $i)
            {
                
$link .= ($usedefault) ? " <span class=\"current\">$i</span> " " <strong>[$i]</strong> ";
            }
            else
            {
                
$link .= " <a href=\"?page=$i$extra\">$i</a> ";
            }
        }

        if (
$page <= ($numpages 3) AND $page != ($numpages 3))
        {
            
$link .= ($usedefault) ? ' <span class="current">&hellip;</span>' '&hellip;';
        }

        if (
$page $numpages)
        {
            
$link .= " <a href=\"?page=$numpages$extra\">Last</a>";
        }

        
$lowerlimit = ($page 1) * $perpage 1;
        
$upperlimit $page $perpage;

        if (
$upperlimit $numresults)
        {
            
$upperlimit $numresults;

            if (
$lowerlimit $numresults)
            {
                
$lowerlimit $numresults $perpage;
            }
        }

        if (
$lowerlimit <= 0)
        {
            
$lowerlimit 1;
        }
    }
    else
    {
        
$lowerlimit 1;
        
$link '';
    }

    return array(
        
'limit' => $lowerlimit 1,
        
'link'  => $link
    
);
}

/**
* Builds the HTML for categories and latest domains added.
*
* @param  string  $list  Which list to build.
* @return string         List HTML
*/
function build_list($list)
{
    global 
$db$config;

    
$uselegacy = (bool)($config->get('template') == 'legacy');

    switch (
$list)
    {
        case 
'cats':
            
$getcats $db->query("
                SELECT catid, title, description
                FROM " 
TABLE_PREFIX "categories
                ORDER BY title ASC
            "
) or $db->raise_error();

            if (
$db->num_rows($getcats) > 0)
            {
                
$class '';

                while (
$cat $db->fetch_array($getcats))
                {
                    
$class = ($class == '') ? ' class="odd"' '';

                    
$cat['description'] = ($cat['description'] != '') ? $cat['description'] : $cat['title'];

                    
$cat['numdomains'] = $db->query("
                        SELECT COUNT(d2c.domainid) AS count
                        FROM " 
TABLE_PREFIX "dom2cat AS d2c
                        LEFT JOIN " 
TABLE_PREFIX "domains AS dom ON(dom.domainid = d2c.domainid)
                        WHERE d2c.catid = $cat[catid]
                            AND dom.status != 'Sold'
                            AND dom.hidden != 1
                    "
true);
                    
$cat['numdomains'] = $cat['numdomains']['count'];

                    if (
$uselegacy)
                    {
                        
$listhtml .= "<a href=\"./?cat=$cat[catid]\" title=\"$cat[description]\">$cat[title] ($cat[numdomains])</a>\n";
                    }
                    else
                    {
                        
$listhtml .= "<li$class><a href=\"./?cat=$cat[catid]\" title=\"$cat[description]\">$cat[title]</a> ($cat[numdomains])</li>\n";
                    }
                    
$listhtml trim($listhtml);
                }
            }
            else
            {
                
$listhtml = ($uselegacy) ? 'No Categories Yet' '<li>No Categories Yet</li>';
            }
            
$db->free_result($getcats);

            return 
trim($listhtml);
            break;
        case 
'latest':
            
$getlatest $db->query("
                SELECT domainid, domain, added
                FROM " 
TABLE_PREFIX "domains
                WHERE hidden != 1
                    AND status != 'Sold'
                ORDER BY added DESC
                LIMIT 5
            "
) or $db->raise_error();

            if (
$db->num_rows($getlatest) == 0)
            {
                
$listhtml = ($uselegacy) ? '&nbsp;- None' '<li>None</li>';
            }
            else
            {
                
$class '';

                while (
$latest $db->fetch_array($getlatest))
                {
                    
$date date('m/d/Y'$latest['added']);

                    if (
$uselegacy)
                    {
                        
$listhtml .= "<a href=\"details.php?d=$latest[domainid]\" title=\"Details for $latest[domain]\">$latest[domain] ($date)</a>\n";
                    }
                    else
                    {
                        
$listhtml .= "<li$class><a href=\"details.php?d=$latest[domainid]\" title=\"Details for $latest[domain]\">$latest[domain]</a> ($date)</li>\n";
                    }
                    
$listhtml trim($listhtml);

                    
$class = ($class == '') ? ' class="odd"' '';
                }
            }
            
$db->free_result($getlatest);

            return 
trim($listhtml);
            break;
        default:
            break;
    }
}

/**
* Gets current page name.
*
* @param  void
* @return string  Current page name.
*/
function dnp_page()
{
    
$page basename($_SERVER['SCRIPT_FILENAME'], '.php');

    if (empty(
$page) OR $page == 'index')
    {
        
$page 'home';
    }
    return 
$page;
}

/**
* Gets the latest version of Domain Name Portfolio.
* Borrowed from phpBB and modified - phpBB.com
*
* @param  boolean  $check  Check domainportfolio.us for latest version?
* @return string           Latest version if $check is true, current script version if not.
*/
function dnp_version($check false)
{
    if (
$check)
    {
        if (
$fsock = @fsockopen('www.domainportfolio.us'80$errno$errstr10))
        {
            
fputs($fsock"GET /current.txt HTTP/1.1\r\nHOST: www.domainportfolio.us\r\nConnection: close\r\n\r\n");

            
$latest '';
            
$getinfo false;

            while (!
feof($fsock))
            {
                if (
$getinfo)
                {
                    
$latest .= fread($fsock1024);
                }
                else
                {
                    if (
fgets($fsock1024) == "\r\n")
                    {
                        
$getinfo true;
                    }
                }
            }
            
fclose($fsock);

            
$latest array_map('trim'explode("\n"$latest));

            return 
implode('.'$latest);
        }
        return 
'n/a';
    }
    else
    {
        return 
'1.6.0';
    }
}

/**
* Will get values from the database for forms, etc.
*
* @param  string   $option  What do we need the value for?
* @param  integer  $id      If it's for a domain or category (by ID)
* @return array             Data for given $option from the database.
*/
function get_value($option$id 0)
{
    global 
$db;

    switch (
$option)
    {
        case 
'contact':
            
$domaininfo $db->query("
                SELECT domain, status
                FROM " 
TABLE_PREFIX "domains
                WHERE " 
. (is_numeric($id) ? "domainid = '" intval($id) . "'" "domain = '$id'") . "
                    AND hidden != 1
            "
true) or $db->raise_error();
            return 
$domaininfo;
            break;
        case 
'details':
        case 
'domainedit':
            
$domaininfo $db->query("
                SELECT domains.*, d2c.*, IF(categories.title IS NULL, 'None', GROUP_CONCAT(categories.title SEPARATOR ', ')) AS category, domains.domainid AS domainid
                FROM " 
TABLE_PREFIX "domains AS domains
                LEFT JOIN " 
TABLE_PREFIX "dom2cat AS d2c ON (domains.domainid = d2c.domainid)
                LEFT JOIN " 
TABLE_PREFIX "categories AS categories ON (d2c.catid = categories.catid)
                WHERE " 
. (is_numeric($id) ? "domains.domainid = '" intval($id) . "'" "domains.domain = '$id'") . "
                GROUP BY COALESCE(d2c.domainid, RAND())
            "
true) or $db->raise_error();
            return (
count($domaininfo)) ? $domaininfo : array();
            break;
        case 
'catedit':
            
$catinfo $db->query("
                SELECT title, description, keywords
                FROM " 
TABLE_PREFIX "categories
                WHERE catid = '$id'
            "
true) or $db->raise_error();
            return (
count($catinfo)) ? $catinfo : array();
            break;
        default:
            break;
    }
}

/**
* Builds the 'hide' dropdown menu in admin for the edit page.
*
* @param  string  $option  Which select to build.
* @param  string  $value   Select's value.
* @return string           The $option's HTML
*/
function build_select($option$value '')
{
    global 
$db;

    
$values = array(
        
'hidden' => array('No''Yes'),
        
'issite' => array('No''Yes'),
        
'status' => array('For Sale''Not For Sale''Make Offer''Sold')
    );

    
$select '';

    switch (
$option)
    {
        case 
'hidden':
        case 
'issite':
            foreach (
$values[$option] AS $key => $val)
            {
                
$select .= "<option label=\"$val\" value=\"$key\"" . ($value == $key ' selected="selected"' '') . ">$val</option>\n";
            }
            break;
        case 
'status':
            foreach (
$values[$option] AS $val)
            {
                
$select .= "<option label=\"$val\" value=\"$val\"" . ($value == $val ' selected="selected"' '') . ">$val</option>\n";
            }
            break;
        case 
'category':
            
$select '<option label="None" value="-1">None</option>' "\n";

            
$getcats $db->query("
                SELECT catid, title
                FROM " 
TABLE_PREFIX "categories
                ORDER BY title ASC
            "
) or $db->raise_error();

            while (
$cat $db->fetch_array($getcats))
            {
                if (
$value == '')
                {
                    
$select .= "<option label=\"$cat[title]\" value=\"$cat[catid]\">$cat[title]</option>\n";
                }
                else
                {
                    
$dom2cats $db->fetch_all("
                        SELECT domainid, catid
                        FROM " 
TABLE_PREFIX "dom2cat
                        WHERE domainid = $value
                    "
'catid');

                    
$select .= "<option label=\"$cat[title]\" value=\"$cat[catid]\"";
                    
$select .= (in_array($cat['catid'], $dom2cats) ? ' selected="selected"' '') . ">$cat[title]</option>\n";
                }
            }
            
$db->free_result($getcats);
            break;
    }
    return 
$select;
}

/**
* Returns a 'nice', human-readable size - thanks to WordPress
*
* @param  integer  $bytes  Size to format
* @return string           Human-readable size.
*/
function size_format($bytes)
{
    
$quant = array(
        
'TB' => pow(10244),
        
'GB' => pow(10243),
        
'MB' => pow(10242),
        
'kB' => pow(10241),
        
'B'  => pow(10240)
    );

    foreach (
$quant AS $unit => $mag)
    {
        if (
intval($bytes) >= $mag)
        {
            return 
number_format($bytes $mag) . " $unit";
        }
    }
    return 
'-';
}

?>
polnik вне форума   Ответить с цитированием
Старый 31.08.2011, 20:27   #2
Заблокирован
 
Регистрация: 30.04.2010
Сообщений: 792
Доменные сделки: 12
Реноме: 1711
Одобрения
Спасибо (Отдано): 0
Спасибо (Получено): 0
Кодировку бд менять не пробовали?были заказы на доменфолио, проблем не было не при установке не при переводе, в общем ни в чем проблем не возникало!
Удачи.
Extasy вне форума   Ответить с цитированием
Старый 03.09.2011, 09:05   #3
 
Аватар для polnik
 
Регистрация: 15.08.2010
Сообщений: 75
Доменные сделки: 0
Реноме:
Одобрения
Спасибо (Отдано): 4
Спасибо (Получено): 0
Отправить сообщение для polnik с помощью ICQ
Пробовал, однако - безрезультатно...
может не то делаю..
какую нужно установить кодировку в бд???..
polnik вне форума   Ответить с цитированием
Старый 05.09.2011, 22:14   #4
 
Аватар для polnik
 
Регистрация: 15.08.2010
Сообщений: 75
Доменные сделки: 0
Реноме:
Одобрения
Спасибо (Отдано): 4
Спасибо (Получено): 0
Отправить сообщение для polnik с помощью ICQ
Все дело в том что это последняя версия наверно и идет под один язык... Уже перепробовал все.. менял кодировку бд...
пробовал на разных хостах...
ничего не получается
Может быть у кого то еще остался доменфолио в переводе на русс.
polnik вне форума   Ответить с цитированием
Старый 06.09.2011, 20:53   #5
Заблокирован
 
Регистрация: 30.04.2010
Сообщений: 792
Доменные сделки: 12
Реноме: 1711
Одобрения
Спасибо (Отдано): 0
Спасибо (Получено): 0
Возможно помогу, незадорого!
Extasy вне форума   Ответить с цитированием
Старый 07.09.2011, 18:15   #6
 
Аватар для polnik
 
Регистрация: 15.08.2010
Сообщений: 75
Доменные сделки: 0
Реноме:
Одобрения
Спасибо (Отдано): 4
Спасибо (Получено): 0
Отправить сообщение для polnik с помощью ICQ
Буду признателен, если недорого.....
polnik вне форума   Ответить с цитированием
Старый 07.09.2011, 19:39   #7
Заблокирован
 
Регистрация: 30.04.2010
Сообщений: 792
Доменные сделки: 12
Реноме: 1711
Одобрения
Спасибо (Отдано): 0
Спасибо (Получено): 0
Написал Вам в аську, ответа так и нет ;-)
Extasy вне форума   Ответить с цитированием
Старый 13.09.2011, 21:44   #8
 
Аватар для iksman
 
Регистрация: 19.01.2008
Сообщений: 5,451
Доменные сделки: 19
Реноме: 5809
Одобрения
Спасибо (Отдано): 412
Спасибо (Получено): 811
У меня есть этот русифицированный скрипт. Кому надо - пишите в личку мыло. Вышлю.
iksman вне форума   Ответить с цитированием
Старый 21.09.2011, 21:17   #9
 
Регистрация: 31.03.2009
Адрес: Wonderland
Сообщений: 2,461
Доменные сделки: 34
Реноме: 5369
Одобрения
Спасибо (Отдано): 0
Спасибо (Получено): 92
Сообщение от iksman Посмотреть сообщение
У меня есть этот русифицированный скрипт. Кому надо - пишите в личку мыло. Вышлю.
А какая у Вас версия?
Старая? От domainportfolio.su?
Или последнюю русифицировали?
Yasuka вне форума   Ответить с цитированием
Старый 21.09.2011, 21:39   #10
 
Аватар для polnik
 
Регистрация: 15.08.2010
Сообщений: 75
Доменные сделки: 0
Реноме:
Одобрения
Спасибо (Отдано): 4
Спасибо (Получено): 0
Отправить сообщение для polnik с помощью ICQ
Все дело в том что версия 1,03 русифицированна
а вот последняя 1,6 что то не идет
polnik вне форума   Ответить с цитированием
Ответ



Реклама

Здесь присутствуют: 1 (пользователей: 0 , гостей: 1)
 

Ваши права в разделе
Вы не можете создавать новые темы
Вы не можете отвечать в темах
Вы не можете прикреплять вложения
Вы не можете редактировать свои сообщения

BB коды Вкл.
Смайлы Вкл.
[IMG] код Вкл.
HTML код Выкл.

Быстрый переход


Текущее время: 18:29. Часовой пояс GMT +4.