1
goldylhim
Trouble with TAR files
  • 2007/2/6 12:47

  • goldylhim

  • Just popping in

  • Posts: 14

  • Since: 2004/10/28


I'm trying to use the module packs, specifically the community pack, from the downloads page but I cannot find a program to open them. I've downloaded several programs from download.com saying they extract TAR files but all of them give an error similiar to "Error reading header after processing 0 entries".

I gave up thinking my laptop was just wacky because I've had no problems viewing TAR files before. So I download the file at work and I'm having the same issue.

Someone tell me what I need to open the file and I'll get it!

Thank you!



2
goldylhim
Re: updating from 2.0.13.1 to 2.0.16
  • 2007/1/24 15:03

  • goldylhim

  • Just popping in

  • Posts: 14

  • Since: 2004/10/28


<< had a question here but gonna hold off until I figure something out >>



3
goldylhim
Re: Problem After Install
  • 2005/11/29 0:00

  • goldylhim

  • Just popping in

  • Posts: 14

  • Since: 2004/10/28


and its working again. I love you forever m0nty!



4
goldylhim
Re: Problem After Install
  • 2005/11/28 23:49

  • goldylhim

  • Just popping in

  • Posts: 14

  • Since: 2004/10/28


Like I said. Mainfile.php was empty. it had NONE of this stuff. Here's what mainfile.php looked like BEFORE I added the define code in there.

<?php
// $Id: mainfile.php,v 1.6 2003/02/12 03:37:37 okazu Exp $
//  ------------------------------------------------------------------------ //
//                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 //
//  ------------------------------------------------------------------------ //
/**
 * XOOPS is not installed, redirect to the installer 
 **/

// XOOPS is not installed yet.
if(! defined('XOOPS_INSTALL')){
    
header('Location: install/index.php');
}
?>



5
goldylhim
Re: Problem After Install
  • 2005/11/28 23:43

  • goldylhim

  • Just popping in

  • Posts: 14

  • Since: 2004/10/28


<?php
// $Id: mainfile.dist.php,v 1.7.6.3 2005/05/21 15:38:20 mithyt2 Exp $
//  ------------------------------------------------------------------------ //
//                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_MAINFILE_INCLUDED") ) {
    
define("XOOPS_MAINFILE_INCLUDED",1);

    
// XOOPS Physical Path
    // Physical path to your main XOOPS directory WITHOUT trailing slash
    // Example: define('XOOPS_ROOT_PATH', '/path/to/xoops/directory');
    
define('XOOPS_ROOT_PATH''');

    
// XOOPS Virtual Path (URL)
    // Virtual path to your main XOOPS directory WITHOUT trailing slash
    // Example: define('XOOPS_URL', 'http://url_to_xoops_directory');
    
define('XOOPS_URL''http://www.foundation-stone.com');

    
define('XOOPS_CHECK_PATH'"0");
    
// Protect against external scripts execution if safe mode is not enabled
    
if ( XOOPS_CHECK_PATH && !@ini_get('safe_mode') ) {
        if ( 
function_exists('debug_backtrace') ) {
            
$xoopsScriptPath debug_backtrace();
            if ( !
count($xoopsScriptPath) ) {
                 die(
"XOOPS path check: this file cannot be requested directly");
            }
            
$xoopsScriptPath $xoopsScriptPath[0]['file'];
        } else {
            
$xoopsScriptPath = isset($_SERVER['PATH_TRANSLATED']) ? 

$_SERVER['PATH_TRANSLATED'] :  $_SERVER['SCRIPT_FILENAME'];
        }
        if ( 
DIRECTORY_SEPARATOR != '/' ) {
            
// IIS6 may double the  chars
            
$xoopsScriptPath str_replacestrpos$xoopsScriptPath'\\') ? '\\' 

DIRECTORY_SEPARATOR'/'$xoopsScriptPath);
        }
        if ( 
strcasecmpsubstr($xoopsScriptPath0strlen(XOOPS_ROOT_PATH)), str_replace

DIRECTORY_SEPARATOR'/'XOOPS_ROOT_PATH)) ) {
             exit(
"XOOPS path check: Script is not inside XOOPS_ROOT_PATH and cannot run.");
        }
    }

    
// Database
    // Choose the database to be used
    
define('XOOPS_DB_TYPE''mysql');

    
// Table Prefix
    // This prefix will be added to all new tables created to avoid name conflict in the database. 

Please change this to something different than 'xoops'.
    
define('XOOPS_DB_PREFIX''fs');

    
// Database Hostname
    // Hostname of the database server. If you are unsure, 'localhost' works in most cases.
    
define('XOOPS_DB_HOST''');

    
// Database Username
    // Your database user account on the host
    
define('XOOPS_DB_USER''');

    
// Database Password
    // Password for your database user account
    
define('XOOPS_DB_PASS''');

    
// Database Name
    // The name of database on the host. The installer will attempt to create the database if not 

exist
    define
('XOOPS_DB_NAME''');

    
// Use persistent connection? (Yes=1 No=0)
    // Default is 'No'. Choose 'No' if you are unsure.
    
define('XOOPS_DB_PCONNECT'"0");

    
define("XOOPS_GROUP_ADMIN""1");
    
define("XOOPS_GROUP_USERS""2");
    
define("XOOPS_GROUP_ANONYMOUS""3");

    if (!isset(
$xoopsOption['nocommon']) && XOOPS_ROOT_PATH != '') {
        require 
XOOPS_ROOT_PATH."/include/common.php";
    }
}
?>



6
goldylhim
Re: Problem After Install
  • 2005/11/28 23:37

  • goldylhim

  • Just popping in

  • Posts: 14

  • Since: 2004/10/28


Fatal error: Call to undefined function: xoops_gethandler() in /home/echoesof/public_html/fs/header.php on line 34



7
goldylhim
Re: Problem After Install
  • 2005/11/28 23:31

  • goldylhim

  • Just popping in

  • Posts: 14

  • Since: 2004/10/28


woo I got a new error now. call to undefined function: xoops_gethandler() in /home/blahblah on line 34.

so its found the url now at least :)



8
goldylhim
Re: Problem After Install
  • 2005/11/28 23:19

  • goldylhim

  • Just popping in

  • Posts: 14

  • Since: 2004/10/28


well it wasn't there to begin with. mainfile.php only had the install code on it. I added it in. I will try the cache and templates_c suggestion though. thank you.



9
goldylhim
Problem After Install
  • 2005/11/28 23:09

  • goldylhim

  • Just popping in

  • Posts: 14

  • Since: 2004/10/28


I have XOOPS 2.2.3 installed. Everything was working fine. I was happy, users were happy. It was a big happy stinking time for all.

Then the new address I purchased came through and following the instructions on this article I added the following code to my mainfile.php

define(XOOPS_URL, "http://www.foundation-stone.com");

Site gave an error. I was like oh well, I'll switch it back to how it was and find more help. Well it's broke as hell now. Deleting that one line made it completely forget that the site was ever installed. It's looking for fs/install/index.php

I DO NOT want to reinstall, folks have been using the site since last wednesday and already had articles, posts, images, etc up and I don't want them to loose them. How can I restore the site into seeing that it is already installed and it doesn't need to check for the install file?

I removed the code looking for the install file and I'm back to the error I had before when I had that define line in there. " XOOPS root path not defined. "

Help!



10
goldylhim
Re: Blocks Have Disappeared
  • 2005/3/24 18:42

  • goldylhim

  • Just popping in

  • Posts: 14

  • Since: 2004/10/28


must have just been a host issue. I've done nothing and they're back.

bah I was all like skert and stuff too




TopTop
(1) 2 »



Login

Who's Online

223 user(s) are online (143 user(s) are browsing Support Forums)


Members: 0


Guests: 223


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