[Website] - WoWLegacy.net Website system full source menu

User Tag List

Page 4 of 4 FirstFirst 1234
Results 46 to 53 of 53
  1. #46
    xtr3m3's Avatar Member
    Reputation
    1
    Join Date
    Dec 2007
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can someone make a repack with this fixed?
    i got that error

    Warning: require_once(/data/functions/gl_database.php) [function.require-once]: failed to open stream: No such file or directory in C:\xampp\htdocs\data\functions\gl_main.php on line 44

    Fatal error: require_once() [function.require]: Failed opening required '/data/functions/gl_database.php' (include_path='.;\xampp\php\PEAR') in C:\xampp\htdocs\data\functions\gl_main.php on line 44
    my data/config/global.php

    'root_file' => ' ',
    'root_http' => 'localhost',

    and there is no database? except db_logon and db_logon_aspire ?
    Last edited by xtr3m3; 07-16-2010 at 08:11 AM.

    [Website] - WoWLegacy.net Website system full source
  2. #47
    bsod-staff14's Avatar Member
    Reputation
    35
    Join Date
    Nov 2008
    Posts
    443
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ahh gotta love a great story. And to all the people who say that the site is messed up, ill see what I can do and re release it, ofc with credits. However, one thing I would like to point out, WoWLegacy sucks balllsss
    Immortal GamerZ Under Development!

  3. #48
    Supah's Avatar Member
    Reputation
    33
    Join Date
    Apr 2008
    Posts
    235
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    link is broken

  4. #49
    bsod-staff14's Avatar Member
    Reputation
    35
    Join Date
    Nov 2008
    Posts
    443
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Devon dont be a jackass. Look up. Their are links that were reuploaded.
    Immortal GamerZ Under Development!

  5. #50
    kingofwc's Avatar Member
    Reputation
    2
    Join Date
    Sep 2008
    Posts
    92
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone convert this to trinity core?

  6. #51
    Corpseshred's Avatar Member
    Reputation
    1
    Join Date
    Sep 2010
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Php code error

    :wave:
    I NEED help with this bug i get in gl_main.php

    Fatal error: Non-abstract method Main::Build() must contain body in C:\xampp\htdocs\data\functions\gl_main.php on line 41

    Here's my conf:

    Code:
    <?php
    if(!global_include()) { die(); }
    
    class Main
    {
    	public static function getRoot()
    	{
    		return Config::$config['server']['root_file'];
    	}
    	
    	public static function getRootHTTP()
    	{
    		return Config::$config['server']['root_http'];
    	}
    	
    	public static function redirect($href,$time="1")
    	{
    		echo 'You will be automatically redirected in '.$time.' second(s). <a href="'.$href.'">(Click here if you do not wish to wait.)</a>';
    		echo '<meta http-equiv="refresh" content="'.$time.';url='.$href.'">';
    		return true;
    	}
    	
    	public static function mod_mime($mimetype="text/html")
    	{
    		header("Content-type: {$mimetype}\r\n");
    	}
    	
    	public static function getDateFormat($timestamp='NULL')
    	{
    		if($timestamp == 'NULL')
    		{
    			$date = date("m\-d\-Y h:i:s A");
    		}
    		else
    		{
    			$date = date("m\-d\-Y h:i:s A",$timestamp);
    		}
    		return($date);
    	}
    
    	public static function Build();
    	{
    		require_once("../data/config/global.php");
    		require_once(self::getRoot()."/data/functions/gl_database.php");
    		require_once(self::getRoot()."/data/functions/gl_session.php");
    		require_once(self::getRoot()."/data/functions/gl_style.php");
    		require_once(self::getRoot()."/data/functions/gl_navbars.php");
    		require_once(self::getRoot()."/data/functions/gl_logwriter.php");
    				
    		Session::Load();
    		Style::Load();
    	}	
    		// CLOSED BETA WHITELIST ---
    		require_once(self::getRoot()."/data/extensions/ext_whitelist.php");
    		// --- /CLOSED BETA WHITELIST
    		
    		if(isset($_GET['activescript'])
    		{
    			require_once(self::getRoot()."/data/functions/gl_activescript.php");
    		}
    		elseif($_GET['act'] == 'shout')
    		{
    			require_once(self::getRoot()."/data/functions/gl_shoutbox.php");
    		}
    		elseif($_GET['act'] == 'forum')
    		{	
    			(echo Style::global_header(hgj);
    				echo Style::fpacket();
    					echo NavBar::CreateTop();
    				echo Style::fpacket();
    					echo NavBar::CreateFLeft();
    				echo Style::fpacket();
    					require_once(self::getRoot()."/data/pages/pg_".$_GET['act'].".php");
    			echo Style::fpacket();
    		}
    		else
    		{
    			$pagefile = self::getRoot()."/data/pages/pg_".$_GET['act'].".php";
    			
    			echo Style::global_header();
    				echo Style::packet();
    					echo NavBar::CreateTop();
    				echo Style::packet();
    					echo NavBar::CreateLeft();
    				echo Style::packet();
    					if(!file_exists($pagefile))
    					{
    						require_once(self::getRoot()."/data/pages/pg_idx.php");
    					}
    					else
    					{
    						require_once($pagefile);
    					}
    				echo Style::packet();
    					echo NavBar::CreateRight();
    				echo Style::packet();
    			echo Style::global_footer();
    		}
    		
    		if(!isset($_GET['activescript']) && Config::$config['donation']['popup_enable'])
    		{
    			$tmp = Session::get('vpoptime');
    			if(time() > Session::get('vpoptime') || !is_numeric($tmp))
    			{
    				require(Main::getRoot().'/data/extensions/ext_votepopup.php');		
    			}
    		}
    		
    		Session::Save();
    		MySQL::Close();
    	}
    }
    Main::Build();
    ?>

  7. #52
    DevDee's Avatar Member
    Reputation
    1
    Join Date
    Aug 2017
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    link is broken can some do the cutesy of re uploading thnx in advance dev dee

  8. #53
    Skuddle's Avatar Elite User

    CoreCoins Purchaser
    Reputation
    515
    Join Date
    May 2008
    Posts
    287
    Thanks G/R
    4/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DevDee View Post
    link is broken can some do the cutesy of re uploading thnx in advance dev dee
    This code is nearly 7 years old. Emus have evolved and there are much much better systems out there now.
    Still working :-P

  9. Thanks stoneharry (1 members gave Thanks to Skuddle for this useful post)
Page 4 of 4 FirstFirst 1234

Similar Threads

  1. [Selling] Website cms full [sell] (armory,store,top...)
    By Socra in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 11-14-2016, 02:18 PM
  2. [New Project] - Open-source guild website using battle.net oauth
    By ev0 in forum World of Warcraft General
    Replies: 11
    Last Post: 02-06-2015, 02:34 PM
  3. [ArcEmu] [Website] Professional Website System and Cool Design!
    By NerieX in forum WoW EMU General Releases
    Replies: 46
    Last Post: 10-16-2010, 01:47 PM
  4. Website System?
    By Glorianglorre in forum Community Chat
    Replies: 1
    Last Post: 09-04-2009, 09:35 AM
  5. [VB.NET] More Of My Sources...
    By Vaqxine1 in forum Programming
    Replies: 0
    Last Post: 07-24-2009, 09:16 PM
All times are GMT -5. The time now is 08:25 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search