61
tzvook
Re: @Trabis: Defacer
  • 2009/8/20 16:31

  • tzvook

  • Just can't stay away

  • Posts: 875

  • Since: 2003/2/1 2


Dfacer is enables (as was in default config)
I created a page - contact-us module (added the * ) then went to "themes" and gave it a different theme .... and it's not working

Should the "title" match the module title ?



62
tzvook
Re: @Trabis: Defacer
  • 2009/8/20 16:19

  • tzvook

  • Just can't stay away

  • Posts: 875

  • Since: 2003/2/1 2


Hey T .... quick respond

here it is:
<?php
// $Id: footer.php 1471 2008-04-20 14:49:37Z phppp $
//  ------------------------------------------------------------------------ //
//                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");
}

@include_once 
XOOPS_ROOT_PATH "/modules/defacer/include/beforefooter.php";


if ( !
defined("XOOPS_FOOTER_INCLUDED") ) {
    
define("XOOPS_FOOTER_INCLUDED",1);



    
$xoopsLogger->stopTime'Module display' );
    if (
$xoopsOption['theme_use_smarty'] == 0) {
        
// the old way
        
$footer htmlspecialchars$xoopsConfigMetaFooter['footer'] ) . '<br /><div style="text-align:center">Powered by XOOPS &copy; <a href="http://xoops.sourceforge.net/" rel="external">The XOOPS Project</a></div>';
        if (isset(
$xoopsOption['template_main'])) {
            
$xoopsTpl->xoops_setCaching(0);
            
$xoopsTpl->display('db:'.$xoopsOption['template_main']);
        }
        if (!isset(
$xoopsOption['show_rblock'])) {
            
$xoopsOption['show_rblock'] = 0;
        }
        
themefooter($xoopsOption['show_rblock'], $footer);
        
xoops_footer();
    } else {
        
// RMV-NOTIFY
        
include_once XOOPS_ROOT_PATH '/include/notification_select.php';

        if (!
headers_sent()) {
            
header('Content-Type:text/html; charset='._CHARSET);
            
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
            
//header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
            
header('Cache-Control: private, no-cache');
            
header('Pragma: no-cache');
        }
        
/*
        global $xoopsDB, $xoopsConfig;
        if ( !$xoopsConfig['theme_fromfile'] ) {
            session_write_close();
            $xoopsDB->close();
        }
        */
        //@internal: using global $xoTheme dereferences the variable in old versions, this does not
        
if ( !isset( $xoTheme ) )    $xoTheme =& $GLOBALS['xoTheme'];

        if ( isset( 
$xoopsOption['template_main'] ) && $xoopsOption['template_main'] != $xoTheme->contentTemplate ) {
            
trigger_error"xoopsOption[template_main] should be defined before including header.php"E_USER_WARNING );
            if ( 
false === strpos$xoopsOption['template_main'], ':' ) ) {
                
$xoTheme->contentTemplate 'db:' $xoopsOption['template_main'];
            } else {
                
$xoTheme->contentTemplate $xoopsOption['template_main'];
            }
        }
        
$xoTheme->render();
    }
    
$xoopsLogger->stopTime();
}
?>



63
tzvook
Re: @Trabis: Defacer
  • 2009/8/20 16:10

  • tzvook

  • Just can't stay away

  • Posts: 875

  • Since: 2003/2/1 2


Hi All
I'm going nuts
Defacer is not working for me .... it's my second round of tests (need it badely)

and the:
Defacer Footer took 0.039 seconds to load.
is not @ the timers (just the header one)



64
tzvook
Re: Article 2.00RC V/S Article 1.00
  • 2009/6/10 22:16

  • tzvook

  • Just can't stay away

  • Posts: 875

  • Since: 2003/2/1 2


Quote:

ipwgc wrote:

1. tzvook In your opinion, you recommended to continue whit the version 1.00,
2. Because I see here in the forum the version 2.00CR have a lot of bug?
3. or exist Article 2.01 whit corrected bugs?

Regards,
David


2.0 is not recommended - categories bug and some more .... and there are not much changes from the 1.0 version ...



65
tzvook
Re: Changing default from DHTML in newbb
  • 2009/5/30 14:33

  • tzvook

  • Just can't stay away

  • Posts: 875

  • Since: 2003/2/1 2


Quote:

hipoonios wrote:
But I want Dhtml with xcode as default.
I've tried:
$customConfig["editor_default"] = "xcode";
But it doesn't work.


As much as I remember the Extended DHTML should be called "dhtmlext"

so try:
// Set the default editor
$customConfig["editor_default"] = "dhtmlext";



66
tzvook
Re: Changing default from DHTML in newbb
  • 2009/5/30 1:08

  • tzvook

  • Just can't stay away

  • Posts: 875

  • Since: 2003/2/1 2


open modules/newbb/include/plugin.php

look for:
// Set the default editor
$customConfig["editor_default"] = "";


Change to:
// Set the default editor
$customConfig["editor_default"] = "TinyEditor";



67
tzvook
Re: Article 2.00RC block not showing
  • 2009/5/7 9:53

  • tzvook

  • Just can't stay away

  • Posts: 875

  • Since: 2003/2/1 2


Yep - a Great module

I consider it the best "articles" module (the rest are more "news" alike, then articles)

My solution was simply to use version 1.0 also in 2.3.3. sites (works perfectly) ....



68
tzvook
Re: Article 2.00RC block not showing
  • 2009/5/6 7:21

  • tzvook

  • Just can't stay away

  • Posts: 875

  • Since: 2003/2/1 2


@ playsome
I don't have any advise, just note that version 2 has a lot of bugs ...
Categories can't be deleted too ...

It was my favorite articles module .... but seems like phppp has no time for it, and it's full of bugs



69
tzvook
Re: Catads 1.50 beta
  • 2009/5/4 17:52

  • tzvook

  • Just can't stay away

  • Posts: 875

  • Since: 2003/2/1 2


@ kraven

A few feature suggestions ( If I may ):

1. I do hope there will be a way to add/change CITIES / REGIONS / DEPARTMENTS via the admin in the next version ( quite a must )
2. There's a currency field in the admin, but it's not connected to it's representitive-char (advanced search and may be also in the ads)

I didn't dig much, but these are quite a must.
There are some blesed changes indeed, (RSS feed by the category ) ..... thanks !!!
Hope you're still in dev mode ...



70
tzvook
Re: XMDT: Move to Blue - Classic Module Update Phase
  • 2009/4/11 6:46

  • tzvook

  • Just can't stay away

  • Posts: 875

  • Since: 2003/2/1 2


I'll update my inTHEtube module + some bug fixes ...




TopTop
« 1 ... 4 5 6 (7) 8 9 10 ... 60 »



Login

Who's Online

81 user(s) are online (45 user(s) are browsing Support Forums)


Members: 0


Guests: 81


more...

Donat-O-Meter

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

Latest GitHub Commits