• 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!

Help plz Error: The upload path does not appear to be valid.

vampirium

New Member
Joined
Jan 10, 2008
Messages
49
Reaction score
0
I have thad error in mi guild when I wht to upload a Pohoto help plz


sorry for mi bad inglech
 
Okay that is the solution (If you use MODERN ACC):

1. Go to xampp/htdocs/system/application/views/...

Search guild_logo.php, open it with wordpad, delete all and add this:


PHP:
<div class='message'><div class='title'>Guild Change Logo</div></div><br>
<small><font color="5c120f">To change your logo your image must be of a size of <b>64 x 64</b> and a <b>.GIF</b> format. If you don't follow the steps you can't change your guild logo.</font></small><br>
<?php 
$logo = (file_exists("public/guild_logos/".$id.".gif")) ? "<img src='".WEBSITE."/public/guild_logos/".$id.".gif' width='64' height='64'>" : "<img src='".WEBSITE."/public/guild_logos/default.png'>";
echo "<br><label><font color='5c120f'>Current logo</font></label><br><br>".$logo;
echo form_open_multipart('guilds/logo/'.$id);
echo "<br><font color='5c120f'><small>Select your logo of your PC following the steps.</small></font><br>";
echo '<br><input type="file" name="logo" max_file_size="131072" />';
echo '<input type="submit" value="Upload" />';
echo "</form>";;
?>

Done! You now not have any problems. Tested on MODERN ACC 2.0. Try it!
 
Back
Top