phpfox mods list, phpfox mods

  • Автор темы dantess
  • Дата начала
D

dantess

Прохожие
phpfox mods list, phpfox mods
Gift Mod V1.5

Various Languages


Email Importer

MySpace Addons for 1.6

Virtual Gift Mod 1.1.6

Advanced Statistics Mod

Tufat Flash Chat integration Mod

My Profile designer
Gallery for it,

PhpMobileFox

Lightweight Forums & Ultimate Schools mod

Konsort Album Mod


Profile View Counter 2.0 Mod

Status & Mood Mod

ToolTip Mod

Multi-Image Upload Mod

PBAY Auction Mod

System Notice Mod


Vibrant Template

Misc GreenApple themes


Mameem Template

Geomap on Events mod

Default profile picture mod

profile width restriction mod

Wimpy video & mp3 player bundle mod

KONSORT AJAX PHOTO TAGGING MOD V1.6 B20 R2.2

My Events 1.0 for 1.5 & 1.6+

[v2 RC2]vBulletin Integration plugin

advanced featured members mod

Gmail Style Username Check mod


CGI-Rewrite Mod


Custom VBulletin Integration Mod

PhpFox Database Cleaner

Dig News for PhpFox 1.6+

E-Cards Mod

Email login mod

Featured Scroll mod

Feedback Script addon

Easy Editor mod

PhpFox RSS2 Mod

Freebie Languages

Invite only Mod

Most viewed Photos mod


latest blogs mod

latest groups mod

latest members mod

Music/mp3 player modification

Latest Music mod

Php121 Instant messenger mod

News Voter mod

phpfox CSS guide


Pic Resizer v.1.2 mod

Points manager 0.6 mod

Password changer for v1.6 RC1 v0.2
Для просмотра ссылки Войди или Зарегистрируйся

Referrals mod

xfire mod
 
мде......извините меня конечно, че ж тогда сделать если мне нужны моды, мне флудить чтоли надо? небуду же я писать что попало чтобы посты набрать.

рекомендую для начала прочесть Для просмотра ссылки Войди или Зарегистрируйся; особенно обратите внимание на слова:
От вас ждём: релизы, ретейлы, переводы, внятное и адекватное обсуждение того или иного скрипта и т.д.
поскольку вьі не удосужились єто сделать ни при регистрации, ни в первьіе три дня, видимо данное мною предупреждение бьіло для вас недостаточньім...
теперь у вас будет возможность более внимательно отнестить к правилам, и с уважением к людям, которьіе помогают вам и другим пользователям.
 
можите пожалуйста перезалить второй файл
Various Languages

спасибо!
 
а можно всё это перезалить одним файлом? спасибо...
 
перезалейте плиз Various Languages

и какие там языки?
 
Некоторые плагины для 1.5.1, но более доступные :p
CGI_Rewrite
Easy_Editor
FlashChat__Tufat
FoxRSS
FoxRSS2
FoxSEO
MusicMod
php121 Instant Messenger
proTheme
vBulletin_Integration
VideoMod

Есть ли у кого Easy_Editor (нормальный визуальный редактор - заменяет встроенный убогий), но для версии 1.6 ?:nezn:
 

Вложения

  • phpFox - Plugins.rar
    2 MB · Просмотры: 100
1.5.1 ???
ну ты млин даёшь ... кто ж таким старьём сейчас пользуется ?
все уже v2.0 null ждуть с нетерпением =)
в первом посте для 1.6 Easy Editor ... ссылка живая ... если конечно оно ... что то уж весит малёха...
 
[1.6+] phpFox reCAPTCHA Plug-in

[1.6+] phpFox reCAPTCHA Plug-in

:: Steps to Install ::

1) Sign up at ReCaptcha for a free account: Для просмотра ссылки Войди или Зарегистрируйся

Once you have signed up make sure to add a site so you get your API keys which will be needed later when configuring the script.

2) Log into your phpFox Admin CP and navigate to:
Quote:
Options >> Edit Options >> Signup
Set the following option to "No":
Quote:
Turn on Image Verification on sign up
3) Download the ZIP attachment and Unzip to your computer.

4) Open the file "plugins/recaptcha/config.php.new" with your favorite text editor.

Look for:
PHP Code:
ADD_YOUR_PUBLIC_KEY_HERE
Replace that with your Public Key that ReCaptcha provided you earlier in Step 1.

Next look for:
PHP Code:
ADD_YOUR_PRIVATE_KEY_HERE
Replace that with your Private Key that ReCaptcha provided you earlier in Step 1.

Save and close the file.

5) Rename the file:
Quote:
plugins/recaptcha/config.php.new
to
Quote:
plugins/recaptcha/config.php
6) Upload the folder "plugins/" to your phpFox root directory.

7) On your server open the file: /design/templates/default/_modules/Account/Signup.html

Look for:
HTML Code:

{if $bIsProtImage}
<br />
<table style="width:100%;" cellpadding="4" class="border2">

Above that add:
HTML Code:

{if function_exists('recaptcha_get_html')}
<table style="width:100%;" cellpadding="4" class="border2">
<tr>
<td style="width:35%; text-align:right; font-size:9pt; vertical-align:top;">{language text="verification_code"}:</td>
<td style="font-size:9pt; vertical-align:top;">{php} echo recaptcha_get_html(App::getParam('sPublicKey')); {/php}</td>
</tr>
</table>
{/if}

8) Next open the file: /include/modules/Account/classes/PhpFox_ComponentSignup.class.php

Look for:
PHP Code:
if ($bIsProtImage && !$oSrvSec->checkProtectionCode($oReq->get('sProtCode')))
Above that add:
PHP Code:
if (function_exists('recaptcha_check_answer'))
{
$oResp = recaptcha_check_answer(App::getParam('sPrivateKey'), $_SERVER["REMOTE_ADDR"], $oReq->get('recaptcha_challenge_field'), $oReq->get('recaptcha_response_field'));
if (!$oResp->is_valid)
{
$this->addErrors(App::format('Mod_Account.error.wrong_code'));
}
}
9) Open the file: /design/templates/default/_modules/Site/ContactUs.html

Look for:
HTML Code:

<table style="width:100%;" cellpadding="4" class="border2">
<tr>
<td style="width:35%; text-align:right; font-size:9pt; vertical-align:top;">{language text="verification_code"}:</td>
<td style="font-size:9pt; vertical-align:top;">{captcha input='sProtCode'}</td>
</tr>
<tr>
<td style="width:35%; text-align:right; font-size:9pt; vertical-align:top;">{language text='Mod_Account.enter_above_code_here'}: <span class="star">*</span></td>
<td style="font-size:9pt; vertical-align:top;">
<input type="text" id="sProtCode" name="sProtCode" size="12" onfocus="this.className='inputmain';" onblur="this.className='';" />
<div style="font-size:8pt;"><i>({language text='Mod_Account.code_case_sensitive'})</i></div>
</td>
</tr>
</table>

Replace with:
HTML Code:

{if function_exists('recaptcha_get_html')}
<table style="width:100%;" cellpadding="4" class="border2">
<tr>
<td style="width:35%; text-align:right; font-size:9pt; vertical-align:top;">{language text="verification_code"}:</td>
<td style="font-size:9pt; vertical-align:top;">{php} echo recaptcha_get_html(App::getParam('sPublicKey')); {/php}</td>
</tr>
</table>
{/if}

10) Open the file: /include/modules/Site/classes/PhpFox_ComponentContactUs.class.php

Look for:
PHP Code:
if (!$oSrvSec->checkProtectionCode($oReq->get('sProtCode')))
{
$this->addErrors(App::format('Mod_Account.error.wrong_code'));
}
Replace with:
PHP Code:
if (function_exists('recaptcha_check_answer'))
{
$oResp = recaptcha_check_answer(App::getParam('sPrivateKey'), $_SERVER["REMOTE_ADDR"], $oReq->get('recaptcha_challenge_field'), $oReq->get('recaptcha_response_field'));
if (!$oResp->is_valid)
{
$this->addErrors(App::format('Mod_Account.error.wrong_code'));
}
}
 

Вложения

  • recaptcha.zip
    5,7 KB · Просмотры: 21
Назад
Сверху