Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Problems with uploading a profile image and change username on forum
Hey,
Im having problems with my new vanilla forum installation. The problems is with uploading a profile image and change username on forum like user-settings. Getting to a "page not found" -site and for changing name you only stand loading with nothing happening.
Solutions?
I also want to ask if theres a solution to auto-accept members that applies to a forum with a certan *.@-email adress?
Im having problems with my new vanilla forum installation. The problems is with uploading a profile image and change username on forum like user-settings. Getting to a "page not found" -site and for changing name you only stand loading with nothing happening.
Solutions?
I also want to ask if theres a solution to auto-accept members that applies to a forum with a certan *.@-email adress?
Tagged:
0
Comments
By looking through the source of applications/dashboard/controllers/class.profilecontroller.php , I saw that we needed a subdir under uploads called "userpics". Added that, made it 777 and owned by www-user, and now it works.
For some reason, this code failed:
// Make sure the avatars folder exists.
if (!file_exists(PATH_ROOT.'/uploads/userpics'))
mkdir(PATH_ROOT.'/uploads/userpics');
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php\?p=/$1 [QSA,L]
Vanilla Forums COO [GitHub, Twitter, About.me]