Jump to content

Изменить cсылку на приложение [help me!]

Featured Replies

Здраствуйте. Я установил приложение tutorials. Нужно изменить адрес на board. 

post-17326-0-63606500-1394651030.png

Пробовал менять название на board и директорию приложения, не помогло (никакую страницу не загружает, просто белая страница)

Гугление не помогло =/

Edited by oijuhoiu8h

Link to comment
https://ipbmafia.ru/topic/7500-izmenit-csylku-na-prilozhenie-help-me/
Share on other sites

Ссылки меняются в файле furlTemplates пере установкой компонента

Link to comment
https://ipbmafia.ru/topic/7500-izmenit-csylku-na-prilozhenie-help-me/?&do=findComment&comment=58389
Share on other sites

Respected, подскажи что заменить.  :(

Link to comment
https://ipbmafia.ru/topic/7500-izmenit-csylku-na-prilozhenie-help-me/?&do=findComment&comment=58392
Share on other sites

oijuhoiu8h, зайди в сео рекомендации, включи mod rewrite и измени вид ссылок на понятные

Link to comment
https://ipbmafia.ru/topic/7500-izmenit-csylku-na-prilozhenie-help-me/?&do=findComment&comment=58516
Share on other sites

mod rewrite

post-17326-0-84677800-1394738514_thumb.p

у меня так и стоял

Ссылки меняются в файле furlTemplates пере установкой компонента

удалил приложение. заменил все tutorials на board, переименовал папку туториалс на боард, установил.

Адрес изменился, только ошибка 404 :post-17326-0-01056300-1394738991_thumb.p

Link to comment
https://ipbmafia.ru/topic/7500-izmenit-csylku-na-prilozhenie-help-me/?&do=findComment&comment=58517
Share on other sites

oijuhoiu8h, надо ещё в ац в настройках приложения изменить


post-10355-0-31943500-1394739630_thumb.p

 

Вот, на карандаш нажимаешь, и меняяешь директорию приложния

Link to comment
https://ipbmafia.ru/topic/7500-izmenit-csylku-na-prilozhenie-help-me/?&do=findComment&comment=58519
Share on other sites

oijuhoiu8h, ты в файлик, указанный мной заглядывал? Что там не понятно? 

Link to comment
https://ipbmafia.ru/topic/7500-izmenit-csylku-na-prilozhenie-help-me/?&do=findComment&comment=58526
Share on other sites
<?php

/**
 * Product Title:		board
 * Product Version:		1.5.0
 * Author:				Michael McCune
 * Website:				Invision Focus
 * Website URL:			__invisionfocus.com/
 * Email:				[email protected]
 */

if ( !defined( 'IN_IPB' ) )
{
	print "<h1>Incorrect access</h1>You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.";
	exit();
}

$_SEOTEMPLATES = array( 'cat'			=> array( 'app'		      => 'board',
												  'allowRedirect' => 1,
												  'isPagesMode'   => 1,
												  'out'           => array( '#app=board(?:&|&amp;)cat=(.+?)(&|$)#i', 'board/category/$1-#{__title__}/$2' ),
												  'in'            => array( 'regex'   => "#/board/category/(d+?)-#i",
																			'matches' => array( array( 'app', 'board' ), array( 'cat', '$1' ) ) ) ),
						
						'article'       => array( 'app'		      => 'board',
												  'allowRedirect' => 1,
												  'isPagesMode'   => 1,
												  'out'           => array( '#app=board(?:&|&amp;)article=(.+?)(&|$|#)#i', 'board/article/$1-#{__title__}/$2' ),
												  'in'            => array( 'regex'   => "#/board/article/(d+?)-#i",
																			'matches' => array( array( 'app', 'board' ), array( 'article', '$1' ) ) ) ),
						
						'all_comments'  => array( 'app'           => 'board',
												  'allowRedirect' => 1,
												  'isPagesMode'   => 1,
												  'out'           => array( '#app=board(?:&|&amp;)module=display(?:&|&amp;)section=comments?(&|$)#i', 'board/comments/&' ),
												  'in'            => array( 'regex'   => "#/board/comments#i",
																			'matches' => array( array( 'app', 'board' ), array( 'module', 'display' ), array( 'section', 'comments' ) ) ) ),
						
						'adv_stats'     => array( 'app'           => 'board',
												  'allowRedirect' => 1,
												  'out'           => array( '#app=board(?:&|&amp;)module=display(?:&|&amp;)section=stats?(&|$)#i', 'board/stats/$2' ),
												  'in'            => array( 'regex'   => "#/board/stats#i",
																			'matches' => array( array( 'app', 'board' ), array( 'module', 'display' ), array( 'section', 'stats' ) ) ) ),
						
						'random_art'    => array( 'app'           => 'board',
												  'allowRedirect' => 1,
												  'out'           => array( '#app=board(?:&|&amp;)module=actions(?:&|&amp;)section=random?(&|$)#i', 'board/random/$2' ),
												  'in'            => array( 'regex'   => "#/board/random#i",
																			'matches' => array( array( 'app', 'board' ), array( 'module', 'actions' ), array( 'section', 'random' ) ) ) ),
						
						'app=board'	=> array( 'app'           => 'board',
												  'allowRedirect' => 1,
												  'out'           => array( '#app=board$#i', 'board/' ),
												  'in'            => array( 'regex'   => "#^/board/?$#i",
																			'matches' => array( array( 'app', 'board' ) ) ) ),
					  );

так?

Link to comment
https://ipbmafia.ru/topic/7500-izmenit-csylku-na-prilozhenie-help-me/?&do=findComment&comment=58576
Share on other sites


так?
не так. Вот это 'app'         => 'board', и app=board должны оставиться оригинальными
Link to comment
https://ipbmafia.ru/topic/7500-izmenit-csylku-na-prilozhenie-help-me/?&do=findComment&comment=58582
Share on other sites

kgb, помоги пожалуйста.post-17326-0-35957400-1394821156_thumb.ppost-17326-0-67357100-1394821161_thumb.pfurlTemplates.php


post-17326-0-56841100-1394821412_thumb.p

и еще вот такая ошибка когда открываешь настройки приложения.

Link to comment
https://ipbmafia.ru/topic/7500-izmenit-csylku-na-prilozhenie-help-me/?&do=findComment&comment=58585
Share on other sites

Пробуй. Не забудь перекешировать FURL кеш

furlTemplates.php

Link to comment
https://ipbmafia.ru/topic/7500-izmenit-csylku-na-prilozhenie-help-me/?&do=findComment&comment=58591
Share on other sites

Edited by Ge3ix

Link to comment
https://ipbmafia.ru/topic/7500-izmenit-csylku-na-prilozhenie-help-me/?&do=findComment&comment=58596
Share on other sites
Guest
This topic is now closed to further replies.

Последние посетители 0

  • No registered users viewing this page.