(03-16-2015 01:54 AM)SokakGitaristi Wrote: [ -> ] (03-16-2015 12:53 AM)tigermate Wrote: [ -> ]getting this error
![[Image: Capture.jpg]](http://s8.postimg.org/6hhbnt2zl/Capture.jpg)
remove from fonksiyonlar.php
include_once("_sayac.php");
Still Not Working. what is next my friend?
There is 2 databases in the mysql folder
Which one will import ?
(03-16-2015 04:01 AM)tigermate Wrote: [ -> ] (03-16-2015 01:54 AM)SokakGitaristi Wrote: [ -> ] (03-16-2015 12:53 AM)tigermate Wrote: [ -> ]getting this error
![[Image: Capture.jpg]](http://s8.postimg.org/6hhbnt2zl/Capture.jpg)
remove from fonksiyonlar.php
include_once("_sayac.php");
Still Not Working. what is next my friend?
There is 2 databases in the mysql folder
Which one will import ?
import mremre_v7.sql (with demo content)
can u try it on web hosting? i installed and it works properly.
I am using it on wamp server.
Yes man! Its working on webserver.
(03-17-2015 12:03 AM)tigermate Wrote: [ -> ]Yes man! Its working on webserver.
i'm so glad bro, you're welcome. :)
Brotherhood of NOD,
How can i change the language in admin panel in english?
I dont understand turkish.
Pls help Commander.
(03-18-2015 02:15 AM)tigermate Wrote: [ -> ]Brotherhood of NOD,
How can i change the language in admin panel in english?
I dont understand turkish.
Pls help Commander.
find on index.php
PHP Code:
<?phpif($_GET['action']=="request") $_SESSION['lang']=$_GET['lang']; if(empty($_SESSION['lang'])) fnStart(); if( $_SESSION['lang']=="tr") include "lang/turkish.inc.php"; elseif( $_SESSION['lang']=="en") include "lang/english.inc.php"; elseif( $_SESSION['lang']=="de") include "lang/deutsch.inc.php"; else ?>
replace
<?php
if($_GET['action']=="request") $_SESSION['lang']=$_GET['lang'];
if(empty($_SESSION['lang'])) fnStart();
if( $_SESSION['lang']=="en") include "lang/english.inc.php";
elseif( $_SESSION['lang']=="tr") include "lang/turkish.inc.php";
elseif( $_SESSION['lang']=="de") include "lang/deutsch.inc.php";
else
?>