رفتن به مطلب

bijan69

عضو تالار جوملا
  • تعداد ارسال ها

    19
  • تاریخ عضویت در سایت

  • آخرین بازدید

درباره bijan69

  • درجه
    Member

آخرین بازدید کنندگان پروفایل

بلوک آخرین بازدید کننده ها غیر فعال شده است و به دیگر کاربران نشان داده نمی شود.

  1. bijan69

    اضافه کردن فیلد ثبت نام در جوملا

    سلام افزونه ای می خوام که بشه یه سری فیلد های ثبت نام به جوملا 3.5 اضافه کرد. مثل کد ملی ، شماره موبایل، کد ملی ، جنسیت و ... و اگر بشه گزارش گیری هم کرد که چند درصد زن هستند که خوب میشه. ممنون میشم راهنمایی کنید. با تشکر
  2. bijan69

    پیغام Fatal error

    تا به حال کسی به این مشکل بر نخورده ؟؟؟
  3. bijan69

    پیغام Fatal error

    وقت بخیر من روی سایتم هم جوم گالری نصب کردم و هم کامپوننت sh404sef و وقتی روی تصاویر گالری کلیک می کنم در بعضی موارد پیغام زیر رو میده و بعد از رفرش مجدد صفحه باز میشه Fatal error: Uncaught exception 'LogException' in /home3/----/public_html/libraries/joomla/log/loggers/formattedtext.php:256 Stack trace: #0 /home3/----/public_html/libraries/joomla/log/loggers/formattedtext.php(137): JLoggerFormattedText->initFile() #1 /home3/----/public_html/libraries/joomla/log/log.php(382): JLoggerFormattedText->addEntry(Object(JLogEntry)) #2 /home3/----/public_html/libraries/joomla/log/log.php(171): JLog->addLogEntry(Object(JLogEntry)) #3 /home3/---/public_html/components/com_sh404sef/shSec.php(143): JLog::add(Object(JLogEntry), 64, 'sh404sef_sec') #4 /home3/-----/public_html/components/com_sh404sef/shSec.php(189): shLogToSecFile() #5 /home3/----/public_html/components/com_sh404sef/shSec.php(479): shDoRestrictedAccess() #6 /home3/-----/public_html/components/com_sh404sef/shSec.php(44): shDoAntiFloodCheck(Array) #7 /home3/------/public_html/plugins/system/sh404sef/sh404sef.php(62): shDoSecurityChecks() #8 /home3/-----/public_html/libraries/joomla/event/event.php(71) in /home3/-----/public_html/libraries/joomla/log/loggers/formattedtext.php on line 256
  4. bijan69

    افزونه امتیاز دهی به نظرات k2

    سلام من افزونه امتیاز دهی به نظرات k2 رو از سایت زیر دانلود کردم http://extensions.joomla.org/extensions/extension-specific/k2-extensions/11511 ولی برای نصب یه فایل متنی گذاشته که اصلا متوجه نمیشم چی می خواهد فایل متنی(راهنمای نصب) : The component is intended to work with the K2 component already installed[undefined=undefined]. Some post-installation customization is required: 1. Edit the file configuration.php (used by the Ajax programs) to provide the correct values for your mysql database. 2. Add two fields to the jos_k2_comments table: ALTER TABLE `jos_k2_comments` ADD COLUMN `approved` TINYINT(1), ADD COLUMN `ip` CHAR(20); If you use a different Joomla database prefix, substitute it for "jos". 3. Included with this component is the file tc_comments_patch_k2_v254.zip, which contains patches to version 2.5.4 of K2 for steps 4 and 5 below, and a K2 template, tc_comments, which contains steps 6 and 7. If you apply this patch, the thumbs and "report" link will appear if you select the tc_comments template for the K2 category. 4. Edit the file components/com_k2/models/item.php. At about line 827, you should see some code that looks like this: if (!$user->guest) { $row->userID = $user->id; $row->commentEmail = $user->email; $row->userName=$user->name; } Insert this code below: $ip = $_SERVER['REMOTE_ADDR']; $db = & JFactory::getDBO(); /* this is commented out because this attempt to query information_schema doesn't seem to work for me. you might have better luck. $query = "SELECT * FROM information_schema.TABLES WHERE TABLE_NAME = '#__k2_comments_blacklist'"; $db->setQuery($query); $result = $db->loadresult(); if ($result>0){ */ // there IS a blacklist table . $query = "SELECT * FROM #__k2_comments_blacklist WHERE ip = '" . $ip . "'"; $db->setQuery($query); $result = $db->loadresult(); if ($result>0){ echo JText::_('Your IP address is blacklisted.'); $mainframe->close(); } // } ----- At about line 899 of the same file, you should see this code: if($user->gid > 23) { $row->published = 1; } } } Insert these two line after it: $row->approved = 0; $row->ip = $ip; The following line should be: if (!$row->store()) { 5. Edit the file administrator/components/com_k2/tables/k2comment.php. At about line 24, you should see this line: var $published = null; Insert these two lines below: var $approved = null; var $ip = null; 6. Add the following near the beginning of the item.php file of your K2 template (after the first "?>"): 7. Insert the following in the item.php file of your K2 template where you want the thumbs and the "Report Abuse" link to appear. (Suggestion: below " <?php echo $comment->commentText; ?> " around line 620.) <?php $db = &JFactory::getDBO(); $query = "SELECT COUNT(*) FROM #__k2_comments_votes " . "WHERE comment = " . $comment->id . " AND vote = 1"; $db->setQuery( $query ); $up_count = $db->loadResult(); $query = "SELECT COUNT(*) FROM #__k2_comments_votes " . "WHERE comment = " . $comment->id . " AND vote = 0"; $db->setQuery( $query ); $down_count = $db->loadResult(); $query = "SELECT COUNT(*) FROM #__k2_comments_reported " . "WHERE comment = " . $comment->id; $db->setQuery( $query ); $reported = $db->loadResult(); ?> <?php echo $up_count; ?> <?php echo $down_count; ?> <?php if (!$comment->approved && !$reported) { ?> Report Abuse <?php } ?> 8. A php script is included to provide a report to the system administrator: component/tc_comments/cron/tc_comments.php It is intended to be run as a cron job. You'll want to modify the $baseurl on line 5. [/undefined] اگر کسی از نحوه نصب این افزونه اطلاعی داره لطفا یگه که چه جوری نصب میشه ؟؟؟
  5. bijan69

    استفاده از یک افزونه برای 2 منظور متفاوت

    بله و اینکه هر زبان را به بخش و یا مطلب خاص اختصاص بدهیم
  6. bijan69

    استفاده از یک افزونه برای 2 منظور متفاوت

    تشکر از شما بابت راهنمایی میشه لطفا یک مقدار بیشتر توضیح بدهید که کدام فایل ها را باید تغییر بدهم در افزونه jComment که بتوانم از آن 2 فایل زبان داشته باشم و در 2 بخش متفاوت
  7. bijan69

    استفاده از یک افزونه برای 2 منظور متفاوت

    سلام وقت بخیر من افزونه JComment رو نصب کردم ولی می خوام در 2 تا بخش مختلف ازش استفاده کنم یعنی می خوام که این افزونه 2 بار روی سایت نصب بشه و برای 2 منظور مختلف ازش استفاده کنم که در 2 بخش زبان های آن متفاوت می باشد آیا این امکان پذیر می باشد یا خیر ؟؟؟ ممنون
  8. سلام چه طوری میشه از یک بخش یا مجموعه rss گرفت ؟؟؟ یعنی شناسه ها رو چه جوری باید قرار بدیم ؟؟ تشکر
  9. bijan69

    تراز توابع در متن

    لطفا یکی راهنمایی کنه {moduleماژول|none} چطور این تابع رو که افزونه درج ماژول در مطلب داده رو راست چین کنم ؟؟؟ خواهش می کنم راهنمایی کنید
  10. bijan69

    افزونه تب فارسی خوب چی پیشنهاد می کنید

    و من هم یک نکته دیگر رو هم به این تب ساز اضافه کنم اگر امکان تغییر خودکار بین تب ها رو هم داشته باشه ما هم استفاده می کنیم
  11. bijan69

    تراز توابع در متن

    من این افزونه را در rock tab قرار دادم و به صورت زیر چپ چین شده است
  12. bijan69

    تراز توابع در متن

    لطفا یکی راهنمایی کنه الان خیلی نیاز دارم و خیلی منتظر جواب موندم
  13. bijan69

    تراز توابع در متن

    من از این افزونه استفاده می کنم برای درج ماژول http://www.joomina.ir/joomla-extension/content-setup/content-setup/65-moduleanywhere-joomla-persian.html و تابعی به شکل زیر می دهد {moduleماژول|none} که این ماژول در متن در موقعیت چپ صفحه قرار میگیرد (چپ چین هست ) لطفا راهنمایی نمایید
  14. bijan69

    تراز توابع در متن

    سلام وقت بخیر من از افزونه درج ماژول در مطالب استفاده می کنم و یک مشکلی که دارم این هست که هر ماژولی که در مطالب قرار می دهم سمت چپ مطالب قرار می گیرد نمونه کدی که افزونه درج ماژول در اختیار می گذارد به صورت زیر می باشد {moduleماژول|none} تراز بندی متن رو هم روی راست چین می زارم ولی باز هم چپ چین میشه لطفا راهنمایی کنید که چطوری این جور توابع رو تراز بندی کنیم تشکر
  15. bijan69

    اسلايدر آخرين مطالب

    میشه لطفا این دو تا افزونه را برای دانلود قرار دهید من یک روز تمام هست که دارم دنبال چنین چیزی میگردم ولی پیدا نمی کنم تشکر
×
×
  • افزودن...