(HELP) No database connection (WEBSITE)

03/24/2020 01:58 brunoi123#1
**Title: Error SITE**

** edit**
Arcana Flyff Files and Website

[Only registered and activated users can see links. Click Here To Register...]

index.php
Code:
<?php
	session_start();
	define('access', true);
	require_once('includes/xinc_config.php');
	require_once('includes/xinc_lang.php');
	require_once('includes/xinc_functions.php');
	require_once('includes/xinc_detection.php');
	require_once('includes/xinc_login.php');

?>
<!DOCTYPE html>
<html lang="de-de">
    <head>
		<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
		<meta name="author" content="xBlubbs" />
		<meta name="publisher" content="" />
		<meta name="robots" content="index, follow"/>
		<meta name="keywords" content="<?php echo $_CONFIG['web_seo_tags'];?>"/>
		<meta name="description" content="<?php echo $_CONFIG['web_seo_desc'];?>"/>
		
        <title><?php echo $_CONFIG['allg_svr_name'];?> » <?php echo $_CONFIG['allg_svr_desc'];?></title>

		<link rel="canonical" href="http://<?php echo $_CONFIG['allg_svr_domain'];?>" />
		<link rel="shortcut icon" href="https://www.elitepvpers.com/forum/images/icons/misc/Icon.png" type="image/png" />
        <link rel="stylesheet" type="text/css" href="styles/reset.css" />
		<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Archivo+Narrow:400,400italic,700,700italic" />
        <link rel="stylesheet" type="text/css" href="styles/style.css" />
        <link rel="stylesheet" type="text/css" href="styles/additional.css" />
        <link rel="stylesheet" type="text/css" href="styles/lightbox.css" />
		
        <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
		<script type="text/javascript" src="js/functions.js"></script>
		<script type="text/javascript" src="js/lightbox.js"></script>
	<?php
	if($_CONFIG['web_slider_enabled'] AND ($_CONFIG['web_slider_sites'] == 'all' OR in_array($_GET['site'], $_CONFIG['web_slider_sites']))) {
		echo '
		<link rel="stylesheet" type="text/css" href="styles/slider.css" />
		<script type="text/javascript" src="js/jcarousellite_1.0.1c5.js"></script>
		<script type="text/javascript">
			jQuery(function() {
				jQuery(".slider").jCarouselLite({
					vertical: false,
					hoverPause: true,
					btnPrev: ".previousImage",
					btnNext: ".nextImage",
					visible: 1,
					start: 0,
					scroll: 1,
					circular: true,
					auto: 2500,
					speed: 200,
					btnGo: [".1", ".2"],
					afterEnd: function(a, to, btnGo) {
					if(btnGo.length <= to){to = 0;}
					jQuery(".thumbActive").removeClass("thumbActive");
					jQuery(btnGo[to]).addClass("thumbActive");
					}
				});
			});
		</script>';
	}

	if(empty($_GET['site']) OR $_GET['site'] == 'news') {
		echo '
		<script type="text/javascript" src="js/news_1.0.1c5.js"></script>
		<script type="text/javascript">
			ddaccordion.init({
				headerclass: "newsTitle", //Shared CSS class name of headers group
				contentclass: "newsContent", //Shared CSS class name of contents group
				revealtype: "click", //Reveal content when user clicks or onmouseover the header? Valid value: "click" or "mouseover"
				mouseoverdelay: 200, //if revealtype="mouseover", set delay in milliseconds before header expands onMouseover
				collapseprev: true, //Collapse previous content (so only one open at any time)? true/false
				defaultexpanded: [0], //index of content(s) open by default [index1, index2, etc]. [] denotes no content.
				onemustopen: false, //Specify whether at least one header should be open always (so never all headers closed)
				animatedefault: false, //Should contents open by default be animated into view?
				persiststate: false, //persist state of opened contents within browser session?
				toggleclass: ["", "newsOpened"], //Two CSS classes to be applied to the header when its collapsed and expanded, respectively ["class1", "class2"]
				togglehtml: ["none", "", ""], //Additional HTML added to the header when its collapsed and expanded, respectively  ["position", "html1", "html2"] (see docs)
				animatespeed: "slow", //speed of animation: integer in milliseconds (ie: 200), or keywords "fast", "normal", or "slow"
				oninit:function(expandedindices){ //custom code to run when headers have initalized
					//do nothing
				},
				onopenclose:function(header, index, state, isuseractivated){ //custom code to run whenever a header is opened or closed
					//do nothing
				}
			});
		</script>
	</head>
	<body>';
	}
	elseif($_GET['site'] == 'shop') {
		echo '<script type="text/javascript" src="js/shop.js"></script>';
	}
	else {
		echo '
	</head>
	<body>';
	}

    if(0 == odbc_result(odbc_exec($odbc_connect, '
        DECLARE  [MENTION=3807069]ReTuRn_[/MENTION]value int
        EXEC  [MENTION=3807069]ReTuRn_[/MENTION]value = ' . $_CONFIG['db_databases']['web'] . '.[dbo].[checkDatabaseConnection]
        SELECT	\'Return\' =  [MENTION=3807069]ReTuRn_[/MENTION]value
	'), 'Return')) {
        echo createMessage($_LANG['no_database_connection'] ,'hint' ,'margin: 10px; float: left; position: absolute; z-index: 9999;');
    }
	
	?>
	
	

	
	
	
	
	
		<div class="website">

			<div class="page">
			
			<?php require_once('includes/site_navigation.phtml'); ?>

				<div class="header">

</div>

					
			<div class="pageContainer">
					<div class="contents">
						<div class="col">
							<div class="boxContainer">
								<?php require_once('includes/site_boxes.phtml'); ?>
							</div>
							<div class="socialNetworks">
								<?php
								if(!empty($_CONFIG['web_footer_networks']['facebook'])) {
									echo '<a href="' . $_CONFIG['web_footer_networks']['facebook'] . '" title="Facebook" class="fb" target="_blank"></a>';
								}
								if(!empty($_CONFIG['web_footer_networks']['twitter'])) {
									echo '<a href="' . $_CONFIG['web_footer_networks']['twitter'] . '" title="Twitter" class="tw" target="_blank"></a>';
								}
								if(!empty($_CONFIG['web_footer_networks']['youtube'])) {
									echo '<a href="' . $_CONFIG['web_footer_networks']['youtube'] . '" title="YouTube" class="yt" target="_blank"></a>';
								}
								if(!empty($_CONFIG['web_footer_networks']['rss'])) {
									echo '<a href="' . $_CONFIG['web_footer_networks']['rss'] . '" title="RSS-Feed" class="rs" target="_blank"></a>';
								}
								?>
								<div class="clear"></div>
							</div>
						</div>
						<?php
						if($_CONFIG['web_slider_enabled'] AND ($_CONFIG['web_slider_sites'] == 'all' OR in_array($_GET['site'], $_CONFIG['web_slider_sites']))) {
							require_once('includes/site_slider.phtml');
						}
						?>
						<div class="main-col">
							<div class="contentContainer">
								<div class="content">
									<?php
									if(!$_CONFIG['web_maintenance_enabled'] OR ($_CONFIG['web_maintenance_enabled'] AND in_array($_SESSION['user'], $_CONFIG['allg_svr_admins']))) {
										if(!empty($_GET['site'])) {
											$_GET['site'] = preg_replace('/[^A-Za-z0-9]/', '', $_GET['site']);
											if(in_array($_GET['site'], $_CONFIG['web_allowed_sites']) AND file_exists('sites/' . $_GET['site'] . '.php') OR in_array($_SESSION['user'], $_CONFIG['allg_svr_admins'])) {
												require_once('sites/' . $_GET['site'] . '.php');
											}
											else {require_once('sites/fehlerseite.php');}
										} else {require_once('sites/news.php');}
									} else {
										echo '<p class="page_title">' . $_LANG['maintenance_title'] . '</p>';
										echo createMessage($_LANG['notify_maintenance'] , 'hint');
									}
									?>
								</div>
							</div>
						</div>
						<div class="clear"></div>
					</div>
				</div>
			</div>
		</div>
		<?php require_once('includes/site_footer.phtml'); ?>
	</body>
</html>
help pls
03/24/2020 06:07 Hyellow#2
Quote:
Originally Posted by brunoi123 View Post
**Title: Error SITE**

** edit**
Arcana Flyff Files and Website

[Only registered and activated users can see links. Click Here To Register...]

index.php
Code:
<?php
	session_start();
	define('access', true);
	require_once('includes/xinc_config.php');
	require_once('includes/xinc_lang.php');
	require_once('includes/xinc_functions.php');
	require_once('includes/xinc_detection.php');
	require_once('includes/xinc_login.php');

?>
<!DOCTYPE html>
<html lang="de-de">
    <head>
		<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
		<meta name="author" content="xBlubbs" />
		<meta name="publisher" content="" />
		<meta name="robots" content="index, follow"/>
		<meta name="keywords" content="<?php echo $_CONFIG['web_seo_tags'];?>"/>
		<meta name="description" content="<?php echo $_CONFIG['web_seo_desc'];?>"/>
		
        <title><?php echo $_CONFIG['allg_svr_name'];?> » <?php echo $_CONFIG['allg_svr_desc'];?></title>

		<link rel="canonical" href="http://<?php echo $_CONFIG['allg_svr_domain'];?>" />
		<link rel="shortcut icon" href="https://www.elitepvpers.com/forum/images/icons/misc/Icon.png" type="image/png" />
        <link rel="stylesheet" type="text/css" href="styles/reset.css" />
		<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Archivo+Narrow:400,400italic,700,700italic" />
        <link rel="stylesheet" type="text/css" href="styles/style.css" />
        <link rel="stylesheet" type="text/css" href="styles/additional.css" />
        <link rel="stylesheet" type="text/css" href="styles/lightbox.css" />
		
        <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
		<script type="text/javascript" src="js/functions.js"></script>
		<script type="text/javascript" src="js/lightbox.js"></script>
	<?php
	if($_CONFIG['web_slider_enabled'] AND ($_CONFIG['web_slider_sites'] == 'all' OR in_array($_GET['site'], $_CONFIG['web_slider_sites']))) {
		echo '
		<link rel="stylesheet" type="text/css" href="styles/slider.css" />
		<script type="text/javascript" src="js/jcarousellite_1.0.1c5.js"></script>
		<script type="text/javascript">
			jQuery(function() {
				jQuery(".slider").jCarouselLite({
					vertical: false,
					hoverPause: true,
					btnPrev: ".previousImage",
					btnNext: ".nextImage",
					visible: 1,
					start: 0,
					scroll: 1,
					circular: true,
					auto: 2500,
					speed: 200,
					btnGo: [".1", ".2"],
					afterEnd: function(a, to, btnGo) {
					if(btnGo.length <= to){to = 0;}
					jQuery(".thumbActive").removeClass("thumbActive");
					jQuery(btnGo[to]).addClass("thumbActive");
					}
				});
			});
		</script>';
	}

	if(empty($_GET['site']) OR $_GET['site'] == 'news') {
		echo '
		<script type="text/javascript" src="js/news_1.0.1c5.js"></script>
		<script type="text/javascript">
			ddaccordion.init({
				headerclass: "newsTitle", //Shared CSS class name of headers group
				contentclass: "newsContent", //Shared CSS class name of contents group
				revealtype: "click", //Reveal content when user clicks or onmouseover the header? Valid value: "click" or "mouseover"
				mouseoverdelay: 200, //if revealtype="mouseover", set delay in milliseconds before header expands onMouseover
				collapseprev: true, //Collapse previous content (so only one open at any time)? true/false
				defaultexpanded: [0], //index of content(s) open by default [index1, index2, etc]. [] denotes no content.
				onemustopen: false, //Specify whether at least one header should be open always (so never all headers closed)
				animatedefault: false, //Should contents open by default be animated into view?
				persiststate: false, //persist state of opened contents within browser session?
				toggleclass: ["", "newsOpened"], //Two CSS classes to be applied to the header when its collapsed and expanded, respectively ["class1", "class2"]
				togglehtml: ["none", "", ""], //Additional HTML added to the header when its collapsed and expanded, respectively  ["position", "html1", "html2"] (see docs)
				animatespeed: "slow", //speed of animation: integer in milliseconds (ie: 200), or keywords "fast", "normal", or "slow"
				oninit:function(expandedindices){ //custom code to run when headers have initalized
					//do nothing
				},
				onopenclose:function(header, index, state, isuseractivated){ //custom code to run whenever a header is opened or closed
					//do nothing
				}
			});
		</script>
	</head>
	<body>';
	}
	elseif($_GET['site'] == 'shop') {
		echo '<script type="text/javascript" src="js/shop.js"></script>';
	}
	else {
		echo '
	</head>
	<body>';
	}

    if(0 == odbc_result(odbc_exec($odbc_connect, '
        DECLARE  [MENTION=3807069]ReTuRn_[/MENTION]value int
        EXEC  [MENTION=3807069]ReTuRn_[/MENTION]value = ' . $_CONFIG['db_databases']['web'] . '.[dbo].[checkDatabaseConnection]
        SELECT	\'Return\' =  [MENTION=3807069]ReTuRn_[/MENTION]value
	'), 'Return')) {
        echo createMessage($_LANG['no_database_connection'] ,'hint' ,'margin: 10px; float: left; position: absolute; z-index: 9999;');
    }
	
	?>
	
	

	
	
	
	
	
		<div class="website">

			<div class="page">
			
			<?php require_once('includes/site_navigation.phtml'); ?>

				<div class="header">

</div>

					
			<div class="pageContainer">
					<div class="contents">
						<div class="col">
							<div class="boxContainer">
								<?php require_once('includes/site_boxes.phtml'); ?>
							</div>
							<div class="socialNetworks">
								<?php
								if(!empty($_CONFIG['web_footer_networks']['facebook'])) {
									echo '<a href="' . $_CONFIG['web_footer_networks']['facebook'] . '" title="Facebook" class="fb" target="_blank"></a>';
								}
								if(!empty($_CONFIG['web_footer_networks']['twitter'])) {
									echo '<a href="' . $_CONFIG['web_footer_networks']['twitter'] . '" title="Twitter" class="tw" target="_blank"></a>';
								}
								if(!empty($_CONFIG['web_footer_networks']['youtube'])) {
									echo '<a href="' . $_CONFIG['web_footer_networks']['youtube'] . '" title="YouTube" class="yt" target="_blank"></a>';
								}
								if(!empty($_CONFIG['web_footer_networks']['rss'])) {
									echo '<a href="' . $_CONFIG['web_footer_networks']['rss'] . '" title="RSS-Feed" class="rs" target="_blank"></a>';
								}
								?>
								<div class="clear"></div>
							</div>
						</div>
						<?php
						if($_CONFIG['web_slider_enabled'] AND ($_CONFIG['web_slider_sites'] == 'all' OR in_array($_GET['site'], $_CONFIG['web_slider_sites']))) {
							require_once('includes/site_slider.phtml');
						}
						?>
						<div class="main-col">
							<div class="contentContainer">
								<div class="content">
									<?php
									if(!$_CONFIG['web_maintenance_enabled'] OR ($_CONFIG['web_maintenance_enabled'] AND in_array($_SESSION['user'], $_CONFIG['allg_svr_admins']))) {
										if(!empty($_GET['site'])) {
											$_GET['site'] = preg_replace('/[^A-Za-z0-9]/', '', $_GET['site']);
											if(in_array($_GET['site'], $_CONFIG['web_allowed_sites']) AND file_exists('sites/' . $_GET['site'] . '.php') OR in_array($_SESSION['user'], $_CONFIG['allg_svr_admins'])) {
												require_once('sites/' . $_GET['site'] . '.php');
											}
											else {require_once('sites/fehlerseite.php');}
										} else {require_once('sites/news.php');}
									} else {
										echo '<p class="page_title">' . $_LANG['maintenance_title'] . '</p>';
										echo createMessage($_LANG['notify_maintenance'] , 'hint');
									}
									?>
								</div>
							</div>
						</div>
						<div class="clear"></div>
					</div>
				</div>
			</div>
		</div>
		<?php require_once('includes/site_footer.phtml'); ?>
	</body>
</html>
help pls

TRY THIS
03/26/2020 02:41 Ecrypter#3
its in function.php

Quote:
Originally Posted by brunoi123 View Post
**Title: Error SITE**

** edit**
Arcana Flyff Files and Website

[Only registered and activated users can see links. Click Here To Register...]

index.php
Code:
<?php
	session_start();
	define('access', true);
	require_once('includes/xinc_config.php');
	require_once('includes/xinc_lang.php');
	require_once('includes/xinc_functions.php');
	require_once('includes/xinc_detection.php');
	require_once('includes/xinc_login.php');

?>
<!DOCTYPE html>
<html lang="de-de">
    <head>
		<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
		<meta name="author" content="xBlubbs" />
		<meta name="publisher" content="" />
		<meta name="robots" content="index, follow"/>
		<meta name="keywords" content="<?php echo $_CONFIG['web_seo_tags'];?>"/>
		<meta name="description" content="<?php echo $_CONFIG['web_seo_desc'];?>"/>
		
        <title><?php echo $_CONFIG['allg_svr_name'];?> » <?php echo $_CONFIG['allg_svr_desc'];?></title>

		<link rel="canonical" href="http://<?php echo $_CONFIG['allg_svr_domain'];?>" />
		<link rel="shortcut icon" href="https://www.elitepvpers.com/forum/images/icons/misc/Icon.png" type="image/png" />
        <link rel="stylesheet" type="text/css" href="styles/reset.css" />
		<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Archivo+Narrow:400,400italic,700,700italic" />
        <link rel="stylesheet" type="text/css" href="styles/style.css" />
        <link rel="stylesheet" type="text/css" href="styles/additional.css" />
        <link rel="stylesheet" type="text/css" href="styles/lightbox.css" />
		
        <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
		<script type="text/javascript" src="js/functions.js"></script>
		<script type="text/javascript" src="js/lightbox.js"></script>
	<?php
	if($_CONFIG['web_slider_enabled'] AND ($_CONFIG['web_slider_sites'] == 'all' OR in_array($_GET['site'], $_CONFIG['web_slider_sites']))) {
		echo '
		<link rel="stylesheet" type="text/css" href="styles/slider.css" />
		<script type="text/javascript" src="js/jcarousellite_1.0.1c5.js"></script>
		<script type="text/javascript">
			jQuery(function() {
				jQuery(".slider").jCarouselLite({
					vertical: false,
					hoverPause: true,
					btnPrev: ".previousImage",
					btnNext: ".nextImage",
					visible: 1,
					start: 0,
					scroll: 1,
					circular: true,
					auto: 2500,
					speed: 200,
					btnGo: [".1", ".2"],
					afterEnd: function(a, to, btnGo) {
					if(btnGo.length <= to){to = 0;}
					jQuery(".thumbActive").removeClass("thumbActive");
					jQuery(btnGo[to]).addClass("thumbActive");
					}
				});
			});
		</script>';
	}

	if(empty($_GET['site']) OR $_GET['site'] == 'news') {
		echo '
		<script type="text/javascript" src="js/news_1.0.1c5.js"></script>
		<script type="text/javascript">
			ddaccordion.init({
				headerclass: "newsTitle", //Shared CSS class name of headers group
				contentclass: "newsContent", //Shared CSS class name of contents group
				revealtype: "click", //Reveal content when user clicks or onmouseover the header? Valid value: "click" or "mouseover"
				mouseoverdelay: 200, //if revealtype="mouseover", set delay in milliseconds before header expands onMouseover
				collapseprev: true, //Collapse previous content (so only one open at any time)? true/false
				defaultexpanded: [0], //index of content(s) open by default [index1, index2, etc]. [] denotes no content.
				onemustopen: false, //Specify whether at least one header should be open always (so never all headers closed)
				animatedefault: false, //Should contents open by default be animated into view?
				persiststate: false, //persist state of opened contents within browser session?
				toggleclass: ["", "newsOpened"], //Two CSS classes to be applied to the header when its collapsed and expanded, respectively ["class1", "class2"]
				togglehtml: ["none", "", ""], //Additional HTML added to the header when its collapsed and expanded, respectively  ["position", "html1", "html2"] (see docs)
				animatespeed: "slow", //speed of animation: integer in milliseconds (ie: 200), or keywords "fast", "normal", or "slow"
				oninit:function(expandedindices){ //custom code to run when headers have initalized
					//do nothing
				},
				onopenclose:function(header, index, state, isuseractivated){ //custom code to run whenever a header is opened or closed
					//do nothing
				}
			});
		</script>
	</head>
	<body>';
	}
	elseif($_GET['site'] == 'shop') {
		echo '<script type="text/javascript" src="js/shop.js"></script>';
	}
	else {
		echo '
	</head>
	<body>';
	}

    if(0 == odbc_result(odbc_exec($odbc_connect, '
        DECLARE  [MENTION=3807069]ReTuRn_[/MENTION]value int
        EXEC  [MENTION=3807069]ReTuRn_[/MENTION]value = ' . $_CONFIG['db_databases']['web'] . '.[dbo].[checkDatabaseConnection]
        SELECT	\'Return\' =  [MENTION=3807069]ReTuRn_[/MENTION]value
	'), 'Return')) {
        echo createMessage($_LANG['no_database_connection'] ,'hint' ,'margin: 10px; float: left; position: absolute; z-index: 9999;');
    }
	
	?>
	
	

	
	
	
	
	
		<div class="website">

			<div class="page">
			
			<?php require_once('includes/site_navigation.phtml'); ?>

				<div class="header">

</div>

					
			<div class="pageContainer">
					<div class="contents">
						<div class="col">
							<div class="boxContainer">
								<?php require_once('includes/site_boxes.phtml'); ?>
							</div>
							<div class="socialNetworks">
								<?php
								if(!empty($_CONFIG['web_footer_networks']['facebook'])) {
									echo '<a href="' . $_CONFIG['web_footer_networks']['facebook'] . '" title="Facebook" class="fb" target="_blank"></a>';
								}
								if(!empty($_CONFIG['web_footer_networks']['twitter'])) {
									echo '<a href="' . $_CONFIG['web_footer_networks']['twitter'] . '" title="Twitter" class="tw" target="_blank"></a>';
								}
								if(!empty($_CONFIG['web_footer_networks']['youtube'])) {
									echo '<a href="' . $_CONFIG['web_footer_networks']['youtube'] . '" title="YouTube" class="yt" target="_blank"></a>';
								}
								if(!empty($_CONFIG['web_footer_networks']['rss'])) {
									echo '<a href="' . $_CONFIG['web_footer_networks']['rss'] . '" title="RSS-Feed" class="rs" target="_blank"></a>';
								}
								?>
								<div class="clear"></div>
							</div>
						</div>
						<?php
						if($_CONFIG['web_slider_enabled'] AND ($_CONFIG['web_slider_sites'] == 'all' OR in_array($_GET['site'], $_CONFIG['web_slider_sites']))) {
							require_once('includes/site_slider.phtml');
						}
						?>
						<div class="main-col">
							<div class="contentContainer">
								<div class="content">
									<?php
									if(!$_CONFIG['web_maintenance_enabled'] OR ($_CONFIG['web_maintenance_enabled'] AND in_array($_SESSION['user'], $_CONFIG['allg_svr_admins']))) {
										if(!empty($_GET['site'])) {
											$_GET['site'] = preg_replace('/[^A-Za-z0-9]/', '', $_GET['site']);
											if(in_array($_GET['site'], $_CONFIG['web_allowed_sites']) AND file_exists('sites/' . $_GET['site'] . '.php') OR in_array($_SESSION['user'], $_CONFIG['allg_svr_admins'])) {
												require_once('sites/' . $_GET['site'] . '.php');
											}
											else {require_once('sites/fehlerseite.php');}
										} else {require_once('sites/news.php');}
									} else {
										echo '<p class="page_title">' . $_LANG['maintenance_title'] . '</p>';
										echo createMessage($_LANG['notify_maintenance'] , 'hint');
									}
									?>
								</div>
							</div>
						</div>
						<div class="clear"></div>
					</div>
				</div>
			</div>
		</div>
		<?php require_once('includes/site_footer.phtml'); ?>
	</body>
</html>
help pls
[Only registered and activated users can see links. Click Here To Register...]
04/08/2020 01:14 brunoi123#4
Quote:
Originally Posted by Hyellow View Post
TRY THIS
it didn't work, sorry I'm late.
04/08/2020 04:52 Hyellow#5
Quote:
Originally Posted by brunoi123 View Post
it didn't work, sorry I'm late.
Title says that the problem is No Database Connection.

Check functions or xinc_function.php
04/08/2020 07:20 Tweeney#6
Use a Lower version of xampp (php version to be specific) or upgrade your website codes.
04/08/2020 18:30 Ecrypter#7
Quote:
Originally Posted by brunoi123 View Post
it didn't work, sorry I'm late.

go to index.php line 2 just hide the function like this // so this will not read.
04/08/2020 22:28 brunoi123#8
Quote:
Originally Posted by Ecrypter View Post
go to index.php line 2 just hide the function like this // so this will not read.
all the links that I click inside the site it disconnects from my account
04/09/2020 06:34 flyforall123#9
that is a xampp problem ser.. use lower version of xampp
04/09/2020 09:12 Tweeney#10
Quote:
Originally Posted by Tweeney View Post
Use a Lower version of xampp (php version to be specific) or upgrade your website codes.
......
04/10/2020 04:43 Ecrypter#11
Quote:
Originally Posted by brunoi123 View Post
all the links that I click inside the site it disconnects from my account
used mamp server that what i use in my test server.