CONTENTS


Lastmodified 2013-11-14 (木) 10:06:36


Joomla の エディタのフォントを入れ替えるよ!

Joomlaのコンテンツエディタに、定番のJCEをいれてるけど、使わないフォントばかり並んでて、使いたいフォントが入ってません。ということで、入れ替えます。

http://www.joomlacontenteditor.net/support/tutorials/editor/item/adding-and-removing-fonts

JCEの設定は、コントロールパネル>コンポーネント>JCE Editor>Control Panel

JCE_Font.png

Editor Profiles > Editor Parameters > Typography

JCE_Font2.PNG

Additional Fonts

メイリオ=メイリオ; meiryo=meiryo; meiryo UI=meiryo UI;

Remove Fonts

arial;andale mono;Arial Black;Book Antiqua;Comic Sans MS;Georgia;courier new;helvetica;impact;symbol;tahoma;terminal;trebuchet MS;verdana;webdings;wingdings;

Joomla の favicon.ico を入れ替えるよ!

http://ao-system.net/alphaicon/index.php

Joomlaのファビコンは何処にあるの?ってことで、

root@blackcube:/usr/local/www/joomla31 # grep favicon /usr/local/www/joomla31 -r

とかやってみたけど、結局は、Web表示させて、ソースを見ると・・・

<link href="/joomla/templates/beez3/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
<link href="/joomla/administrator/templates/isis/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />

と、書いてありました。w

Templateのfont-family

ports で入れた joomla3! のテンプレートは、

/usr/local/www/joomla31/templates/beez3

になります。で、フォントの設定を見てみると、

# grep font-family /usr/local/www/joomla31/templates/beez3 -r

/usr/local/www/joomla31/templates/beez3/css/layout.css: font-family: arial,sans-serif
/usr/local/www/joomla31/templates/beez3/css/layout.css: font-family: inherit;
/usr/local/www/joomla31/templates/beez3/css/nature.css: font-family: arial, helvetica, sans-serif;
/usr/local/www/joomla31/templates/beez3/css/print.css:  font-family:Arial, Verdana, Helvetica, sans-serif;
/usr/local/www/joomla31/templates/beez3/css/template_rtl.css:   font-family: 'Titillium Maps',  Arial;

という結果になります。 ということは、日本語フォントの設定は無いので、Webブラウザのデフォルトフォントで表示されると言うことになります。

Windows 7 の IE だと、「MS Pゴシック」で表示されることになります。

以下の様に指定します。

font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo UI", "MS Pゴシック", "MS PGothic", Osaka, sans-serif;

序でに、システム側のをみると、

# grep font-family /usr/local/www/joomla31/templates/ -r
 
/usr/local/www/joomla31/templates/system/css/editor.css:        font-family: Tahoma,Helvetica,Arial,sans-serif;
/usr/local/www/joomla31/templates/system/css/editor.css:        font-family:Helvetica ,Arial,sans-serif;
/usr/local/www/joomla31/templates/system/css/editor.css:        font-family: Arial, Helvetica,sans-serif;
/usr/local/www/joomla31/templates/system/css/editor.css:  font-family: Helvetica,Arial,sans-serif;
/usr/local/www/joomla31/templates/system/css/editor.css:        font-family: Arial, Helvetica, sans-serif;
/usr/local/www/joomla31/templates/system/css/error.css: font-family: helvetica, arial, sans-serif;
/usr/local/www/joomla31/templates/system/css/error.css: font-family: helvetica, arial, sans-serif;
/usr/local/www/joomla31/templates/system/css/error.css: font-family: helvetica, arial, sans-serif;
/usr/local/www/joomla31/templates/system/css/offline.css:       font-family: Arial, Helvetica, Sans Serif; font-size: 78%;

と、ワラワラとでてきますが、使用中のISISテンプレートの「css/template.css」の190行目あたりの、

body {
  margin: 0;
  font-family: "Helvetica Neue", "メイリオ", "Meiryo UI", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 18px;
  color: #333;
  background-color: #fff;
}
a {

フォントの指定をすれば、コントロールパネルのフォントが指定できるようです。

JoomlaにJavaScriptを埋め込むよ!

http://www.fulldigit.net/content/view/73/28/

http://extensions.joomla.org/extensions/edition/custom-code-in-modules/5435/

http://joomla3.satoshis.com/index.php/extensions/20-extension/module.html

Joomlaを、専用ポートで表示するよ!

/usr/local/etc/apache22/extra/httpd-vhosts.conf

Listen 219.117.246.201:12345

#NameVirtualHost 219.117.246.201

<VirtualHost www.smb.net:12345>
ServerName www.smb.net
DocumentRoot /usr/local/www/
  Alias /joomla /usr/local/www/joomla31/
  AcceptPathInfo On
  <Directory /usr/local/www/joomla31>
      AllowOverride None
      Order Allow,Deny
      Allow from all
  </Directory>
</VirtualHost>

Joomlaを入れて見るよ!

http://demo.joomlashine.com/joomla-templates/jsn_gruve/pro/index.php

にJoomla!のインストール方法のPDFがありました。6個のステップでweb siteを構築する方法ですが画像が添付されています。

インストール方法などの紹介

http://www.joomladepon.com/   http://www.joomlaway.net/

YouTubeでは2.5系の説明があります。

http://www.youtube.com/watch?v=hpN-m6rwCZw

http://www.youtube.com/watch?v=nEPpCpRlvBQ

FreeBSD の Portsを探す

root@blackcube2:/root # locate joomla
/usr/ports/www/joomla15
/usr/ports/www/joomla25
/usr/ports/www/joomla31

ということなので、最新で

# portinstall www/joomla31

===>  Installing for joomla-3.1.1
===>   joomla-3.1.1 depends on file: /usr/local/include/php/main/php.h - found
===>   joomla-3.1.1 depends on file: /usr/local/lib/php/20100525/gd.so - found
===>   joomla-3.1.1 depends on file: /usr/local/lib/php/20100525/json.so - found
===>   joomla-3.1.1 depends on file: /usr/local/lib/php/20100525/mbstring.so - found
===>   joomla-3.1.1 depends on file: /usr/local/lib/php/20100525/mysql.so - found
===>   joomla-3.1.1 depends on file: /usr/local/lib/php/20100525/mysqli.so - found
===>   joomla-3.1.1 depends on file: /usr/local/lib/php/20100525/pdf.so - found
===>   joomla-3.1.1 depends on file: /usr/local/lib/php/20100525/session.so - found
===>   joomla-3.1.1 depends on file: /usr/local/lib/php/20100525/simplexml.so - found
===>   joomla-3.1.1 depends on file: /usr/local/lib/php/20100525/xml.so - found
===>   joomla-3.1.1 depends on file: /usr/local/lib/php/20100525/zip.so - found
===>   joomla-3.1.1 depends on file: /usr/local/lib/php/20100525/zlib.so - found
===>   joomla-3.1.1 depends on shared library: mysqlclient.18 - found
===>   Generating temporary packing list
================================================================================

 1) Add the following to your Apache configuration, and restart the server:

  ### Add the AcceptPathInfo directive only for Apache 2.0.30 or later.
  Alias /joomla /usr/local/www/joomla31/
  AcceptPathInfo On
  <Directory /usr/local/www/joomla31>
      AllowOverride None
      Order Allow,Deny
      Allow from all
  </Directory>

 2) Visit your Joomla site with a browser (i.e. http://your.server.com/joomla/),
    and you should be taken to the install.php script, which will lead you
    through creating a config.php file and then setting up Joomla, creating
    an admin account, etc.


 3) As of 2.5.5, php5-mysqli and php5-zip are installed. Use of mysqli for mysql
    is recommended over mysql.

================================================================================
===>   Registering installation for joomla-3.1.1
http;//wibserver_name/joomla

http://piano2nd.smb.net/joomla/administrator/


Total access 7565:本日 2:昨日 1

Counter: 7565, today: 2, yesterday: 1

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS