Skocz do zawartości
"Idzie nowe..." - o zmianach i nie tylko ×
Przeniesienie zakupów z IPS Marketplace / Moving bought items from IPS Marketplace ×

Rekomendowane odpowiedzi

Opublikowano

Mam problem chciałem zainstalować (BBR23)Forum_Icons_v2.3.0 wszystko dobrze zrobiłem

ale jak wchodzę w jakie kolwiek Forum to pisze takie coś

Fatal error: Class 'forums' not found in /home/accounts_l/lukazuki/public_html/index.php on line 560

co mogło się zrobić ?

Amazing Game Website Templates for those who want to stand out from others.

Professional IPS Themes - Gaming Invision Community Themes, Forum Skins and Game UI Templates.

Forum Templates for Clans and Guilds, Web and Game Developers.

Opublikowano (edytowane)
Co masz? "Broblem"? :)

sry szybko pisałem

sprawdziłem 5 razy dobrze plik class_forums.php wgrałem

przed edycją zrobiłem wcześniej kopię trzech plików

nieedytowane pliki wysłałem na ftp nadpisałem patrze a tu dalej to jest

bo pod koniec w SQL Toolbox/Run a Query wpisałem to

ALTER TABLE `ibf_forums` ADD `icon` text NOT NULL;

ibf_ zmieniłem na swój prefix dałem Run a Query i w codegame_forums na samym końcu dodało tabele Icon a teraz tą tabelę jak usunąć ?

Edytowane przez lumota

Amazing Game Website Templates for those who want to stand out from others.

Professional IPS Themes - Gaming Invision Community Themes, Forum Skins and Game UI Templates.

Forum Templates for Clans and Guilds, Web and Game Developers.

Opublikowano (edytowane)

pliku class_forums.php czy index.php

plik class_forums.php

<?php
/*
+--------------------------------------------------------------------------
|   Invision Power Board
|   =============================================
|   by Matthew Mecham
|   (c) 2001 - 2006 Invision Power Services, Inc.
|   
|   =============================================
|   
|   
+---------------------------------------------------------------------------
|   > $Date: 2007-12-17 18:07:20 -0500 (Mon, 17 Dec 2007) $
|   > $Revision: 1149 $
|   > $Author: bfarber $
+---------------------------------------------------------------------------
|
|   > FORUMS CLASS
|   > Module written by Matt Mecham
|   > Date started: 26th January 2004
|
|	> Module Version Number: 1.0.0
|   > DBA Checked: Wed 19 May 2004
+--------------------------------------------------------------------------
*/

if ( ! defined( 'IN_IPB' ) )
{
print "<h1>Incorrect access</h1>You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files.";
exit();
}

class forum_functions
{

var $forum_cache   = array();
var $forum_by_id   = array();
var $forum_built   = array();

var $template_bit  = "";
var $depth_guide   = "--";
var $return        = "";
var $this_forum    = array();
var $strip_invisible = 0;
var $mod_cache     = array();
var $mod_cache_got = 0;
var $read_topic_only = 0;

/*-------------------------------------------------------------------------*/
// register_class
// ------------------
// Register a $this-> class with this module
/*-------------------------------------------------------------------------*/

function register_class()
{
	//NO LONGER NEEDED
}


/*-------------------------------------------------------------------------*/
// forums_init
// ------------------
// Grab all forums and stuff into array
/*-------------------------------------------------------------------------*/

function forums_init()
{
	if ( ! is_array( $this->ipsclass->cache['forum_cache'] ) )
	{
		$this->ipsclass->update_forum_cache();
	}

	$hide_parents = ',';

	$this->forum_cache = array();
	$this->forum_by_id = array();

	foreach( $this->ipsclass->cache['forum_cache'] as $f )
	{
		if ( $this->strip_invisible )
		{
			if ( strstr( $hide_parents, ','. $f['parent_id'] .',' ) )
			{
				// Don't show any children of hidden parents
				$hide_parents .= $f['id'].',';
				continue;
			}


			if ( $f['show_perms'] != '*' )
			{ 
				if ( $this->ipsclass->check_perms($f['show_perms']) != TRUE )
				{
					$hide_parents .= $f['id'].',';
					continue;
				}
			}
		}

		if ( $f['parent_id'] < 1 )
		{
			$f['parent_id'] = 'root';
		}

		$f['fid'] = $f['id'];

		$this->forum_cache[ $f['parent_id'] ][ $f['id'] ] = $f;
		$this->forum_by_id[ $f['id'] ] = &$this->forum_cache[ $f['parent_id'] ][ $f['id'] ];
	}

}

Edytowane przez lumota

Amazing Game Website Templates for those who want to stand out from others.

Professional IPS Themes - Gaming Invision Community Themes, Forum Skins and Game UI Templates.

Forum Templates for Clans and Guilds, Web and Game Developers.

Opublikowano

cały plik

//nie wklejaj mi takich kodów (!). To nie jest zgodne z licencją.

Amazing Game Website Templates for those who want to stand out from others.

Professional IPS Themes - Gaming Invision Community Themes, Forum Skins and Game UI Templates.

Forum Templates for Clans and Guilds, Web and Game Developers.

Opublikowano (edytowane)

zapomniałem :)

jak nazywa się ten program do szukania linii ?

@edit

mam PSPad :)

Edytowane przez lumota

Amazing Game Website Templates for those who want to stand out from others.

Professional IPS Themes - Gaming Invision Community Themes, Forum Skins and Game UI Templates.

Forum Templates for Clans and Guilds, Web and Game Developers.

Opublikowano (edytowane)

sry za duble

mam już

557// Require and run

558 $_pre_load = $ipsclass->memory_debug_make_flag();

559 require( ROOT_PATH."sources/action_public/".$choice[ strtolower($ipsclass->input['act']) ][0].".php" );

560 $runme = new $choice[ strtolower($ipsclass->input['act']) ][1];

561 $runme->ipsclass =& $ipsclass;

562 $ipsclass->memory_debug_add( "CORE: Loaded ".$choice[ strtolower($ipsclass->input['act']) ][0].".php", $_pre_load );

563 $runme->auto_run();

Edytowane przez lumota

Amazing Game Website Templates for those who want to stand out from others.

Professional IPS Themes - Gaming Invision Community Themes, Forum Skins and Game UI Templates.

Forum Templates for Clans and Guilds, Web and Game Developers.

Opublikowano

pierwsze 50

<?php

/*

+--------------------------------------------------------------------------

| Invision Power Board

| =============================================

| by Matthew Mecham

| © 2001 - 2006 Invision Power Services, Inc.

|

| =============================================

|

|

+---------------------------------------------------------------------------

| > $Date: 2008-02-29 18:09:47 -0500 (Fri, 29 Feb 2008) $

| > $Revision: 1197 $

| > $Author: bfarber $

+---------------------------------------------------------------------------

|

| > Admin Forum functions

| > Module written by Matt Mecham

| > Date started: 1st march 2002

|

| > Module Version Number: 1.0.0

| > DBA Checked: Mon 24th May 2004

+--------------------------------------------------------------------------

*/

if ( ! defined( 'IN_ACP' ) )

{

print "<h1>Incorrect access</h1>You cannot access this file directly. If you have recently upgraded, make sure you upgraded 'admin.php'.";

exit();

}

class ad_forums

{

# Global

var $ipsclass;

var $html;

var $forumfunc;

var $base_url;

/**

* Section title name

*

* @var string

*/

var $perm_main = "content";

/**

Amazing Game Website Templates for those who want to stand out from others.

Professional IPS Themes - Gaming Invision Community Themes, Forum Skins and Game UI Templates.

Forum Templates for Clans and Guilds, Web and Game Developers.

Opublikowano

niestety nie pomogło dalej ten błąd

w pliku sources/action_public/forums.php. mam tak

<?php

/*

+--------------------------------------------------------------------------

| Invision Power Board

| =============================================

| by Matthew Mecham

| © 2001 - 2006 Invision Power Services, Inc.

|

| =============================================

|

|

+---------------------------------------------------------------------------

| > $Date: 2008-02-29 18:09:47 -0500 (Fri, 29 Feb 2008) $

| > $Revision: 1197 $

| > $Author: bfarber $

+---------------------------------------------------------------------------

|

| > Admin Forum functions

| > Module written by Matt Mecham

| > Date started: 1st march 2002

|

| > Module Version Number: 1.0.0

| > DBA Checked: Mon 24th May 2004

+--------------------------------------------------------------------------

*/

if ( ! defined( 'IN_ACP' ) )

{

print "<h1>Incorrect access</h1>You cannot access this file directly. If you have recently upgraded, make sure you upgraded 'admin.php'.";

exit();

}

class aforums

{

# Global

var $ipsclass;

var $html;

var $forumfunc;

var $base_url;

/**

* Section title name

*

* @var string

*/

var $perm_main = "content";

/**

* Section title name

*

* @var string

*/

var $perm_child = "forum";

/*-------------------------------------------------------------------------*/

// RUN!

/*-------------------------------------------------------------------------*/

function auto_run()

{

to jakiś inny błąd no

jak to nie pomaga to ostatecznie reinstal strony murze zrobić

a jak zrobię kopie bazy danych zrobię reinstal wgram bazę to błąd dalej będzie ?

Amazing Game Website Templates for those who want to stand out from others.

Professional IPS Themes - Gaming Invision Community Themes, Forum Skins and Game UI Templates.

Forum Templates for Clans and Guilds, Web and Game Developers.

Opublikowano

zrobiłem reinstal wcześniej zrobiłem kopie najważniejszych rzeczy tematy posty fora użytkownicy itp

zainstalowałem ipb od nowa wgrałem bazę i wszystko git działa błędu niema

Amazing Game Website Templates for those who want to stand out from others.

Professional IPS Themes - Gaming Invision Community Themes, Forum Skins and Game UI Templates.

Forum Templates for Clans and Guilds, Web and Game Developers.

  • Manager
Opublikowano

Problem ROZWIĄZANY. Jeśli są jakiekolwiek wątpliwości, pytania proszę o założenie nowego tematu.

Wszelkie uzasadnione reklamacje/pretensje/sugestie/rady przyjmuje ekipa forum.

intermedia - profesjonalne rozwiązania Invision Power Board

---

Chcesz uzyskać szybko i sprawnie pomoc? Uzupełnij wersję i adres w profilu.

Gość
Ten temat został zamknięty. Brak możliwości dodania odpowiedzi.
  • Ostatnio przeglądający   0 użytkowników

    • Brak zarejestrowanych użytkowników przeglądających tę stronę.
×
×
  • Dodaj nową pozycję...

Powiadomienie o plikach cookie

Umieściliśmy na Twoim urządzeniu pliki cookie, aby pomóc Ci usprawnić przeglądanie strony. Możesz dostosować ustawienia plików cookie, w przeciwnym wypadku zakładamy, że wyrażasz na to zgodę.