1
bigwolf
Re: Where should put facebook's Comments Box code in news module
  • 2011/8/16 8:27

  • bigwolf

  • Just popping in

  • Posts: 36

  • Since: 2002/4/20


Dear Mamba,
Thanks for your quick reply!!



2
bigwolf
Where should put facebook's Comments Box code in news module
  • 2011/8/16 6:16

  • bigwolf

  • Just popping in

  • Posts: 36

  • Since: 2002/4/20


I got facebook's Comments Box code from
https://developers.facebook.com/docs/reference/plugins/comments/
Where should put facebook's Comments Box code in news module(in theme.html or?? )? Please help, thanks a bunch!



3
bigwolf
Wrong codes in Treemenuxl block cause blank page to login
  • 2007/11/2 1:36

  • bigwolf

  • Just popping in

  • Posts: 36

  • Since: 2002/4/20


I modified HTML codes in the block of Treemenuxl module last week. When I tried to relogin, there was a blank page in user.php. How can I fix the problem? Please helps, thanks!



4
bigwolf
Re: How to connect xoopsDB in theme.html
  • 2006/9/12 4:42

  • bigwolf

  • Just popping in

  • Posts: 36

  • Since: 2002/4/20


Where can I insert your code? rplima2004
=========================================================
<?php
// $Id: header.php 185 2006-01-22 23:49:01Z skalpa $
// ------------------------------------------------------------------------ //
// XOOPS - PHP Content Management System //
// Copyright (c) 2000 XOOPS.org //
// <https://xoops.org/> //
// ------------------------------------------------------------------------ //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation; either version 2 of the License, or //
// (at your option) any later version. //
// //
// You may not change or alter any portion of this comment or credits //
// of supporting developers from this source code or any supporting //
// source code which is considered copyrighted (c) material of the //
// original comment or credit authors. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program; if not, write to the Free Software //
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA //
// ------------------------------------------------------------------------ //
if (!defined("XOOPS_ROOT_PATH")) {
die("XOOPS root path not defined");
}

// Ensure charset setting
if (!headers_sent()) {
header('Content-Type:text/html; charset='._CHARSET);
}

$GLOBALS['xoopsLogger']->context = "core";

// Get blocks
$block_handler =& xoops_gethandler('block');
$block_handler->assignBlocks();

$GLOBALS['xTheme']->checkCache();

if (!isset($GLOBALS['xoopsOption']['template_main'])) {
// new themes using Smarty does not have old functions that are required in old modules, so include them now
include XOOPS_ROOT_PATH.'/include/old_theme_functions.php';
// need this also
$xoopsTheme['thename'] = $GLOBALS['xoopsConfig']['theme_set'];


}
$GLOBALS['xoopsLogger']->context = "module";

?>



5
bigwolf
How to connect xoopsDB in theme.html
  • 2006/9/11 14:51

  • bigwolf

  • Just popping in

  • Posts: 36

  • Since: 2002/4/20


I'd like to insert the texts and authors from random quote module in theme.html. Could anyone give me a hand? Thanks.

=========[my failure content in theme.html ]==============
<div id="randomquote">
<p>$xoopsDB =& Database::getInstance();
$sql="select texto,autor from ".$xoopsDB->prefix("xoops_citas");
$result = $xoopsDB->query($sql) ; list($texto,$autor)=$xoopsDB->fetchRow($result);
echo "Quote:".$texto;
echo "Author ".$autor;
<p> <BR>
</p>
</div>
===========================================================



6
bigwolf
Re: careless delete xoops_session and how can I recover....
  • 2005/12/29 15:10

  • bigwolf

  • Just popping in

  • Posts: 36

  • Since: 2002/4/20


Quote:

Dave_L wrote:
Use this query to recreate the table:

CREATE TABLE xoops_session (
  
sess_id varchar(32NOT NULL default '',
  
sess_updated int(10unsigned NOT NULL default '0',
  
sess_ip varchar(15NOT NULL default '',
  
sess_data mediumblob NOT NULL,
  
PRIMARY KEY  (sess_id),
  
KEY updated (sess_updated)
TYPE=MyISAM;


I tried to recreate the table, but there is an error message like this:

======================================================
#3 - Error writing file './tpedu/xoops_session.frm' (Errcode: 28)
======================================================

Please help! Many Thanks!



7
bigwolf
careless delete xoops_session and how can I recover....
  • 2005/12/28 16:58

  • bigwolf

  • Just popping in

  • Posts: 36

  • Since: 2002/4/20


*version: XOOPS 2.2.3 Final
*MySQL:3.23.54

================================
Due to admin log-in problem, I careless delete xoops_session and can't recover the table. I tried to copy original *.sql and pasted by phpMyAdmin, but it's not in vain. Now I can not only log in as an admin but lose xoops_session...Could anyone help? Thanks a bunch.



8
bigwolf
Re: xfguestbook spam protection(it works!!)
  • 2005/12/19 1:17

  • bigwolf

  • Just popping in

  • Posts: 36

  • Since: 2002/4/20


Quote:

McDonald wrote:
Go to Modules -> Guestbook -> Configure Form (this is the tab in the middle).
The last option here says: Ask verification code, Yes or No.
Select Yes (left option).
One option above is a drop-down menu with the following options for search engines:
- no action
- non indexable
- prohibited
I used Googles translate engine to translate some of the French into English, you can download it here.


Thanks McDonald,
After selecting "Ask verification code", there is no spam message in xfguestbook 2.30 RC2. Yeah!



9
bigwolf
Re: xfguestbook spam protection
  • 2005/12/15 12:15

  • bigwolf

  • Just popping in

  • Posts: 36

  • Since: 2002/4/20


Quote:

dream77 wrote:
How to make the guestbook get spam protection? I have seen it, but I have updated to the latest version but and they talk about it on the homesite (in french) I do not understan french. please help me, I get like 15-30 spam messages a day, really enoying.

Another guestbook with spam-protection will also do, and a way the transfer the messages would be nice.


Same to me. There are more than 20 spam messages a day in my
website (Guestbook 2.30 RC2). French is all Greek to me.....



10
bigwolf
How to hide URL or show my own texts in main Menu and TreeMenuXL?
  • 2005/1/23 7:29

  • bigwolf

  • Just popping in

  • Posts: 36

  • Since: 2002/4/20


How can I hide URL or replace my own texts in main Menu and TreeMenuXL in the Status Bar?
Please help, thanks!




TopTop
(1) 2 3 4 »



Login

Who's Online

187 user(s) are online (117 user(s) are browsing Support Forums)


Members: 0


Guests: 187


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits