MakeServer 6 Опубликовано 5 сентября, 2012 Ув.Пользователи l2maxi.ru. Я хотел бы узнать у вас как сделать интеграцию(вывод тем с форума) IPB с Dle если кто знает отпишите в Skype (есть в профиле). Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
Мо3олЬ 68 Опубликовано 5 сентября, 2012 Для твоего вопроса есть ответ ЗДЕСЬ 1 Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
MakeServer 6 Опубликовано 5 сентября, 2012 Есть ещё идеи? Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
FludGod 91 Опубликовано 5 сентября, 2012 (изменено) http://forums.ibresource.ru/index.php?/topic/63283/ идеи... Изменено 5 сентября, 2012 пользователем fludgod Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
FludGod 91 Опубликовано 5 сентября, 2012 ipb.php: /* ===================================================== Created by Nomore (icq 3-799-688 / www.kadetoff.ru) ----------------------------------------------------- Файл: ipb.php ===================================================== Назначение: вывод последних сообщений IPB ===================================================== */ if(!defined('DATALIFEENGINE')) { die("Hacking attempt!"); } $tpl->load_template('ipb.tpl'); //Префикс таблицы с IPB $prefix = ibf; //Сколько тем выводить $num = 5; //Имя папки с картинками текущего скина $img_path = arobaze; //Формат времени $time = 'd.m H:i'; //Длина заголовка $name_length = 200; //ВЫВОД ПОСЛЕДНИХ ТЕМ ФОРУМА global $db; $sql_result = $db->query("SELECT tid, title, description, state, posts, starter_id, last_poster_id, last_post, icon_id, starter_name, last_poster_name, views, topic_hasattach FROM ".$prefix."_topics ORDER BY last_post DESC LIMIT $num"); while($row = $db->get_row($sql_result)) { $title = stripslashes($row['title']); $as = $title; if (strlen($title) > $name_length) { $title = substr($title, 0, $name_length - 3) . "..."; } else { $title = stripslashes($row['title']); } $last_poster_name = stripslashes($row['last_poster_name']); $id = stripslashes($row['tid']); $last_poster_id = stripslashes($row['last_poster_id']); $last_post = stripslashes($row['last_post']); $last_date = date($time,$last_post); $description = stripslashes($row['description']); $ipb .= " title=\"$description\">$title [ автор: $last_poster_name - $last_date ] "; $tpl->set('{ipb}', $ipb); } $tpl->compile('ipb'); $tpl->clear(); ?> Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
MakeServer 6 Опубликовано 5 сентября, 2012 ппц я и так уже пробывал не хрена Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
FludGod 91 Опубликовано 5 сентября, 2012 смысла не вижу это делать.Имхо Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
whаtеvеr 24 Опубликовано 6 сентября, 2012 Автор темы Вы уже получили блокировку на 1 день,и Ваша подпись была удалена.Вы хотите получить блокировку на более долгий срок? Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
Тень 45 Опубликовано 6 сентября, 2012 В IPB закинь .htaccess с Dle Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
whаtеvеr 24 Опубликовано 6 сентября, 2012 Автоматическое сообщение Эта тема была перемещена из "Общение на любую тему" в "Форум для новичков". Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
kick 129 Опубликовано 6 сентября, 2012 я делаю когда пишет такое закидываю .htaccess ## # @version $Id: htaccess.txt 14401 2010-01-26 14:10:00Z louis $ # @package Joomla # @copyright Copyright © 2005 - 2010 Open Source Matters. All rights reserved. # @license http://www.gnu.org/copyleft/gpl.html GNU/GPL # Joomla! is Free Software ## ##################################################### # READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE # # The line just below this section: 'Options +FollowSymLinks' may cause problems # with some server configurations. It is required for use of mod_rewrite, but may already # be set by your server administrator in a way that dissallows changing it in # your .htaccess file. If using it causes your server to error out, comment it out (add # to # beginning of line), reload your site in your browser and test your sef url's. If they work, # it has been set by your server administrator and you do not need it set here. # ##################################################### ## Can be commented out if causes errors, see notes above. Options +FollowSymLinks # # mod_rewrite in use RewriteEngine On ########## Begin - Rewrite rules to block out some common exploits ## If you experience problems on your site block out the operations listed below ## This attempts to block the most common type of exploit `attempts` to Joomla! # ## Deny access to extension xml files (uncomment out to activate) #<Files ~ "\.xml$"> #Order allow,deny #Deny from all #Satisfy all #</Files> ## End of deny access to extension xml files RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR] # Block out any script trying to base64_encode crap to send via URL RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR] # Block out any script that includes a <script> tag in URL RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR] # Block out any script trying to set a PHP GLOBALS variable via URL RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR] # Block out any script trying to modify a _REQUEST variable via URL RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2}) # Send all blocked request to homepage with 403 Forbidden error! RewriteRule ^(.*)$ index.php [F,L] # ########## End - Rewrite rules to block out some common exploits # Uncomment following line if your webserver's URL # is not directly related to physical file paths. # Update Your Joomla! Directory (just / for root) # RewriteBase / ########## Begin - Joomla! core SEF Section # RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !^/index.php RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC] RewriteRule (.*) index.php RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L] # ########## End - Joomla! core SEF Section <IfModule mod_deflate.c> <FilesMatch "\.(css|js|x?html?|php)$"> SetOutputFilter DEFLATE </FilesMatch> </IfModule> <IfModule mod_expires.c> ExpiresActive On ExpiresDefault "access plus 3600 seconds" ExpiresByType image/x-icon "access plus 2592000 seconds" ExpiresByType image/jpeg "access plus 2592000 seconds" ExpiresByType image/jpg "access plus 2592000 seconds" ExpiresByType image/ico "access plus 2592000 seconds" ExpiresByType image/png "access plus 2592000 seconds" ExpiresByType image/gif "access plus 2592000 seconds" ExpiresByType application/x-shockwave-flash "access plus 2592000 seconds" ExpiresByType text/css "access plus 604800 seconds" ExpiresByType text/javascript "access plus 216000 seconds" ExpiresByType application/javascript "access plus 604800 seconds" ExpiresByType application/x-javascript "access plus 604800 seconds" ExpiresByType text/html "access plus 3600 seconds" ExpiresByType application/xhtml+xml "access plus 3600 seconds" </IfModule> <IfModule mod_headers.c> <FilesMatch "\.(ico|jpe?g|png|gif|swf)$"> Header set Cache-Control "max-age=2592000, public" </FilesMatch> <FilesMatch "\.(css)$"> Header set Cache-Control "max-age=604800, public" </FilesMatch> <FilesMatch "\.(js)$"> Header set Cache-Control "max-age=216000, private" </FilesMatch> <FilesMatch "\.(x?html?|php)$"> Header set Cache-Control "max-age=3600, private, must-revalidate" </FilesMatch> </IfModule> <filesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$"> FileETag None Header set Cache-Control "max-age=290304000, public" Header unset Last-Modified </filesMatch> <FilesMatch "\.(js|css)$"> SetOutputFilter DEFLATE </FilesMatch> Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
Lee 0 Опубликовано 6 сентября, 2012 Могу реализовать вывод для любой CMS. Контакты: ася - 377736267 скайп LoseControLL13 Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты
AlexT 0 Опубликовано 6 сентября, 2012 Реально модуль есть на эту тему, да ставиться он конечно через Ж. Но все же работает и единая регистрауия и вывод че угодно. Поделиться сообщением Ссылка на сообщение Поделиться на другие сайты