标签为 php 的存档
[修正参考]Windows下WordPress邮件发送(外部smtp)解决方案
Author: cbm5 八 2007
用google搜索一下“wordpress 邮件发送”关键字。来解决WordPress发送邮件的问题。
在CSDN上找到一篇原创的解决方案 原文在这里
按照文中的说明操作了一下。成功的实现了用stmp发送系统邮件。
但是发现注册新用户时出现问题。发送给管理员的新用户注册通知邮件发送了。但新用户注册的帐号密码邮件没有被发送。注册成功页面变成了空白。一番郁闷和折腾,打开显示全部错误。报错提示不能重复申明phpmailer类,结果发现在文章的第三步中将 require(“mail.inc.php“); 换成 require_once(“mail.inc.php“); 就可以搞定这个问题了。
阅读全文(301字)
- 5 Comments , 11,588 Hits
- Filed under: 前端技术, 解决方案
-
Tags: php, WordPress
AMFPHP 新增 AMF3 格式,支持 Flex 2.0
Author: cbm13 十二 2006
好消息,AMFPHP新版已经增加了AMF3协议的支持,能对Adobe Flex2 应用程序
和使用Adobe Action Script 3.0的Flash程序支持Remoting,在Flex2里面可以直接使用RemoteObject标签来调用.
下载测试:http://5etdemi.com/uploads/amfphp-1.9.alpha.zip
Flex SQL Admin 现已经开源并提供下载
Author: cbm14 八 2006
简介 English
SQL Admin 是一个基于Adobe Flex 2.0 开发的 Rich Internet Applications,使用PHP作为服务器脚本,通过优秀的Flash Remoting方式进行数据传递。
宗旨:基于Web层面的数据库(MySQL)管理。
特点:跨平台、跨浏览器、轻量级数据传输。
阅读全文(279字)
SQL Admin (PHP version)
Author: cbm31 七 2006
SQL Admin (PHP version) 截图 和 测试地址 现在提供下载
登录框里面分别填上Mysql的域名或者IP、连接用户,和连接密码。就可以轻松管理你的Mysql了。
这个界面对于研究Flex2的朋友应该是熟悉了,sql admin在官方的提供的范例中可以找到.是对Flex dataServices的一个功能展示,但是只能连接Flex dataServices.当时就点点点,干嘛就只能连接dataServices的呢?
自己动手做了个支持自己网站的.这样管理MYSQL就很方便了.数据交互使用了remoting-AMF,轻量的交换数据。准备提供下载或者Open Source。
阅读全文(409字)
一个很好的月历函数,想自己作Blog系统的不要错过哦!
Author: cbm19 二 2005
一个很好的月历函数,想自己作Blog系统的不要错过哦!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
<?php function calendar($MM,$YYYY){ if($MM=="") $MM = date("m"); if($YYYY=="") $YYYY = date("Y"); if(checkdate($MM,1,$YYYY)){ $stringDate = strftime("%d %b %Y",mktime (0,0,0,$MM,1,$YYYY)); $days = strftime("%d",mktime (0,0,0,$MM+1,0,$YYYY)); $firstDay = strftime("%w",mktime (0,0,0,$MM,1,$YYYY)); $lastDay = strftime("%w",mktime (0,0,0,$MM,$days,$YYYY)); $printDays = $days; $preMonth = strftime("%m",mktime (0,0,0,$MM-1,1,$YYYY)); $preYear = strftime("%Y",mktime (0,0,0,$MM-1,1,$YYYY)); $nextMonth = strftime("%m",mktime (0,0,0,$MM+1,1,$YYYY)); $nextYear = strftime("%Y",mktime (0,0,0,$MM+1,1,$YYYY)); print("<table border=\"1\" cellpadding=\"1\" cellspacing=\"1\">"); print("<tr><th valign=\"top\"><a href=\"".$_SERVER['PHP_SELF']."?NB=".$_GET["NB"]."&MM=".$preMonth."&YY=".$preYear."\">P</a></th>"); print("<th colspan=\"5\" valign=\"top\">".strftime("%b %Y",mktime (0,0,0,$MM,1,$YYYY))."</th>"); print("<th valign=\"top\"><a href=\"".$_SERVER['PHP_SELF']."?NB=".$_GET["NB"]."&MM=".$nextMonth."&YY=".$nextYear."\">N</a></th></tr>"); print("<tr style=\"font-family: Verdana; font-size:x-small\">"); print("<th>Sun</th><th>Mon</th><th>Tue</th><th>Wed</th><th>Thu</th><th>Fri</th><th>Sat</th></tr>"); $currentDays = 1; for($a=1;$a<=5;$a++){ print("<tr align=\"left\" valign=\"top\" style=\"font-family: Verdana; font-size:x-small\">"); $diffDays = $firstDay-$lastDay; if($firstDay>$lastDay && $currentDays ==1 && ($diffDays<>1)){ for($x=$lastDay;$x>=0;$x--){ $printDays = $days-$x; print("<td>$printDays</td>"); } for($z=1;$z<$firstDay-$lastDay;$z++){ print("<td> </td>"); } for($y=$firstDay;$y<7;$y++){ print("<td>$currentDays</td>"); $currentDays++; } } elseif($firstDay!=0 && $currentDays==1){ for($z=1;$z<=$firstDay;$z++){ print("<td> </td>"); } for($y=$firstDay;$y<7;$y++){ print("<td>$currentDays</td>"); $currentDays++; } } else { for($u=1;$u<=7 && $currentDays<=$days;$u++){ print("<td>$currentDays</td>"); $currentDays++; } } print("</tr>"); } print("</table>"); } } ///to use if ($MM==""){$MM=12;$YY=2004;} calendar($MM,$YY) ?> |