文章列表
PHP 文件以及目录操作
- 博客分类:
- php
<!-- [if gte mso 9]><xml><w:WordDocument><w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel><w:DisplayHorizontalDrawingGridEvery>0</w:DisplayHorizontalDrawingGridEvery><w:DisplayVerticalDrawingGridEvery>2</w:DisplayVerticalDrawingGridEvery> ...
去掉UCenter验证码的修改方法
- 博客分类:
- Ucenter
修改方法:
1.模板修改
修改 \view\default\admin_login.htm 文件,
去掉:
<p>{lang login_seccode}:<input type="text" name="seccode" class="txt" tabindex="2" id="seccode" value="" style="margin-right:5px;width:85px;" /> ...
问题:
$_SGLOBAL[supe_username_show]在模板里,为什么显示 GUEST 而不是显示用户名称
在batch.panel.php这个文件里调用也是一样显示 Guest
解决方案:
用$_SGLOBAL[supe_username]也一样的,显示gust 用户
在前面加一段 getcookie(1); 语句,就能显示当前登陆用户了。.
getcookie(0);会显示gust用户 getcookie(1);就是显示用户
DZ X2.5 游客看不到 keyword 与 description 的解释与解决方案
SupeSite6.0.1_X-Space4.0.1聚合dz7.2后,打开空间时报错:
SupeSite info: MySQL Query Error
User: Guest
Time: 2009-11-10 9:24pm
Script: /index.php
SQL: SELECT t.tid, t.author, t.subject, t.fid, t.views, t.replies, t.dateline, t.lastpost FROM `discuz`.`mythreads` m, `discuz`.`threads` t WHERE m.uid='1' AND m.ti ...
function randstr($len=6){
$chars='abcdefghijklmnopqrstuvwxyz0123456789';
#characters to build the password from
mt_srand((double)microtime()*1000000*getmypid());
#seed the random number generater (must be done)
$password='';
while(strlen($password)<$len)
$password.= ...