Bu forumu görüntüleyenler: Kayıtlı kullanıcı yok ve 1 misafir

Kaydet Butonu Açışmıyor ve Üyelerin Veri Girişinde Hata

İleti calkayakoyu » 01 Nis 2010

joomla versionu: diger
bilesen / modul versionu: j15_legacy

demo sayfasi: http://www.Beylikova.Tk

kurulum hatasi ıle karsilastiniz mi? hayir
sorun derecesi: kurulum sorunu
problemden once ne yapmistin?


problemi cozmek icin neleri denedin?


mesajinizi yaziniz
joomla 1.5.15 versiyonunu kullanıyorum.

Üyeler resim eklemeden veri girişi yaptığında sorun olmuyor ancak verileri resim ekleyerek yapıldığında aşağıdaki hatayı veriyor, ama kayıt işlemi olmuş oluyor.


warning: require_once(/home/esesler/public_html/components/com_messages/messages.Class.Php) [function.Require-once]: failed to open stream: no such file or directory in /home/esesler/public_html/components/com_kaybettiklerimiz/kaybettiklerimiz.Php on line 147

fatal error: require_once() [function.Require]: failed opening required '/home/esesler/public_html/components/com_messages/messages.Class.Php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/esesler/public_html/components/com_kaybettiklerimiz/kaybettiklerimiz.Php on line 147

ayrıca admin panalinden kaydet butonu çalışmıyor. Bu konuda yardımcı olursanız sevinirim.
Rumuz: calkayakoyu
Yeni Üyemiz
Durum: Offline
Kullanıcı avatarı

İleti: 9
Kayıt: 04 Arl 2008

Re: Kaydet Butonu Açışmıyor ve Üyelerin Veri Girişinde Hata

İleti calkayakoyu » 04 Nis 2010

Sorunun çözümünü başka sitede buldum ve buraya ekliyorum.


Sorunu gidermek icin;

  1. /components/com_messages/ dosyasini olustur
  2. bu dosyanin icerisine asagidaki kodu,
    messages.Class.Php
    olarak isimlendirerek / adlandirararak alin ( kes-yapistir)


    kod:<?Php /** * @package mambo * @subpackage messages * @author mambo foundation ınc see readme.Php * @copyright (c) 2000 - 2009 mambo foundation ınc. * see copyrıght.Php for copyright notices and details. * @license gnu/gpl version 2, see lıcense.Php * * redistributions of files must retain the above copyright notice. * * mambo 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; version 2 of the license. */ /** ensure this file is being included by a parent file */ defined( '_valıd_mos' ) or die( 'direct access to this location is not allowed.' ); class mosmessage extends mosdbtable { /** @var int primary key */ var $message_id=null; /** @var int */ var $user_id_from=null; /** @var int */ var $user_id_to=null; /** @var int */ var $folder_id=null; /** @var datetime */ var $date_time=null; /** @var int */ var $state=null; /** @var int */ var $priority=null; /** @var string */ var $subject=null; /** @var text */ var $message=null; /** * @param database a database connector object */ function mosmessage( &$db ) { $this->mosdbtable( '#__messages', 'message_id', $db ); } function send( $from_id=null, $to_id=null, $subject=null, $message=null ) { global $database; global $mosconfig_site_name; if (is_object( $this )) { $from_id = $from_id ? $from_id : $this->user_id_from; $to_id = $to_id ? $to_id : $this->user_id_to; $subject = $subject ? $subject : $this->subject; $message = $message ? $message : $this->message; } $database->setquery( "select cfg_name, cfg_value" . "\nfrom #__messages_cfg" . "\nwhere user_id='$to_id'" ); $config = $database->loadobjectlist( 'cfg_name' ); $locked = @$config['lock']->cfg_value; $domail = @$config['mail_on_new']->cfg_value; if (!$locked) { $this->user_id_from = $from_id; $this->user_id_to = $to_id; $this->subject = $subject; $this->message = $message; $this->date_time = date( "y-m-d h:i:s" ); if ($this->store()) { if ($domail) { $database->setquery( "select email from #__users where id='$to_id'" ); $recipient = $database->loadresult(); $subject = t_('a new private message has arrived'); $msg = t_('a new private message has arrived'); mosmail($mosconfig_mailfrom, $mosconfig_fromname, $recipient, $subject, $msg); } return true; } } else { if (is_object( $this )) { $this->_error = t_('the user has locked their mailbox. Message failed.'); } } return false; } } ?>
admin panalinden veri gireşinde kaydet butonu çalışmıyor, bu konuda yardım bekliyorum.
Rumuz: calkayakoyu
Yeni Üyemiz
Durum: Offline
Kullanıcı avatarı

İleti: 9
Kayıt: 04 Arl 2008


Kurulum / Genel Sorular

Yapimci phpBB © 2009 phpBB Group Style Tasarim Q-Proje