(SOLVED) I need the minical_update.php, help plz

Support for IntegraMOD 141

Moderator: Integra Moderator

(SOLVED) I need the minical_update.php, help plz

PostAuthor: viragotech » Wed Sep 15, 2010 5:49 pm

I need the minical_update.php



as talked about in this thread, I got the same problem.
http://www.integramod.com/forum/viewtop ... =18&t=2801

"Warning: main(./mods/netclectic/mini_cal/mini_cal_.php) [<function>]: failed to open stream: No such file or directory in /home/xvnetwor/public_html/virago/mods/netclectic/mini_cal/mini_cal.php on line 80

Warning: main() [<function>]: Failed opening './mods/netclectic/mini_cal/mini_cal_.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/xvnetwor/public_html/virago/mods/netclectic/mini_cal/mini_cal.php on line 80

Fatal error: Call to undefined function: getminicalforumsauth() in /home/xvnetwor/public_html/virago/mods/netclectic/mini_cal/mini_cal.php on line 83

"

, help plz
Last edited by viragotech on Sat Sep 18, 2010 6:14 pm, edited 1 time in total.
User avatar
viragotech
Sr Integra Member
Sr Integra Member
 
Posts: 292
Likes: 0 post
Liked in: 0 post
Joined: Wed Jul 04, 2007 10:30 am
Cash on hand: 0.00

Re: I need the minical_update.php, help plz

PostAuthor: viragotech » Wed Sep 15, 2010 8:58 pm

the file HelterSkelter posted in that thread will not download anymore.

Im at a stand still, till I get that minical thing fixed.

I need to reopen the site.
User avatar
viragotech
Sr Integra Member
Sr Integra Member
 
Posts: 292
Likes: 0 post
Liked in: 0 post
Joined: Wed Jul 04, 2007 10:30 am
Cash on hand: 0.00

Re: I need the minical_update.php, help plz

PostAuthor: viragotech » Wed Sep 15, 2010 10:07 pm

Id also ahve no problem with disabling the mod if I knew how???

Is it needed???
User avatar
viragotech
Sr Integra Member
Sr Integra Member
 
Posts: 292
Likes: 0 post
Liked in: 0 post
Joined: Wed Jul 04, 2007 10:30 am
Cash on hand: 0.00

Re: I need the minical_update.php, help plz

PostAuthor: Helter » Thu Sep 16, 2010 12:49 am

are you having this issue on a new 141 install?
that problem should no longer exist as it was due to an error in an early version of the update script from 1.3.x to 1.4.0.
I fixed the dl in the linked post though just in case it will help you.
Always use Protection
Image


Please do not PM for support
User avatar
Helter
Administrator
Administrator
 
Posts: 4168
Likes: 0 post
Liked in: 0 post
Images: 0
Joined: Sat Mar 11, 2006 3:46 pm
Cash on hand: 187.60
Location: Seattle Wa
IntegraMOD version: IM 3

Re: I need the minical_update.php, help plz

PostAuthor: viragotech » Thu Sep 16, 2010 6:33 am

"HelterSkelter" wrote:are you having this issue on a new 141 install?
that problem should no longer exist as it was due to an error in an early version of the update script from 1.3.x to 1.4.0.
I fixed the dl in the linked post though just in case it will help you.



Thanks, not it was an upgrade, was a phpbb2, to IM 132 for many years,
it was using the 132d files with a 140database [had a failed 140 upgrade, dumped back 132 files n it worked with the modded 140db.]
Up against a wall and by chance tried the 141 upgrade
with help from several of the tips you have posted latley it has worked better then the fresh install I did last year for another forum.

I will download that but for now, I just had a brain fart and decided to find n remove its code from the templates, so its not even called on. Which got the site open. Still some problems.

like random folks getting CT block doing the required profile updates, yet some are fine. Age of account seems to make no matter.
User avatar
viragotech
Sr Integra Member
Sr Integra Member
 
Posts: 292
Likes: 0 post
Liked in: 0 post
Joined: Wed Jul 04, 2007 10:30 am
Cash on hand: 0.00

Re: I need the minical_update.php, help plz

PostAuthor: Helter » Thu Sep 16, 2010 1:16 pm

keep a close watch on the ctracker logs via ftp
ctracker/logfiles/logfile_debug_mode.txt

you can usually add the ctracker code after phpBB is defined.
Change the code from

Code: Select all
define('CT_SECLEVEL', 'MEDIUM');$ct_ignorepvar = array('some function');


to

Code: Select all
define('CT_SECLEVEL', 'LOW');$ct_ignorepvar = array('some function');


If you need to add a function to a page that already includes the ctracker code, just add the function to the existing code like this
Code: Select all
 define('CT_SECLEVEL', 'LOW');$ct_ignorepvar = array('some function' , 'second function');
Always use Protection
Image


Please do not PM for support
User avatar
Helter
Administrator
Administrator
 
Posts: 4168
Likes: 0 post
Liked in: 0 post
Images: 0
Joined: Sat Mar 11, 2006 3:46 pm
Cash on hand: 187.60
Location: Seattle Wa
IntegraMOD version: IM 3

Re: I need the minical_update.php, help plz

PostAuthor: viragotech » Thu Sep 16, 2010 5:12 pm

even on low I still get this in the log

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Script-Filename: /profile.php
----------------

Attack-Time: 16.09.2010 16:18 pm
------------

Request-Method: POST

Matching rule: id
In variable: phpBBSecurity_question

Possible solution:
------------------

#
#-----[ OPEN ]------------------------------------------
#
/profile.php

#
#-----[ FIND ]------------------------------------------
#
include($phpbb_root_path . 'common.'.$phpEx);

#
#-----[ BEFORE, ADD ]------------------------------------------
#
define('CT_SECLEVEL', 'MEDIUM');
$ct_ignorepvar = array('phpBBSecurity_question');

#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
User avatar
viragotech
Sr Integra Member
Sr Integra Member
 
Posts: 292
Likes: 0 post
Liked in: 0 post
Joined: Wed Jul 04, 2007 10:30 am
Cash on hand: 0.00

Re: I need the minical_update.php, help plz

PostAuthor: Helter » Thu Sep 16, 2010 6:34 pm

for profile.php

FIND

Code: Select all
define('IN_PHPBB', true);


REPLACE WITH

Code: Select all
define('IN_PHPBB', true);define('CT_SECLEVEL', 'MEDIUM');$ct_ignorepvar = array('helpbox','delete','deleteall','phpBBSecurity_question','user_interests');  
Always use Protection
Image


Please do not PM for support
User avatar
Helter
Administrator
Administrator
 
Posts: 4168
Likes: 0 post
Liked in: 0 post
Images: 0
Joined: Sat Mar 11, 2006 3:46 pm
Cash on hand: 187.60
Location: Seattle Wa
IntegraMOD version: IM 3


Return to IntegraMOD 141

Who is online

Registered users: Bing [Bot], Google [Bot], Helter, Majestic-12 [Bot]