Jump to content
MakeWebGames

Recommended Posts

Posted

Erm, well i've never actually ran a game before so i decided to try it. Using the Mc code v.2 (which people say i got bumped for 300 dollars *sighs* ) i uploaded onto a free server which allows php and has MySQL.

I run the installer but on number .3 i get these messages

helpvq8.jpg

Ermm, i've uploaded all the stuff it says and its still giving me the same answer :|

Anyway suggestions please?

Posted

Re: Help

Easy, you insert your own config.php provided from the source. look for file config.php. Create your database, run sql. And done. Could be done under 5 minutes if you knew what you were doing but like you i would say about 10 minutes.

Posted

Re: Help

lol no offence, but "it would take 5 minutes if you knew..." is, oh never mind, I won't say it.

 

You either don't have that file, or you don't have permission to open it (i.e., PHP doesn't have permission.)

 

You could try chown[ing] the file to "nobody" and see if that does it.

Posted

Re: Help

 

lol no offence, but "it would take 5 minutes if you knew..." is, oh never mind, I won't say it.

 

You either don't have that file, or you don't have permission to open it (i.e., PHP doesn't have permission.)

 

You could try chown[ing] the file to "nobody" and see if that does it.

well i definatley have that file since i've uploaded it and open it too...wtf is chowing? 0.o

Posted

Re: Help

it's a unix command

 

from the command prompt (use ssh login)

chown user_name path_to_file/filename.php

 

make sure you login as root, and you must have ssh access (sometimes called shell access) to do this.

if you cannot change the owner of the file, you will have to edit the file yourself, not relying on the installer. I cannot help you with that bar doing it for you. good luck.

Guest Anonymous
Posted

Re: Help

Had Floydian taken the time to RTFM he may have realized a possibly simpler and safer method - chmod:

chmod o=rw config.php

This does not require root privileges and can often be done from a half decent client.

Assuming this system works -- changing the mode of the file to o=r is all that is required to return the permissions to something a little simpler.

chmod o=r config.php

If you are using an FTP client -- Well they are all different, but what you are doing is changing the permissions of the file (not the owner - after all - What's the point of changing the owner of the file to nobody, when half the servers out there don't have a "nobody" user).

Guest Anonymous
Posted

Re: Help

If you can shell in (the ssh command) then use the commands I suggested. (Just don't go in as root - that's just asking for trouble).

If you just use a FTP client (much safer) Depends on it really -- I find a right-click on the relevant file and selecting permissions from the context menu works, but that's just the FTP client I use.

Guest Anonymous
Posted

Re: Help

Its more a case of allowing write access by other parties: hence the o=rw (other = read + write).

Hmm.. a quick look on a test harness suggests that everything is working correctly here, which makes me suspicious of two key areas. One is the ownership of the file, however the owner of each file should have been correctly created when you uploaded the files.

Perhaps you could just delete any existing config file and see what happens -- I checked on a local test harness and this still works fine.

Unfortunately, giving you a config is no real use as the installer script also creates all the tables at that point -- You'd also need a complete SQL dump (although I've no doubt there are plenty here who could provide a clean one).

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...