2025-05-20

Office LTSC 2024 專業增強版 Preview 已過期

Office LTSC 2024 專業增強版 Preview 已過期

無法進行臺中市教育局的 KMS 認證



2025-05-08

樹德ITmanager 網路管理首頁

用 PHP 整理了一個可以方便點開 MRTG 、其一天流量分析的網頁。

樹德ITmanager 網路管理首頁


原始碼

<?php
// 設定時區為台灣(UTC+8)
date_default_timezone_set('Asia/Taipei');
// 產生過去7天(不含今天)的日期與連結陣列
$links = [];
for ($i = 1; $i <= 6; $i++) {
$ts = strtotime("-{$i} day");
$display_date = date('Y年m月d日', $ts);
$link_date = date('ymd', $ts);
$url = "https://netflow2.tc.edu.tw/TANet2/IPv4/1{$link_date}/schoolsummary-1708.html";
$links[] = [
'display_date' => $display_date,
'url' => $url
];
}

?>
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ITmanager 網路管理首頁</title>
<style>
body {
font-family: 'Segoe UI', '微軟正黑體', Arial, sans-serif;
background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 60px auto;
background: #fff;
border-radius: 18px;
box-shadow: 0 6px 24px rgba(0,0,0,0.07);
padding: 36px 40px 30px 40px;
}
h1 {
color: #1e293b;
font-size: 2.2rem;
letter-spacing: 2px;
margin-bottom: 26px;
border-left: 5px solid #6366f1;
padding-left: 15px;
}
.section {
margin-top: 20px;
}
.subtitle {
font-size: 1.18rem;
color: #4f46e5;
margin-bottom: 14px;
font-weight: bold;
letter-spacing: 1px;
}
.date-list {
padding-left: 0;
list-style: none;
display: flex;
flex-wrap: wrap;
gap: 10px 18px;
}
.date-list li {
margin: 0;
}
.date-list a {
color: #2563eb;
text-decoration: none;
font-weight: 500;
transition: color 0.2s;
}
.date-list a:hover .date-badge {
background: #7c3aed;
}
.date-badge {
background: #6366f1;
color: #fff;
border-radius: 8px;
padding: 6px 14px;
font-size: 1rem;
vertical-align: middle;
display: inline-block;
min-width: 110px;
text-align: center;
}
.banner-group {
display: flex;
flex-direction: column;
gap: 24px;
margin-bottom: 32px;
}
.banner-item {
width: 100%;
background: #f3f4f6;
border-radius: 14px;
box-shadow: 0 2px 10px rgba(99,102,241,0.06);
display: flex;
flex-direction: column;
align-items: center;
padding: 14px 10px 12px 10px;
}
.banner-img {
width: 100%;
max-width: 100%;
height: auto;
border-radius: 10px;
margin-bottom: 8px;
box-shadow: 0 2px 8px rgba(99,102,241,0.08);
}
.banner-caption {
font-size: 1.01rem;
color: #6366f1;
font-weight: 600;
text-align: center;
letter-spacing: 1px;
margin-top: 2px;
}
@media (max-width: 900px) {
.banner-group { flex-direction: column; gap: 16px; }
.banner-item { max-width: 100%; }
}
.footer {
text-align: center;
margin-top: 38px;
padding: 18px 0 10px 0;
background: none;
color: #64748b;
font-size: 1.08rem;
}
.footer a {
color: #4f46e5;
text-decoration: none;
font-weight: 600;
transition: color 0.2s;
}
.footer a:hover {
color: #2563eb;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>樹德ITmanager 網路管理首頁</h1>
<div class="banner-group">
<div class="banner-item">
<img src="https://mrtg.tc.edu.tw/schools/sdps-day.png" alt="每日流量" class="banner-img">
<div class="banner-caption">每日流量</div>
</div>
<div class="banner-item">
<img src="https://mrtg.tc.edu.tw/schools/sdps-week.png" alt="每週流量" class="banner-img">
<div class="banner-caption">每週流量</div>
</div>
<div class="banner-item">
<img src="https://mrtg.tc.edu.tw/schools/sdps-month.png" alt="每月流量" class="banner-img">
<div class="banner-caption">每月流量</div>
</div>
<div class="banner-item">
<img src="https://mrtg.tc.edu.tw/schools/sdps-year.png" alt="年度流量" class="banner-img">
<div class="banner-caption">年度流量</div>
</div>
</div>

<div class="section">
<h2 class="subtitle">網路流量分析表</h2>
<ul class="date-list">
<?php foreach ($links as $item): ?>
<li>
<a href="<?php echo $item['url']; ?>" target="_blank">
<span class="date-badge"><?php echo $item['display_date']; ?></span>
</a>
</li>
<?php endforeach; ?>
</ul>
</div>
</div>
<footer class="footer">
<a href="https://shude2024.blogspot.com/" target="_blank">樹德網管</a>
</footer>
</body>
</html>

2025-04-25

影印機

1.黑白影印機 367 只支援 SMB 1.0 的傳輸協定,所以無法掃描到 scan ( SMB 2.0 以上 )。


2.這兩台影印機,都只能在 C 網域列印。


影響及規劃:

SMB 1.0 是很老舊、不安全的通訊協定,看看是否能從機器內部升級,如果無法升級,可能要考慮換機器。

2025-04-23

校網後台管理說明

  • 首頁「右側選單」修改:(認識樹德、課程教學、家長專區、師生網站、公務網站、學習網站)
    • 後台->【模組管理】->選單模組
      ( 這個修改的是「在首頁出現的文字」,而【資訊管理】所建立的是【網站導覽】會出現的。)
    • 文字的超連結可以自行修改,不見得一定要跟下一項的資訊管理所建立的頁面綁在一起。

  • 後台->【資訊管理】
    • 要製作出【網站導覽】自動更新的分類,必須點左邊上面的〔新增〕,從這邊建立好「樹狀目錄」之後,才去右邊〔新增資訊〕。
    • 只有〔新增資訊〕的文章,才能放附件上去,〔分類〕是無法上傳附件的
    • 在網站內,會用來做「靜態頁面」、「年度文件」這些非最新公告之類的說明文件,都在【資訊管理】裡面建立。
    • 在這個【資訊管理】所建立,前二層都是「分類」,建立完二層的分類,才能建立文章。
  • 後台->【文檔管理】:在上面那項所建立的說明頁面,無法上傳附件,就把附件放在這。
  • 後台->模組管理】有使用到的功能:
    • 公告模組:目前只有資訊組放自製的打字網頁。
    • 自定模組:午餐日誌、空氣品質、分隔線。
    • 廣告模組:首頁輪播的 banner。
    • 選單模組:首頁右邊的各種連結選單。
    • RSS 訂閱:首頁的公布欄、榮譽榜,來自校務系統的模組。

2025-03-21

Line 草案

  1. 建立「社群」:樹德公務布告欄;電腦版 Line 上傳附件;缺點:沒有相簿。( 名稱可依校內職稱建立,例如:學務XXX主任、302XXX導師 )
  2. Line 相簿,上限 100 本 x 1000 張;建立相簿的方式,建議以「年度月份」,例如:2025年3月。
  3. 資訊組 Line官方帳號受 理維修通報。

2025-03-17