Page 1 of 1

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

PostPosted: Wed Sep 15, 2010 6:49 pm
Author: viragotech
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

Re: I need the minical_update.php, help plz

PostPosted: Wed Sep 15, 2010 9:58 pm
Author: viragotech
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.

Re: I need the minical_update.php, help plz

PostPosted: Wed Sep 15, 2010 11:07 pm
Author: viragotech
Id also ahve no problem with disabling the mod if I knew how???

Is it needed???

Re: I need the minical_update.php, help plz

PostPosted: Thu Sep 16, 2010 1:49 am
Author: Helter
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.

Re: I need the minical_update.php, help plz

PostPosted: Thu Sep 16, 2010 7:33 am
Author: viragotech
"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.

Re: I need the minical_update.php, help plz

PostPosted: Thu Sep 16, 2010 2:16 pm
Author: Helter
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');

Re: I need the minical_update.php, help plz

PostPosted: Thu Sep 16, 2010 6:12 pm
Author: viragotech
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

Re: I need the minical_update.php, help plz

PostPosted: Thu Sep 16, 2010 7:34 pm
Author: Helter
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');