01-23-2014, 08:52 AM
01-31-2014, 05:55 PM
Can anyone post the HTACCESS file used in this script.
all of my pages are going 404 without the correct htaccess file.
Please post someone who is using the script correctly.
The original package is also missing htaccess.
all of my pages are going 404 without the correct htaccess file.
Please post someone who is using the script correctly.
The original package is also missing htaccess.
01-31-2014, 07:58 PM
i get this error
Parse error: syntax error, unexpected '{' in /home/u308205141/public_html/includes/class/_class_mysql.php on line 1
can anyone help me ?
Parse error: syntax error, unexpected '{' in /home/u308205141/public_html/includes/class/_class_mysql.php on line 1
can anyone help me ?
02-01-2014, 12:34 AM
I repeat it again, This script doesn't work on free hosts. Free hosts have not all requirements that the script requires enabled
02-01-2014, 12:25 PM
Can anyone post a working HTACCESS file guys, please post for whom the script is working fine.
02-01-2014, 06:59 PM
I have downloaded this version from the first page and everything worked for me, I don'understand wjy ot doesnt work to you and others ? I thing thst you dont know how to install you as it worked to me and others users
02-01-2014, 07:10 PM
(02-01-2014 12:34 AM)bugboy Wrote: [ -> ]I repeat it again, This script doesn't work on free hosts. Free hosts have not all requirements that the script requires enabled
i host on exabytes not free
02-01-2014, 07:51 PM
Which version of PHP does you host have?
02-02-2014, 12:26 PM
bugboy -
My video pages are not working, playlist is not working and i am sure it is due to wrong htaccess. Can you copy paste the content please for helping me on this.
My video pages are not working, playlist is not working and i am sure it is due to wrong htaccess. Can you copy paste the content please for helping me on this.
02-06-2014, 07:31 PM
please me. I am having a problem with the script TANCODE Mp3 Search Engine Nulled by leoelboss. I have an error on my tancode mp3 Serch Engine on Parse error: syntax error, unexpected '{' in / home/u905229175/public_html/includes/class/_class_mysql.php on line 1
How can I troubleshoot this error? :(
my hosting features premium
For my hosting features:
Apache Version: Apache/2.2.14
PHP Version: 5.3
MySQL Version: 5.61
Please help how to solve it :(. For the installation process went smoothly but after the install my script error Occurs Parse error: syntax error, unexpected '{' in / home/u905229175/public_html/includes/class/_class_mysql.php on line 1
if there is a problem regarding this class_mysql.php?
How can I troubleshoot this error? :(
my hosting features premium
For my hosting features:
Apache Version: Apache/2.2.14
PHP Version: 5.3
MySQL Version: 5.61
Please help how to solve it :(. For the installation process went smoothly but after the install my script error Occurs Parse error: syntax error, unexpected '{' in / home/u905229175/public_html/includes/class/_class_mysql.php on line 1
if there is a problem regarding this class_mysql.php?
PHP Code:
".$error."MySQL Error : ".$query_str."Error Number: ".$error_num."Date: ".date("D, F j, Y H:i:s")."IP: ".getenv("REMOTE_ADDR")."Browser: ".getenv("HTTP_USER_AGENT")."Script: ".getenv("REQUEST_URI")."Referer: ".getenv("HTTP_REFERER")."PHP Version : ".PHP_VERSION."OS: ".PHP_OS."Server: ".getenv("SERVER_SOFTWARE")."Server Name: ".getenv("SERVER_NAME")."";
echo ' MySQL Fatal Error '.$sqlerror.' '; exit(); } }
}else{ class mysqldb { var $db_id = false; var $connected = false; var $query_num = 0; var $query_list = array(); var $mysql_error = ''; var $mysql_version = ''; var $mysql_error_num = 0; var $mysql_extend = "MySQL"; var $MySQL_time_taken = 0; var $query_id = false; function connect($db_user, $db_pass, $db_name, $db_location = 'localhost', $show_error=1) { if(!$this->db_id = @mysql_connect($db_location, $db_user, $db_pass)) { if($show_error == 1) { $this->display_error(mysql_error(), mysql_errno()); } else { return false; } } if(!@mysql_select_db($db_name, $this->db_id)) { if($show_error == 1) { $this->display_error(mysql_error(), mysql_errno()); } else { return false; } } $this->mysql_version = mysql_get_server_info(); if(!defined('COLLATE')) { define ("COLLATE", "utf8"); } if (version_compare($this->mysql_version, '4.1', ">=")) mysql_query("/*!40101 SET NAMES '" . COLLATE . "' */"); $this->connected = true; return true; } function query($query, $show_error=true) { $time_before = $this->get_real_time(); if(!$this->connected) $this->connect(MYSQLDBUSER, MYSQLDBPASS, MYSQLDBNAME, MYSQLHOST); if(!($this->query_id = mysql_query($query, $this->db_id) )) { $this->mysql_error = mysql_error(); $this->mysql_error_num = mysql_errno(); if($show_error) { $this->display_error($this->mysql_error, $this->mysql_error_num, $query); } } $this->MySQL_time_taken += $this->get_real_time() - $time_before; // $this->query_list[] = array( 'time' => ($this->get_real_time() - $time_before), // 'query' => $query, // 'num' => (count($this->query_list) + 1)); $this->query_num ++; return $this->query_id; } function get_row($query_id = '') { if ($query_id == '') $query_id = $this->query_id; return mysql_fetch_assoc($query_id); } function get_array($query_id = '') { if ($query_id == '') $query_id = $this->query_id; return mysql_fetch_array($query_id); } function super_query($query, $multi = false) { if(!$multi) { $this->query($query); $data = $this->get_row(); $this->free(); return $data; } else { $this->query($query); $rows = array(); while($row = $this->get_row()) { $rows[] = $row; } $this->free(); return $rows; } } function num_rows($query_id = '') { if ($query_id == '') $query_id = $this->query_id; return mysql_num_rows($query_id); } function insert_id() { return mysql_insert_id($this->db_id); } function get_result_fields($query_id = '') { if ($query_id == '') $query_id = $this->query_id; while ($field = mysql_fetch_field($query_id)) { $fields[] = $field; } return $fields; } function safesql( $source ) { if ($this->db_id) return mysql_real_escape_string ($source, $this->db_id); else return mysql_escape_string($source); } function free( $query_id = '' ) { if ($query_id == '') $query_id = $this->query_id; @mysql_free_result($query_id); } function close() { @mysql_close($this->db_id); } function get_real_time() { list($seconds, $microSeconds) = explode(' ', microtime()); return ((float)$seconds + (float)$microSeconds); } function display_error($error, $error_num, $query = '') { if($query) { // Safify query $query = preg_replace("/([0-9a-f]){32}/", "********************************", $query); // Hides all hashes $query_str = "$query"; } $sqlerror="\n"; $sqlerror.="\n"; $sqlerror.="\n"; $sqlerror.="\n"; $sqlerror.="\n"; $sqlerror.="\n"; $sqlerror.="\n"; $sqlerror.="\n"; $sqlerror.="\n"; $sqlerror.="\n"; $sqlerror.="\n"; $sqlerror.="\n"; $sqlerror.="\n"; $sqlerror.="\n"; $sqlerror.="".$error."MySQL Error : ".$query_str."Error Number: ".$error_num."Date: ".date("D, F j, Y H:i:s")."IP: ".getenv("REMOTE_ADDR")."Browser: ".getenv("HTTP_USER_AGENT")."Script: ".getenv("REQUEST_URI")."Referer: ".getenv("HTTP_REFERER")."PHP Version : ".PHP_VERSION."OS: ".PHP_OS."Server: ".getenv("SERVER_SOFTWARE")."Server Name: ".getenv("SERVER_NAME")."";
echo ' MySQL Fatal Error '.$sqlerror.' '; exit(); } }
}?>