arkadaşlar admin paneline geçiş yapmıyor şöyle bir hata veriyor.
Fatal error: Cannot redeclare posix_getpwuid() in /home/siteadı/public_html/altklasör/admin/includes/functions/compatibility.php on line 19
19. satır
function posix_getpwuid($id) {
konuyu hortlattım ama faydalı olması açısından veriyorum.
compatibilty.php dosyasının içini şu şekilde değiştirin düzelir..
<?php
/*
$Id: compatibility.php $
TomatoCart Open Source Shopping Cart Solutions
http://www.tomatocart.com
Copyright (c) 2009 Wuxi Elootec Technology Co., Ltd; Copyright (c) 2007 osCommerce
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License v2 (1991)
as published by the Free Software Foundation.
*/
/*
* posix_getpwuid() not implemented on Microsoft Windows platforms
*/
if (!function_exists('posix_getpwuid')) { return true; }
if (!function_exists('posix_getgrgid')) { return true; }
?>