我怎麼知道 osCommerce 的版本是什麼? (How can i know what is the release of osCommerce?)


問題描述

我怎麼知道 osCommerce 的版本是什麼? (How can i know what is the release of osCommerce?)

how can i know what is the release of osCommerce? is the release written in any file of the package?

Regards

Javi

‑‑‑‑‑

參考解法

方法 1:

in

includes/application_top.php

there should be something like:

// define the project version
  define('PROJECT_VERSION', 'osCommerce 2.2‑MS2');

方法 2:

Oscommerce version is also shown in Admin, using Server Info in Tools. It shows at the top of the server info page....cheers

方法 3:

If you look into 2.3.3 oscommerce version code.

// define the project version ‑‑‑ obsolete, now retrieved with tep_get_version()   define('PROJECT_VERSION', 'osCommerce Online Merchant v2.3');

in application_top.php above line states that  define('PROJECT_VERSION', 'osCommerce Online Merchant v2.3'); is obsolete 

This is what is expected $current_version = tep_get_version();

echo $current_version;

Look into tep_get_version(); code  version is actually in DIR_FS_CATALOG . 'includes/version.php' 

2.3.3 

(by ziiwebTZHXWalOscprofessionals)

參考文件

  1. How can i know what is the release of osCommerce? (CC BY‑SA 3.0/4.0)

#oscommerce






相關問題

重寫問題 (Rewrite problems)

用於將 OScommerce 網站轉換為 facebook 商店的插件 (plugin for converting OScommerce site to facebook store)

Prestashop 在註冊表單中添加額外字段 (Prestashop Add extra fields to registration form)

無法訪問 oscommerce 中的前端 (Can't access Front end in oscommerce)

如何將重定向添加到 oscommerce 產品頁面 (how add redirect to oscommerce product page)

域和子域之間的不同會話 (Different session between domain and subdomain)

使用會話將整個站點中的循環重定向到移動站點 (Redirect loop in full site to mobile site using session)

osCommerce mysql 導出到 Excel (osCommerce mysql export to Excel)

在 OSCommerce 中更改“主頁”徽標的 URL 目標 (Changing URL destination for "home" logo in OSCommerce)

我怎麼知道 osCommerce 的版本是什麼? (How can i know what is the release of osCommerce?)

301 重定向舊 osCommerce 鏈接的最佳方式 (Best way to 301 redirect old osCommerce links)

Oscommerce語言安裝問題 (Oscommerce language install problem)







留言討論