Log in Register FAQ Memberlist Search Welcome to RCF - WHF Forum Index
alt : test.swf
Welcome to RCF - WHF
4fx3.gif 
calendar_open_closeCalendar 
[Solved] MODS in limbo/suspense
Post new topic   Reply to topic View previous topic :: View next topic
Goto page: 1, 2, 3, 4, 5, 6, 7  Next
Welcome to RCF - WHF Forum Index -> Area 51 - phpBB & Easymod Tech Support Add To Bookmarks
[Solved] MODS in limbo/suspense
PostPosted: 08/19/2007 6:55 PM Reply with quote
Citation
2LadyDi
Citation
Posts 826
Word Cnt. 37,329
BDay Oct 2
Sign Libra
Sex Sex:Female
Joined: Apr 03, 2007
Local time: 7:58 AM
Location: Somewhere in Maryland
marylndC.gif
I have several MODS that will not install for whatever reason. Greatly appreciate any feedback/critics/suggestions on this. I am going to start off with one and then add each one and it's error message too until I am done. Here's MOD #1 and it's error:

MySpace Button MOD

ERROR

Code:
FIND FAILED: In file [includes/usercp_register.php] could not find:

$strip_var_list = array('email' => 'email',

MOD script line #330


Last edited by 2LadyDi on 09/02/2007 7:26 PM; edited 1 time in total
Back to Top
View user's profile Find all posts by 2LadyDi Send private message   Phoogle Map Visit poster's Blog
Re: [Solved] MODS in limbo/suspense
PostPosted: 08/20/2007 11:16 PM Reply with quote
Citation
2LadyDi
Citation
Posts 826
Word Cnt. 37,329
BDay Oct 2
Sign Libra
Sex Sex:Female
Joined: Apr 03, 2007
Local time: 7:58 AM
Location: Somewhere in Maryland
marylndC.gif
I see I failed to include the fact that I am trying to use EM to install the MODS in limbo/suspense. Anyone?
Back to Top
View user's profile Find all posts by 2LadyDi Send private message   Phoogle Map Visit poster's Blog
Re: [Solved] MODS in limbo/suspense
PostPosted: 08/21/2007 2:57 AM Reply with quote
Owl
~Forum_Nut~
Owl
Posts 168
Word Cnt. 14,430
BDay N/A
Sign N/A
Sex Sex:Male
Joined: Aug 02, 2007
Local time: 7:58 AM
blank.gif
That line may have been changed by a previous mod installation.

See if you can find the line manually.

I was able to find that line in Phpbb 2.0.22 so open that file in word click on edit/find and paste in:


Code:
$strip_var_list = array('email' => 'email',


And see if its there.

It should be directly after this line:

Code:

      $current_email = trim(htmlspecialchars($HTTP_POST_VARS['current_email']));
   }



And before this line:

Code:

 'icq' => 'icq', 'aim' => 'aim', 'msn' => 'msn', 'yim' => 'yim', 'website' => 'website', 'location' => 'location', 'occupation' => 'occupation', 'interests' => 'interests', 'confirm_code' => 'confirm_code');

   // Strip all tags from data ... may p**s some people off, bah, strip_tags is


FN

Back to Top
View user's profile Find all posts by ~Forum_Nut~ Send private message  
Re: [Solved] MODS in limbo/suspense
PostPosted: 08/21/2007 8:48 AM Reply with quote
Citation
2LadyDi
Citation
Posts 826
Word Cnt. 37,329
BDay Oct 2
Sign Libra
Sex Sex:Female
Joined: Apr 03, 2007
Local time: 7:58 AM
Location: Somewhere in Maryland
marylndC.gif


Above is the screen cap of, seemingly if I am reading right with my glasses, the line IS already there FN. I know it is inline with other stuff, but is that not where it should be?? Funny, this MOD and one other MOD have the necessary line already in place, still won't install. Clues??
Back to Top
View user's profile Find all posts by 2LadyDi Send private message   Phoogle Map Visit poster's Blog
Re: [Solved] MODS in limbo/suspense
PostPosted: 08/21/2007 7:44 PM Reply with quote
Owl
~Forum_Nut~
Owl
Posts 168
Word Cnt. 14,430
BDay N/A
Sign N/A
Sex Sex:Male
Joined: Aug 02, 2007
Local time: 7:58 AM
blank.gif
Try replacing
Code:
$strip_var_list = array('email' => 'email',


With this:

Code:
$strip_var_list = array('email' => 'email', 'myspace' => 'myspace',


Do this manually and see if it works for you.

I'm still learning how EM works myself but if you do this manually it should work.

FN
Back to Top
View user's profile Find all posts by ~Forum_Nut~ Send private message  
Re: MODS in limbo/suspense
PostPosted: 08/22/2007 12:56 PM Reply with quote
Citation
2LadyDi
Citation
Posts 826
Word Cnt. 37,329
BDay Oct 2
Sign Libra
Sex Sex:Female
Joined: Apr 03, 2007
Local time: 7:58 AM
Location: Somewhere in Maryland
marylndC.gif
FN - forgive me but if copy it over the
Code:
'username' => 'username'
, isn't that going to mess the entire code up? Seems you are saying if it read
Code:
$strip_var_list = array('username' => 'username', 'email' => 'email', 'icq' => 'icq',
and I follow your instructions, it will now read
Code:
$strip_var_list = array('email' => 'email', 'myspace' => 'myspace',
. Hope I am not being a pain bit it looks as if I lose information while adding some?!?!? Is the general idea JUST to get
Code:
$strip_var_list = array('email' => 'email', 'myspace' => 'myspace',
inline??
Back to Top
View user's profile Find all posts by 2LadyDi Send private message   Phoogle Map Visit poster's Blog
Re: [Solved] MODS in limbo/suspense
PostPosted: 08/22/2007 1:48 PM Reply with quote
Owl
~Forum_Nut~
Owl
Posts 168
Word Cnt. 14,430
BDay N/A
Sign N/A
Sex Sex:Male
Joined: Aug 02, 2007
Local time: 7:58 AM
blank.gif
Ok I think I see where your getting confused..

You don't over write the entire line in the file you only overwrite that one snippet of it.

What they are trying to get you to do is to add this small bit of code .


Code:
'myspace' => 'myspace',


Into this line of code.

Code:
   $strip_var_list = array('email' => 'email', 'icq' => 'icq', 'aim' => 'aim', 'msn' => 'msn', 'yim' => 'yim', 'website' => 'website', 'location' => 'location', 'occupation' => 'occupation', 'interests' => 'interests', 'confirm_code' => 'confirm_code');



Like this:

Code:
   $strip_var_list = array('email' => 'email', 'myspace' => 'myspace', 'icq' => 'icq', 'aim' => 'aim', 'msn' => 'msn', 'yim' => 'yim', 'website' => 'website', 'location' => 'location', 'occupation' => 'occupation', 'interests' => 'interests', 'confirm_code' => 'confirm_code');


Notice the "myspace" code inserted into the line of code in the last example?

FN
Back to Top
View user's profile Find all posts by ~Forum_Nut~ Send private message  
Re: MODS in limbo/suspense
PostPosted: 08/22/2007 2:07 PM Reply with quote
Citation
2LadyDi
Citation
Posts 826
Word Cnt. 37,329
BDay Oct 2
Sign Libra
Sex Sex:Female
Joined: Apr 03, 2007
Local time: 7:58 AM
Location: Somewhere in Maryland
marylndC.gif
Yes, I understand and did what you said and have new errors to report:

Quote:
Error Detail

Warning

FIND FAILED: In file [templates/subBlack/subBlack.cfg] could not find:

$images['icon_www'] = "$current_template_images/{LANG}/icon_www.gif";

MOD script line #525


It shows this error 6 times?!?!? And then it reads:

Quote:
Processing completed successfully!....



Waiting for me to do the next step?????
Back to Top
View user's profile Find all posts by 2LadyDi Send private message   Phoogle Map Visit poster's Blog
Re: [Solved] MODS in limbo/suspense
PostPosted: 08/22/2007 2:48 PM Reply with quote
Citation
2LadyDi
Citation
Posts 826
Word Cnt. 37,329
BDay Oct 2
Sign Libra
Sex Sex:Female
Joined: Apr 03, 2007
Local time: 7:58 AM
Location: Somewhere in Maryland
marylndC.gif
Ok FN and all... I figured it out. subBlack has six colors in it. So I did  edit that .cfg files to read what the script is actually calling for. And..... the MOD is installed and working on subSilver, at least. Next.... (laughs)

Using EM still... the Signature Characters Left or Signature Max MOD gives me this error:

Quote:
FIND FAILED: In file [templates/subSilver/profile_add_body.tpl] could not find:

<textarea name="signature"style="width: 300px" rows="6" cols="30" class="post">{SIGNATURE}</textarea>

MOD script line #82
Back to Top
View user's profile Find all posts by 2LadyDi Send private message   Phoogle Map Visit poster's Blog
Re: [Solved] MODS in limbo/suspense
PostPosted: 08/22/2007 3:17 PM Reply with quote
Owl
~Forum_Nut~
Owl
Posts 168
Word Cnt. 14,430
BDay N/A
Sign N/A
Sex Sex:Male
Joined: Aug 02, 2007
Local time: 7:58 AM
blank.gif
Yes it apears that if you solve one problem with the EM installer the next one seams to pop up .LOL

I think all these issues could be solved by making the mod EM Friendly like Nightrider does.


Your next error is telling you that EM can't find the line:

<textarea name="signature"style="width: 300px" rows="6" cols="30" class="post">{SIGNATURE}</textarea> in templates/subSilver/profile_add_body.tpl

So open up profile_add_body.tpl and see if you can find it manually.

If its a big file try the search function edit/find

If you can not find the entire line with the search function then perhaps it has been changed by another mod installation. In this case try searching for pieces of the code such as
<textarea name="signature" to see if you can find the line. It most likely will be changed slightly if it wasn't found by the first search so be careful you have the correct line by searching the rest of the file for similar snippets.

Also you can find the line by opening up an unaltered copy of phpbb,  finding the file, and searching for its location there to compare to the code in the file you are trying to modify.

Happy hunting Very Happy

FN

Back to Top
View user's profile Find all posts by ~Forum_Nut~ Send private message  
 Post new topic  Reply to topic
Information
Welcome to RCF - WHF Forum Index -> Area 51 - phpBB & Easymod Tech Support

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum
All times are GMT - 5 Hours
Goto page: 1, 2, 3, 4, 5, 6, 7  Next
Page 1 of 7


Add To Bookmarks

 
  
  


  Google

Powered by phpBB © 2001, 2005 phpBB Group

Page generation time: 0.0728s (PHP: 81% - SQL: 19%) - SQL queries: 58 - GZIP disabled - Debug on