The Joomla! Forum ™






Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 4 posts ] 
Author Message
PostPosted: Tue Oct 04, 2005 11:40 am 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Thu Aug 18, 2005 11:16 am
Posts: 125
Location: Japan
1.0.2を新規にインストールするときに、インストーラーが誤ったURLを生成します。

index.php/topic,9980.msg68740.html#msg68740

インストール処理は継続できますが、出来上がったサイトの挙動が保証できません。

bug trackerに報告しました。
  artf1382:  http://developer.joomla.org/sf/go/artf1382?nav=1

1.0.2にする場合は、1.0.1インストール後に、updateするようにしてください。

_________________
From Japan ---- Time Zone GMT+9


Last edited by Leftfield on Sat Jun 19, 2010 6:31 pm, edited 1 time in total.
Mod Edit: Topic status changed from Sticky to Normal.


Top
 Profile  
 
PostPosted: Tue Oct 04, 2005 3:31 pm 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Thu Aug 18, 2005 11:16 am
Posts: 125
Location: Japan
発生するパターンが分かりました。
サブドメインのトップにインストールしようとすると起きるようです。

例えば、自分のサイトドメインに、joomlaサブドメインを作った場合、
http://joomla.yoursite.url/ にインストールしようとすると "//"が生成されて、
http://joomla.yoursite.url//installation/index.phpとなり、

http://yoursite.url/joomla/ にインストールする場合は、正常に、
http://joomla.yoursite.url/installation/index.php となります。

bag trackerにコメントしておきます。

_________________
From Japan ---- Time Zone GMT+9


Top
 Profile  
 
PostPosted: Wed Oct 05, 2005 12:01 pm 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Thu Aug 18, 2005 11:16 am
Posts: 125
Location: Japan
解決しました。 :D

joomla 1.0.2 で変更があった、  {josroot}/index.php に問題がありました。

リリースコード
Code:
if (!file_exists( 'configuration.php' ) || filesize( 'configuration.php' ) < 10) {
    header("Location: http://" . $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . "/installation/index.php" );
   exit();
}


解決策
Code:
if (!file_exists( 'configuration.php' ) || filesize( 'configuration.php' ) < 10) {
   if(dirname($_SERVER['PHP_SELF']) == "/"):
      $dirslash = "/";
   else:
      $dirslash = dirname($_SERVER['PHP_SELF']) . "/";
   endif;

     header("Location: http://" . $_SERVER['HTTP_HOST'] . $dirslash . "installation/index.php" );
   exit();
}



bag trackerに、コメントを追加しました。
http://developer.joomla.org/sf/go/artf1382?nav=1

_________________
From Japan ---- Time Zone GMT+9


Top
 Profile  
 
PostPosted: Tue Oct 11, 2005 2:29 pm 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Thu Aug 18, 2005 11:16 am
Posts: 125
Location: Japan
SVNには、既に修正が取り込まれました。

次の1.0.3でリリースされます。

_________________
From Japan ---- Time Zone GMT+9


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 4 posts ] 



Who is online

Users browsing this forum: No registered users and 3 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB® Forum Software © phpBB Group