Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - deusxx

Pages: [1] 2
1
Means to correct it is impossible? For example that on on IP

2
Help there is a problem if the user has come as the visitor on a site and at viewing a photo presses to update that with each updating the quantity of viewings increases! How to stop it that at updating viewing did not increase?

по русски звучит так!
Помогите возникает проблемма если пользователь зашел как гость на сайт  и при просмотре фотографии нажимает обновить то скаждым обновлением увеличиваеться количество просмотров! Как остановиить это чтобы при обновлении не увеличивался просмотр?

3
Фотография 1
    Ошибка при загрузке файла фотографии.: deusxx1[3].jpg
deusxx13.jpg: Ошибка копирования. Пожалуйста, проверьте разрешения директории.

Такой записи в базе данных нет!

не пойму в чем дело!  В сатрой версии такого небыло!

4
Mods & Plugins (Requests & Discussions) / Функция модерат&
« on: February 19, 2006, 05:07:37 PM »
А есть такой мод или чтото еще чтобы не давая админские прова типо функция модератора проверял фото и активировал аккаунты!

5
Mods & Plugins (Requests & Discussions) / Re: Разрешения Гру
« on: February 15, 2006, 03:13:15 PM »
О чуметь как все закручено ))) Спасиб!

6
Mods & Plugins (Requests & Discussions) / Разрешения Груп&
« on: February 15, 2006, 10:14:58 AM »
Разрешения Группы пользователей !!!!
Не могу почему то добавить пользователя в группу и настроить им права  почему ??  При настройки прав  нет выбора не могу выделить не чего !!   

7
Подскажите как обьеденить 4images 1.7.1 => vBulletin v3.5.3

8
Все теперь все работает ! )))  спасибо!  Странно как я мог не правельно кода вставить!

9
В принцапе у меня все и без этого работает единственное то что при вставки смайла в письмо или комментарий он просто отображается как значек а не как картинка!!!! при отправки само сабой или при предварительном  просмотре !

вот собственно сам файл

10
я не могу в рубиться что за комментарий эти звездачки чтоли если да то при добовлении их  у меня ошибка (((

11
ну а  пункт Step 6.2  как я понял просто тупо в конце перед ? >  вставить  или там тоже эти штуки нужны /*   */

12
Да не это я просто тут опечатался!

13

At me it turns out so!

Quote
\*
function format_text($text, $html = 0, $word_wrap = 0, $bbcode = 0, $bbcode_img = 0) {
 
$text = trim($text);
  if ($word_wrap && $text != "") {
    $text = preg_replace("/([^\n\r ?&\.\/<>\"\\-]{".$word_wrap."})/i", " \\1\n", $text);
  }

  if ($html == 0) {
    $text = str_replace("&lt;", "&amp;lt;", $text);
    $text = str_replace("&gt;", "&amp;gt;", $text);
    $text = str_replace("<", "&lt;", $text);
    $text = str_replace(">", "&gt;", $text);
  }
  $text = str_replace("\n", "<br />", $text);
  $text = replace_url($text);

  if ($bbcode == 1) {
    $search_array = array(
      "/(\[)(list)(=)(['\"]?)([^\"']*)(\\4])(.*)(\[\/list)(((=)(\\4)([^\"']*)(\\4]))|(\]))/siU",
      "/(\[)(list)(])(.*)(\[\/list\])/siU",
      "/(\[\*\])/siU",
      "/(\[)(url)(=)(['\"]?)(www\.)([^\"']*)(\\4])(.*)(\[\/url\])/siU",
      "/(\[)(url)(=)(['\"]?)([^\"']*)(\\4])(.*)(\[\/url\])/siU",
      "/(\[)(url)(])(www\.)([^\"]*)(\[\/url\])/siU",
      "/(\[)(url)(])([^\"]*)(\[\/url\])/siU",
      "/(\[)(code)(])(\r\n)*(.*)(\[\/code\])/siU",
      "/javascript:/si",
      "/about:/si"
    );
    $replace_array = array(
      "<ol type=\"\\5\">\\7</ol>",
      "<ul>\\4</ul>",
      "<li>",
      "<a href=\"http://www.\\6\" target=\"_blank\">\\8</a>",
      "<a href=\"\\5\" target=\"_blank\">\\7</a>",
      "<a href=\"http://www.\\5\" target=\"_blank\">www.\\5</a>",
      "<a href=\"\\4\" target=\"_blank\">\\4</a>",
      "<pre>Code:<hr size=1>\\5<hr size=1></pre>",
      "java script:",
      "about :"
    );
    $text = preg_replace($search_array, $replace_array, $text);
    if (!$bbcode_img)  {
      $text = preg_replace("/(\[)(img)(])(\r\n)*([^\"]*)(\[\/img\])/siU", "<a href=\"\\5\" target=\"_blank\">\\5</a>", $text);
    }
    else  {
      $text = preg_replace("/(\[)(img)(])(\r\n)*([^\"]*)(\[\/img\])/siU", "<img src=\"\\5\">", $text);
    }
    $text = preg_replace("/(\[)(b)(])(\r\n)*([^\"]*)(\[\/b\])/siU", "<b>\\5</b>", $text);
    $text = preg_replace("/(\[)(i)(])(\r\n)*([^\"]*)(\[\/i\])/siU", "<i>\\5</i>", $text);
    $text = preg_replace("/(\[)(u)(])(\r\n)*([^\"]*)(\[\/u\])/siU", "<u>\\5</u>", $text);
  }
  $text = str_replace("\\'", "'", $text);
  return replace_badwords($text);
}
*/


But if I so do(make) that at me and получаеться a mistake that!

14
And as then it is necessary to execute 6 item(point) I shall not understand at me a smile only their code for example is not shown ?

15
At me a problem when I insert it  /*  and 
*/


Quote
Open /includes/functions.php
Find:
Code:

function format_text


just comment entire function by doing this:
Add before that line:
Code:

/*

and at the end of the function find (in default 4images it would be):
Code:

  return replace_badwords($text);
}

add after that closing bracket } add this:
Code:

*/


Pages: [1] 2