歡迎光臨, 訪客. 請先 登入註冊一個帳號.
三月 29, 2024, 06:47:11 下午
19595 文章 在 3865 主題 由 4580 會員
最新註冊會員: aa123aa1
  列出文章
頁: [1]
1  支援 / 安裝與設定 / 關於topreadposts的外掛 於: 十一月 25, 2007, 10:50:41 下午
如題!
小弟在環境1.2.1版下使用了topreadposts這個外掛後
也啟用這個外掛了
在個人模版下也放了程式,程式如下
程式碼:
{if $topreadposts->isEnabled()}
<h2>熱門文章</h2>
<ul>
{assign var=readposts value=$topreadposts->getTopReadPosts()}
{if !empty($readposts) }
{foreach from=$readposts item=readpost}
<li><a href="{$url->postLink($readposts)}">{$readposts->getTopic()}</a> [{$readposts->getNumReads()} 次]</li>
{/foreach}
{/if}
</ul>
{/if}

雖然沒出現什麼錯誤但也沒有出現最多文章!
請問為什麼啊?
ps:已經在該論壇找過相關資料了,沒有1.2的topreadposts的相關資料
2  支援 / 使用與操作 / Re: 請問!!如何利用LIFETYPE1.1 崁入youtube的影片?? 於: 十一月 23, 2007, 11:05:21 上午
如果你不想安裝新版本,
你就必須自己修改程式碼
讓TinyMCE可以使用<embed></embed>語法
然後編輯文章的時候,在使用HTML編輯模式編輯就行了

小弟再針對上面所說的做一個更詳細的說明
修改/js/tinymce/tiny_mce-plog.js

在TinyMCE 裡加入embed為合法函數:

修改/js/tinymce/tiny_mce-plog.js,在extended_valid_elements裡加上

embed[type|wmode|height|width|autostart|src|FALSE|TRUE]


補充:

如果要播放 BubbleShare 的 Flash 照片秀,需要更多的 embed 參數才可以,所以又要再加入

embed[pluginspage|type|flashvars|allowscriptaccess|quality|bgcolor|EnableContextMenu|src|autostart|loop|width|height|style|name|wmode|scale]"

上面這些是來自阿杰老師的部落格實驗室

而在lifetype崁入youtube的影片
在http://203.72.226.64/lifetype/post/1/153
有說明
以下是網頁中的說明
第一步點選InserVideo

 

 怎麼使用這inservideo  呢?

1.先找到你的影片的網址:

注意是影片網址,不是上面那網頁的網址。

在影片網頁中的Embed語法為<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/q3FlII8xTSI&rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/q3FlII8xTSI&rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object>

但它的影片的網址是http://www.youtube.com/v/q3FlII8xTSI&rel=1



貼上影片網址,選擇YouTube或Google Video,再按下「Insert Code」,這樣就可以將影片放在部落格裡了。
結果請看http://203.72.226.64/lifetype/post/1/153



3  開發 / 模版設計 / Re: 請教如何可在模版加入全域的網誌分類表單? 於: 十一月 23, 2007, 10:49:49 上午
但據知,在自定的模版中是沒法直接利用你所引述的物件(objects)的。
是喔!不好意思!小弟程式不好!對lifetype不夠了解!獻醜了!
不然小弟還有個”拙見”
就是進入”網誌”這個頁面的網誌分類
把網誌分類下的分類的連結點複制起來
然後在你的自定的模版裡加進去!
如果此法也不行!您只能等等mark wu版主或其它板主回答您了!

不好意思!獻醜了!
4  開發 / 模版設計 / Re: 請教如何可在模版加入全域的網誌分類表單 於: 十一月 22, 2007, 07:19:52 下午
想請教要動用哪一個LifeType物件來取得相關資料?
我知道在summary裡可動用有關物件,好像是$blogCategories吧,但在自定的模版裡可以搞出來嗎?我想要的是全域的網誌分類表單而非所處的Blog的網誌分類,因這一個只要從$blog->getBlogCategory()就搞出來了。


你這是問號嗎?如果是問號,小弟大概知道在哪裡
主要是summary裡的blogslist.template這支程式
裡面有一段程式如下一樣,可將下列程式加入index裡你喜歡的位置!
(lifetype版本不同,不知程式有沒有一樣就不知道了)
程式碼:
<!--下面到-->
<div id="categories">
   
<h3>{$locale->tr("blog_categories")}</h3>
<ul>
<li>
{if $blogCategoryId != 0}
<a href="?op=BlogList&amp;globalArticleCategoryId=0">{$locale->tr("all")}</a>
{else}
{$locale->tr("all")}
{/if}
</li>

{foreach from=$blogCategories item=blogCategory}
  {if $blogCategory->getNumBlogs() > 0}
{math assign=fontSize equation="(int)((x-y)/step)+12" x=$blogCategory->getNumActiveBlogs() y=$min step=$step}
<li>
{if $blogCategory->getId() != $blogCategoryId}
<a style="font-size: {$fontSize}px" href="?op=BlogList&amp;blogCategoryId={$blogCategory->getId()}">{$blogCategory->getName()}</a>
{else}
<span style="font-size: {$fontSize}px">{$blogCategory->getName()}</span>
{/if}
</li>

  {/if}
{/foreach}
</ul>

   
</div> 
<!--到上面是部落格全域的網誌分類表單 的程式-->

你可以試試看!但我不知道成不成功就是了!!
如果講錯還請多多包含!
5  部落格應用 / 教育部落格 / Re: 學生部落格應該要有什麼功能? 於: 十一月 21, 2007, 11:06:09 上午
1.summary页面的排行榜。在加多些。如季度排行。公告排行,分类博客排行。这些会使用一部分有个人兴趣爱好的学生。找到自己的社群和知己。
2.相册功能也能在summary 的页面被SHOW 出来。像一个小的门户网站就好了。

3.可以加一些评分和统计的栏目。这样可以给每个人以激励。感觉自己在虚拟中赚到相应的报酬和炫耀的点。

4. 论坛功能的最好能集成到里面。在summary 页面显示每个栏目里的最新信息。

5.在summary的加入加密的栏目。这样可以使一些被邀请的人进入。增加了好奇的性。已进到里面为荣。

6.像博客列表,用户列表都可以作为一个栏目。有更多。来完成查看。使版面更清爽。

还有一些没有成熟。等一段时间加入。

1.其實我們有想過要做~,但是由於程式還不夠好,沒有做出來!
2.相冊在首頁顯示,這部分,在新生國小的部落格有做出來(不過只有最新上傳的圖片)
3.這個lifetype好像有類似的外掛!不過這個其實我們不考慮做!
4.我不太懂你的意思(因為小弟有些簡體字看不太懂,不好意思)
5.我不太懂你的意思(因為小弟有些簡體字看不太懂,不好意思)
6.博客列表?這個lifetype不是本來就有了嗎?

ps:如有會錯意,或是得罪之處,請多多包含!

6  建議 / 要求與建議 / 對lifetype的建議 於: 十一月 21, 2007, 10:42:19 上午

如果lifetype在未來~迴響有加上悄悄話的功能的話~就更好了!!
另外!就是如果summary首頁有加上最熱門的部落格就好了!或者隨機部落格
(就我所知,最活躍網誌並不是最熱門的部落格,比較像是這個網誌比較常用!還是它本來就是熱門的部落格??)
希望能在summary加上隨機檔案或最熱門檔案或最新檔案!

ps:只是個人的小建議啦!如果有得罪之處請多多包含! 吐舌頭
7  開發 / 外掛程式 / galleryimages外掛錯誤! 於: 十一月 08, 2007, 09:42:07 下午
不知道是外掛本身沒寫好還是lifetype有問題
就是啊小弟架的lifetype網站有會員的網誌出現了下列問題
小弟架的網站有使用galleryimages這個外掛!
而當某個網誌的檔案中心沒有東西時
最近上傳圖片這個區塊就會出現以下 (沒有圖片會出現下列訊息)
<a href="Fatal error: Call to a member function getOwnerId() on a non-object in C:\AppServ\www\lifetype\class\net\prettyrequestgenerator.class.php on line 309

這個也算不算bug啊?因為這個在官方有這個外掛!(雖然不代表就沒問題啦!)
照理說!沒有圖片的話!就不會顯示任何東西才對吧!

有請程式好的朋友
有請版主

感謝~~!!
8  支援 / 使用與操作 / Re: 是不是bug啊?有關檔案中心 於: 十一月 08, 2007, 09:31:33 下午
LifeType預設只能上傳2M大小的檔案
你是不是檔案超過2M?
若是,改一下「全部站台管控 » 上傳設定 » maximum_file_upload_size」


感謝板主的回應!
不過小弟的上傳設定已改成50M了!
9  支援 / 使用與操作 / 是不是bug啊?有關檔案中心 於: 十一月 08, 2007, 06:17:18 下午
當我上傳檔案超過30秒後,就會出現下列訊息
Fatal error: Maximum execution time of 30 seconds exceeded in C:\AppServ\www\lifetype\admin.php on line 5

小弟是知道上面是說script 的執行時間超過 30 秒

雖然是有其它的方法可以解決,就是到 php.ini 把 max_executation_tim 改為 60 秒,或是更長!
但是如果上傳更大的檔案又再超過所設定的時間,還是一樣會出現這個問題吧!!
小弟是認為,當上傳超過所設定的時間後,就出現:
”對不起!你所上傳的檔案過大或上傳時間過長,導致上傳失敗”
而不是出現Fatal error的錯誤!
不知道這個算不算bug啊!
小弟用的版本是lifetype 1.2.1的!
1.2.5的不知道有無已解決這個問題?
有請板主
ps:如口氣不對或有錯字的話,請見諒
10  部落格應用 / 教育部落格 / Re: 學生部落格應該要有什麼功能? 於: 十一月 06, 2007, 10:39:49 下午
感謝markwu板主的回覆!關於流量的問題!小弟已在新生部落格獲得解答(不算是解答,不過有資料可以參考就是了)!
至於mark wu 板主說的Javascript 是要~?小弟在Javascript 方面沒有研究!
mark wu板主可以提供一下嗎?(相關資料)!謝謝!!
至於檔案中心的話,如果我們有改成功會貢獻到社群來的!
因為小弟發現很多人有做了一些很好的功能或其它東西!都不太會貢獻出來!!
 原來是沒有art!真的辛苦各位開發者與維護者了!!
summary這部分我們已在努力的測試與開發中!如果測試出來!也會貢獻到社群來的!
不過我們主要會朝校園的模版方向走!

ps:如在用語上有任何錯誤的話,請多多指教!
11  開發 / 模版設計 / Re: 在模板中加入網誌統計發生問題 於: 十月 28, 2007, 12:45:09 下午
是的!基本上這個 function 在 1.1 之後就 phase out 了。以後也不會再加上去了。如果需要,其實可以自己implement 啦!

Mark

關於Mark Wu站長說的!小弟在說個更明確一點!
以下文章是在新生部落格學習網(http://blog.snes.tp.edu.tw/blog/2)看到的

修改 /class/summary/dao/summarystatus.class.php
將以下程式加入summarystatus.class.php
getViewedTotal()總瀏覽數
-------程式------------------------------------------------
function getViewedTotal()
{
$query = "SELECT SUM(num_reads) as total FROM ".$this->getPrefix()."articles WHERE blog_id >=0";

$result = $this->Execute( $query );

if (!$result)
return false;

$row = $result->FetchRow();

if (!isset($row["total"]))
return 0;

$result->close();

return $row["total"];
}

再於模版裡加<li>{$locale->tr("total_viewed")}:{$blog->getViewedTotal()}</li>


但是小弟試過了!好 像沒什麼用?不知道是不是我弄錯了!不過~給大家一個可以參考的例子!小弟弄不行,說不定有人試得出來!如果有人試出來!希望到時候大家可以分享給大家!
12  部落格應用 / 教育部落格 / Re: 學生部落格應該要有什麼功能? 於: 十月 19, 2007, 10:55:00 下午
你好!謝謝兩位版主提供的意見!
我們會例入考慮的!
我們有去訪問許多學生的意見!
大部分的學生有以下意見↓
1.沒有人氣指數(個別模版)→這個意見占的比例很高!(不知道版主有沒有什麼意見)bbclone好像占資源很兇~
2.沒有相簿(應該說gallery太難用,檔案中心不像相簿(檔案中心這部分,我們有在修改成更像相簿或影音中心))
3.summary的背景太單調(這個板主可不可以也給個意見?)
大概是這樣~謝謝~!!麻煩了~!!^^
對了!順便說一下!這個校園部落是做給大學生用的!(某一個大學)
13  部落格應用 / 教育部落格 / 學生部落格應該要有什麼功能? 於: 十月 12, 2007, 01:11:09 下午
如題!如果做一個部落格只給某個校園的學生用的話!大家認為需要有什麼樣的功能呢?
又或者大家有什麼意見可以提供出來?謝謝!!
14  支援 / 使用與操作 / 在新增檔案時發生錯誤。求救! 於: 五月 24, 2007, 09:27:24 下午
我的軟體
win xp sp2
appserv-win32-2.5.8
lifetype 1.2.1版
外掛有用
googleadsense、templateeditor、badbehavior、gallery、embedmedia
我是裝了最新版的plog
都按照步驟設好了~
也可以正常的使用
但是用檔案中心上傳
按新增後出現空白畫面
然後再重整一次後就出現檔案中心的畫面了!
但是在檔案中心還是看不到上傳的東西!!
不過圖片檔可以
我有看過該論壇的文章
也改過php.ini 中的 memory_limit的容量了
也改過全部站台管控 的上傳設定了
 php.ini的
post_max_size 和 upload_max_filesize也改成10M了
在改了PHP.INI檔後就會出現
在新增檔案時發生錯誤。
跟以下訊息
Warning: copy(./gallery/1/09. 雪花.mp3) [function.copy]: failed to open stream: Invalid argument in C:\AppServ\www\lifetype\class\file\file.class.php on line 393

Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\lifetype\class\file\file.class.php:393) in C:\AppServ\www\lifetype\class\view\view.class.php on line 321

Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\lifetype\class\file\file.class.php:393) in C:\AppServ\www\lifetype\class\view\view.class.php on line 321

Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\lifetype\class\file\file.class.php:393) in C:\AppServ\www\lifetype\class\view\view.class.php on line 321

Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\lifetype\class\file\file.class.php:393) in C:\AppServ\www\lifetype\class\view\view.class.php on line 321

Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\lifetype\class\file\file.class.php:393) in C:\AppServ\www\lifetype\class\view\view.class.php on line 321

Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\lifetype\class\file\file.class.php:393) in C:\AppServ\www\lifetype\class\view\view.class.php on line 175
但是在改了之後,更嚴重,只剩圖片可上傳 其它檔都不能上傳,改後連不是2M的DOC、TXT或其它檔都不行(圖片OK)

以下是我的error.log訊息

[Wed May 23 23:33:30 2007] [notice] Child 5104: Child process is running
[Wed May 23 23:33:31 2007] [notice] Child 5104: Acquired the start mutex.
[Wed May 23 23:33:31 2007] [notice] Child 5104: Starting 64 worker threads.
[Wed May 23 23:33:31 2007] [notice] Child 3812: Released the start mutex
[Wed May 23 23:33:32 2007] [notice] Child 3812: Waiting for 64 worker threads to exit.
[Wed May 23 23:33:32 2007] [notice] Child 3812: All worker threads have exited.
[Wed May 23 23:33:32 2007] [notice] Child 3812: Child process is exiting
[Wed May 23 23:33:32 2007] [notice] Child 5104: Starting thread to listen on port 80.
[Wed May 23 23:33:41 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/lifetype/gallery/1/previews/cover.jpg, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:33:41 2007] [error] [client 59.116.79.196] script 'C:/AppServ/www/error.php' not found or unable to stat, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:33:51 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/lifetype/gallery/1/previews/cover.jpg, referer: http://jianmin.no-ip.org/lifetype/admin.php?op=resources&albumId=1&page=1
[Wed May 23 23:33:51 2007] [error] [client 59.116.79.196] script 'C:/AppServ/www/error.php' not found or unable to stat, referer: http://jianmin.no-ip.org/lifetype/admin.php?op=resources&albumId=1&page=1
[Wed May 23 23:34:02 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/lifetype/gallery/1/previews/cover.jpg, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:34:02 2007] [error] [client 59.116.79.196] script 'C:/AppServ/www/error.php' not found or unable to stat, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:34:17 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/lifetype/gallery/1/previews/cover.jpg, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:34:17 2007] [error] [client 59.116.79.196] script 'C:/AppServ/www/error.php' not found or unable to stat, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:35:05 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/lifetype/gallery/1/previews/cover.jpg, referer: http://jianmin.no-ip.org/lifetype/index.php?op=ViewAlbum&albumId=1&blogId=1
[Wed May 23 23:35:05 2007] [error] [client 59.116.79.196] script 'C:/AppServ/www/error.php' not found or unable to stat, referer: http://jianmin.no-ip.org/lifetype/index.php?op=ViewAlbum&albumId=1&blogId=1
[Wed May 23 23:35:05 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/favicon.ico
[Wed May 23 23:36:10 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/lifetype/gallery/1/previews/cover.jpg, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:36:10 2007] [error] [client 59.116.79.196] script 'C:/AppServ/www/error.php' not found or unable to stat, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:37:44 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/lifetype/gallery/1/previews/cover.jpg, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:37:44 2007] [error] [client 59.116.79.196] script 'C:/AppServ/www/error.php' not found or unable to stat, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:37:57 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/lifetype/gallery/1/previews/cover.jpg, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:37:57 2007] [error] [client 59.116.79.196] script 'C:/AppServ/www/error.php' not found or unable to stat, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:44:37 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/lifetype/gallery/1/previews/cover.jpg, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:44:37 2007] [error] [client 59.116.79.196] script 'C:/AppServ/www/error.php' not found or unable to stat, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:45:28 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/lifetype/gallery/1/previews/cover.jpg, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:45:28 2007] [error] [client 59.116.79.196] script 'C:/AppServ/www/error.php' not found or unable to stat, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:46:03 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/lifetype/gallery/1/previews/cover.jpg, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:46:03 2007] [error] [client 59.116.79.196] script 'C:/AppServ/www/error.php' not found or unable to stat, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:46:30 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/lifetype/gallery/1/previews/cover.jpg, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:46:30 2007] [error] [client 59.116.79.196] script 'C:/AppServ/www/error.php' not found or unable to stat, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:49:15 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/lifetype/gallery/1/previews/cover.jpg, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:49:15 2007] [error] [client 59.116.79.196] script 'C:/AppServ/www/error.php' not found or unable to stat, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:49:35 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/lifetype/gallery/1/previews/cover.jpg, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:49:35 2007] [error] [client 59.116.79.196] script 'C:/AppServ/www/error.php' not found or unable to stat, referer: http://jianmin.no-ip.org/lifetype/admin.php
[Wed May 23 23:50:43 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/lifetype/gallery/1/previews/cover.jpg, referer: http://jianmin.no-ip.org/lifetype/index.php?op=ViewAlbum&albumId=1&blogId=1
[Wed May 23 23:50:43 2007] [error] [client 59.116.79.196] script 'C:/AppServ/www/error.php' not found or unable to stat, referer: http://jianmin.no-ip.org/lifetype/index.php?op=ViewAlbum&albumId=1&blogId=1
[Wed May 23 23:50:43 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/favicon.ico
[Wed May 23 23:50:46 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/favicon.ico
[Wed May 23 23:50:47 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/lifetype/gallery/1/previews/cover.jpg, referer: http://jianmin.no-ip.org/lifetype/index.php?op=ViewAlbum&albumId=1&blogId=1
[Wed May 23 23:50:47 2007] [error] [client 59.116.79.196] script 'C:/AppServ/www/error.php' not found or unable to stat, referer: http://jianmin.no-ip.org/lifetype/index.php?op=ViewAlbum&albumId=1&blogId=1
[Wed May 23 23:50:48 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/favicon.ico
[Wed May 23 23:50:55 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/favicon.ico
[Wed May 23 23:59:26 2007] [error] [client 59.116.79.196] File does not exist: C:/AppServ/www/lifetype/gallery/1/previews/cover.jpg, referer: http://jianmin.no-ip.org/lifetype/admin.php?op=resources&albumId=1&page=1
[Wed May 23 23:59:26 2007] [error] [client 59.116.79.196] script 'C:/AppServ/www/error.php' not found or unable to stat, referer: http://jianmin.no-ip.org/lifetype/admin.php?op=resources&albumId=1&page=1

然後還有就是
官方網站說的
"以上兩個方法如果都試過了,卻還是沒有辦法上傳 10MB 的檔案,那麼可能還有一個地方需要修改,那就是 Apache 的設定。請把 Apache 的 LimitRequestBody 這個參數改為你要的大小,如 10000000 (10MB),改過後記得重新啟動 Apache。可能的參數設定檔因不同的系統而異:

    * Windows:在 Apache 安裝目錄的 /conf/httpd.conf 中"
這個我找不到LimitRequestBody 這個參數可以改!為什麼?

希望有那個大大可以幫幫我的!!感激不盡!
頁: [1]