• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Linux Gesior Guild Image BUGS

login12

void newbie scripter()
Joined
Feb 26, 2011
Messages
164
Reaction score
24
Location
Brazil
Well i have one problem with guilds images.
idk why but my guild images dont work more after i change my dedicated.
U can look in printscreen below:

image.png



I've tried to add permission on the www folder, with the command chmod 777 www.
someone can help?
sry my bad english, i br
thanks anyway

bump
 
Last edited by a moderator:
Right click the image and "copy image url" and see where it's going.

Maybe the folder path has changed since you moved dedicated servers?
 
Maybe your web server doesn't have the right permissions to read the file, or execute the directory.

You can try out this command:
Code:
ps aux | grep apache

... and look for the user who is running that proccess, then go into the directory that contains the uploaded images and compare the user owning that catalouge,
you could also change the permissions to 755 in this fashion:
Code:
chmod -R 755 upload-folder

As well seek out the image you are seeking and seeing if it actually exists

Ignazio
 
@Cronox

guilds.php

[PHP] <?php if(!defined('INITIALIZED')) exit; if($action == 'login') { if(che - Pastebin.com

Maybe your web server doesn't have the right permissions to read the file, or execute the directory.

You can try out this command:
Code:
ps aux | grep apache

... and look for the user who is running that proccess, then go into the directory that contains the uploaded images and compare the user owning that catalouge,
you could also change the permissions to 755 in this fashion:
Code:
chmod -R 755 upload-folder

As well seek out the image you are seeking and seeing if it actually exists

Ignazio


The image exist... i try add permision with u code
chmod -R 755 /var/www/images



but still.
 
Last edited by a moderator:
Shouldn't be needed, the biggest question is what user owns the script.

Try to do ps aux | grep apache to see what user runs apache,
and ls -l in the www root directory to see who owns the folder

Ignazio
 
Back
Top