Log in Register FAQ Memberlist Search Welcome to RCF - WHF Forum Index
alt : test.swf
Welcome to RCF - WHF
4fx3.gif 
calendar_open_closeCalendar 
easymode on Aruba
Post new topic   Reply to topic View previous topic :: View next topic
Goto page: Previous  1, 2, 3, 4  Next
Welcome to RCF - WHF Forum Index -> Area 51 - phpBB & Easymod Tech Support Add To Bookmarks
Re: easymode on Aruba
PostPosted: 04/14/2007 10:52 AM Reply with quote
Citation
poomerio
Citation
Posts 407
Word Cnt. 10,993
BDay May 28
Sign Gemini
Sex Sex:Male
Joined: Feb 25, 2007
Local time: 8:17 PM
Location: SE England
greatbrE.gif
Actually, I know that his forum has a 500 in the name.
I got the 500 Error from the term "Internal Server Error"
And he is actually getting Internal Server Errors (500) if I'm not mistaken.

- Poomie
Back to Top
View user's profile Find all posts by poomerio Send private message   Phoogle Map
Re: easymode on Aruba
PostPosted: 04/14/2007 11:03 AM Reply with quote
Site Admin
rb2d2
Site Admin
Posts 49593
Word Cnt. 2,756,445
BDay Apr 22
Sign Taurus
Sex Sex:Female
Joined: Sep 25, 2004
Local time: 2:17 PM
Location: Texas
texasC.gif
OK, sorry Poomie, I didn't understand that internal error and 500 error was the same.


Rolling Eyes
Back to Top
View all pictures posted by this userView user's profile Find all posts by rb2d2 Send private message   Visit poster's website Phoogle Map
Re: easymode on Aruba
PostPosted: 04/14/2007 11:33 AM Reply with quote
Citation
poomerio
Citation
Posts 407
Word Cnt. 10,993
BDay May 28
Sign Gemini
Sex Sex:Male
Joined: Feb 25, 2007
Local time: 8:17 PM
Location: SE England
greatbrE.gif
Hey, no worries Very Happy
Well, you do now, eh Wink
Hehe.

- Poomie
Back to Top
View user's profile Find all posts by poomerio Send private message   Phoogle Map
Re: easymode on Aruba
PostPosted: 04/14/2007 2:51 PM Reply with quote
Site Admin
Nightrider
Site Admin
Posts 30757
Word Cnt. 2,628,690
BDay Jul 28
Sign Leo
Sex Sex:Male
Joined: Sep 25, 2004
Local time: 4:17 PM
Location: St Pete, FL
peace.gif
Welcome to RCF, iottand!!!   Applause

I'm sorry that I'm a bit late to the party.  It looks like Poomie's been a big help.  Unfortunately, it looks like you are on one of those servers that require a modified EM version for it to work properly after being installed.  On most servers, the file permissions are 644.  But on your's they are currently set to 755.  By default, EM uses the 644 setting, so the standard version won't work on sites where file permissions MUST BE set to 755.  That will cause the 500 Internal Server Error that you are seeing.  So I have modified EM to work correctly on sites like your's...

Before you can install this version, you will have to decrease the EM version.  You should be able to do that in EM Settings in your ACP MOD Center.  Just set it to 0.2.0 and it will be fine.  Then you can install the following version just like you did the standard version.  I have also provided instructions on how to manually modify your EM files if you prefer to do it that way instead...

Awardspace Instructions w/Download

You can download this EM version that I have modified to work on Awardspace sites.  The file can be found in the  downloads/phpBB/EasyMod section at the top of the page.  Make sure that all uploaded file permissions are set to 755:

easymod_awardspace.zip

Here are the instructions for modifying your EM installation files if you choose to do it yourself rather than use the modified EM version that I supplied above:

Awardspace Modifications

Your board requires script file permissions to be set to 755 instead of 644 like most other boards.  So even if EM installs correctly, the EM file permissions would be set to 644...

Unfortunately for sites like your's, EM sets the file permissions to 644 when it modifies them.  So go into the following files to set all matches of 0644 to 0755 before you install EM:

  1. easymod/em_includes/em_modio.php
  2. easymod/em_includes/em_ftp.php


Also, modify the check_file_scope function in your easymod/includes/admin_easymod.php.txt file by copying and pasting the code:

OPEN
easymod/includes/admin_easymod.php.txt

FIND
Code:
if( !@file_exists(phpbb_realpath($filename)) || !strstr(phpbb_realpath($filename), phpbb_realpath($expected_scope)) )

REPLACE WITH
Code:
//if( !@file_exists(phpbb_realpath($filename)) || !strstr(phpbb_realpath($filename), phpbb_realpath($expected_scope)) )
   if( !@file_exists(phpbb_realpath($filename)) )

The check_file_scope function should now look like this:

Code:
function check_file_scope($filename, $expected_scope, $simply_die = false)
{
   global $db, $lang;

   // make sure a file is located somewhere inside the specified directory
   //if( !@file_exists(phpbb_realpath($filename)) || !strstr(phpbb_realpath($filename), phpbb_realpath($expected_scope)) )
   if( !@file_exists(phpbb_realpath($filename)) )
   {
      $message = sprintf($lang['EM_modio_open_read'], $filename);
      if( $simply_die )
      {
         $db->sql_close();
         die($message);
      }
      message_die(GENERAL_ERROR, $message);
   }
}

Save all the modified files and upload them to their proper sub-folders in the admin/mods/easymod folder.  Then go ahead and try the EM install again...


Laughing
Laughing Laughing
Laughing Laughing Laughing Laughing Laughing
Laughing Laughing Laughing Laughing Laughing Laughing Laughing Laughing Laughing

Welcome to RCF iottand!!!

Laughing Laughing Laughing Laughing Laughing Laughing Laughing Laughing Laughing
Laughing Laughing Laughing Laughing Laughing
Laughing Laughing
Laughing


headbang
Back to Top
View all pictures posted by this userView user's profile Find all posts by Nightrider Send private message   AIM Address Yahoo Messenger Phoogle Map ICQ Number
Re: easymode on Aruba
PostPosted: 04/14/2007 3:40 PM Reply with quote
Citation
poomerio
Citation
Posts 407
Word Cnt. 10,993
BDay May 28
Sign Gemini
Sex Sex:Male
Joined: Feb 25, 2007
Local time: 8:17 PM
Location: SE England
greatbrE.gif
Oh of course NR!
Duh  1

Anyways - hope it works. Also, I managed to get EM installed on 500forums.it for iottand no problems, with a normal EM.

- Poomie
Back to Top
View user's profile Find all posts by poomerio Send private message   Phoogle Map
Re: easymode on Aruba
PostPosted: 04/14/2007 3:48 PM Reply with quote
Sparrow
iottand
Sparrow
Posts 13
Word Cnt. 613
BDay Apr 3
Sign Aries
Sex Sex:Male
Joined: Apr 14, 2007
Local time: 3:17 PM
italyc4e21.gif
i'm i little preoccupied 'cause are 2 days than i try to install, in the same way used from poomerio, i've tried with awardspace version too but noting.

now poomerio had instal EM form and its ok,  BUT
if i install mod  there are alwais some problem,
if a may friend co-admin install the mods result  all ok
maybe the problem in my cuteftp for upload ?
i cant understund
Back to Top
View user's profile Find all posts by iottand Send private message   MSN Messenger
Re: easymode on Aruba
PostPosted: 04/14/2007 4:08 PM Reply with quote
Citation
poomerio
Citation
Posts 407
Word Cnt. 10,993
BDay May 28
Sign Gemini
Sex Sex:Male
Joined: Feb 25, 2007
Local time: 8:17 PM
Location: SE England
greatbrE.gif
If you feel CuteFTP is the problem, then try FileZilla.
Perhaps it's uploading the files in the wrong mode.

- Poomie
Back to Top
View user's profile Find all posts by poomerio Send private message   Phoogle Map
Re: easymode on Aruba
PostPosted: 04/14/2007 4:38 PM Reply with quote
Site Admin
Nightrider
Site Admin
Posts 30757
Word Cnt. 2,628,690
BDay Jul 28
Sign Leo
Sex Sex:Male
Joined: Sep 25, 2004
Local time: 4:17 PM
Location: St Pete, FL
peace.gif
Could you elaborate on what kind of problems you encounter when installing a MOD?  It might be the typical Critical and Warning errors that we can help with...

dontknow
Back to Top
View all pictures posted by this userView user's profile Find all posts by Nightrider Send private message   AIM Address Yahoo Messenger Phoogle Map ICQ Number
Re: easymode on Aruba
PostPosted: 04/14/2007 4:54 PM Reply with quote
Citation
poomerio
Citation
Posts 407
Word Cnt. 10,993
BDay May 28
Sign Gemini
Sex Sex:Male
Joined: Feb 25, 2007
Local time: 8:17 PM
Location: SE England
greatbrE.gif
It seemed like the whole MOD was written incorrectly NR, but I re-wrote it and I think it's almost working.
Just getting aorund the SQL troubles.
But it seems as though this is a phpBB Nuke MOD trying to be installed..

- Poomie
Back to Top
View user's profile Find all posts by poomerio Send private message   Phoogle Map
Re: easymode on Aruba
PostPosted: 04/14/2007 5:18 PM Reply with quote
Site Admin
Nightrider
Site Admin
Posts 30757
Word Cnt. 2,628,690
BDay Jul 28
Sign Leo
Sex Sex:Male
Joined: Sep 25, 2004
Local time: 4:17 PM
Location: St Pete, FL
peace.gif
Which MOD is it?  If it was designed for a Nuke board, it may not work correctly on a standard phpBB forum...

dontknow
Back to Top
View all pictures posted by this userView user's profile Find all posts by Nightrider Send private message   AIM Address Yahoo Messenger Phoogle Map ICQ Number
 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: Previous  1, 2, 3, 4  Next
Page 3 of 4


Add To Bookmarks

 
  
  


  Google

Powered by phpBB © 2001, 2005 phpBB Group

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