Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

9.03 - 403 error when granting groups via user profile

Asked Modified Viewed 1,433 times
S
Scarcer3320
S
  • Junior Member, joined since
  • Contributed 17 posts on the community forums.
  • Started 7 threads in the forums
  • Started this discussions
asked
Junior Member

Quote


403
The link you followed may have expired, or the page may not be accessible to you.


I receive this error when attempting to grant custom groups via member profile pages. I can still add to group via admin panel as usual.

Thanks
0 replies

12 posts

F
Falk
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
answered
Super Admin

It is prolly custom template in the theme, I can not replicate this issue. Still on Atom9?
0 replies
R
Anonymous User
R
Anonymous User 367
  • Veteran Member, joined since
  • Contributed 939 posts on the community forums.
  • Started 2 threads in the forums
  • Answered 20 questions
answered
Veteran Member

Atom9: StarCity doesn't have custom profile tpl

Also I can not replicate.
0 replies
S
Scarcer3320
S
  • Junior Member, joined since
  • Contributed 17 posts on the community forums.
  • Started 7 threads in the forums
  • Started this discussions
answered
Junior Member

Is there anything different about the build provided by Softoculus?

Any file permissions I should check out via ftp?
Edited by Scarcer3320 on 13-06-2019 08:55,
1 reply
S
Scarcer3320
S
  • Junior Member, joined since
  • Contributed 17 posts on the community forums.
  • Started 7 threads in the forums
  • Started this discussions
answered
Junior Member

Sorry, had a busy week.

Done, but no dice.
0 replies
F
Falk
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
answered
Super Admin

Check your Main settings under settings, verify domain and path info so they are correct.
0 replies
S
Scarcer3320
S
  • Junior Member, joined since
  • Contributed 17 posts on the community forums.
  • Started 7 threads in the forums
  • Started this discussions
answered
Junior Member

Troubleshooting has concluded that the infusion Avatar Studio is the culprit. Uninstalled and now it works like a charm.
Edited by Scarcer3320 on 17-06-2019 14:32,
0 replies
S
Scarcer3320
S
  • Junior Member, joined since
  • Contributed 17 posts on the community forums.
  • Started 7 threads in the forums
  • Started this discussions
answered
Junior Member

I had it working last night but it popped up again for both me and my assistant Super Admin. At least this time it came up in the log, I think.

Quote

214
215 if (\defender::safe()) {
216 // Store into session
217 $_SESSION['csrf_tokens'][self::pageHash($file)][$form_id][] = $token;
218 // Round robin consume token
219 if (count($_SESSION['csrf_tokens'][self::pageHash($file)][$form_id]) > $max_tokens) {
220 array_shift($_SESSION['csrf_tokens'][self::pageHash($file)][$form_id]);
221 }
222 } else {
223 if (!empty($_SESSION['csrf_tokens'])) {
224 $token_ring = $_SESSION['csrf_tokens'][self::pageHash($file)][$form_id];
Line 224 -- 3 minutes ago
Undefined index: /error.php
225 $ring = array_rand($token_ring, 1);
226 $token = $token_ring[$ring];
227 } else {
228 $_SESSION['csrf_tokens'][self::pageHash($file)][$form_id][] = $token;
229 }
230 }
231
232 // Debugging section
233 if (self::$debug) {
234 if (!self::safe()) {
235
Edited by Scarcer3320 on 18-06-2019 06:12,
0 replies
C
Chan
C
Chan 0
Lead Developer of PHP-Fusion
  • Super Admin, joined since
  • Contributed 3,842 posts on the community forums.
  • Started 232 threads in the forums
  • Answered 6 questions
answered
Super Admin

The token is pretty easy to fix on all version 7 infusions. Find all conventional <form> and replace with our function.

replace:


$action = FUSION_REQUEST;
echo "<form name='xyz' method='post' action='$action'> "


with:


$action = FUSION_REQUEST;
echo openform('xyz', 'post', $action);
0 replies
S
Scarcer3320
S
  • Junior Member, joined since
  • Contributed 17 posts on the community forums.
  • Started 7 threads in the forums
  • Started this discussions
answered
Junior Member

I'm not using any community infusions at the moment. All stock aside from CSS.

The avatar studio infusion is currently disabled
0 replies
F
Falk
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
answered
Super Admin

You can try to change sessions type to database under Admin > Settings > Security Settings, also up the amount of allowed tokens, perhaps some UF generate more.
0 replies
S
Scarcer3320
S
  • Junior Member, joined since
  • Contributed 17 posts on the community forums.
  • Started 7 threads in the forums
  • Started this discussions
answered
Junior Member

Yeah still not working for me or any of my admins.
0 replies
S
Scarcer3320
S
  • Junior Member, joined since
  • Contributed 17 posts on the community forums.
  • Started 7 threads in the forums
  • Started this discussions
answered
Junior Member

Cause found: cPanel ModSecurity is not compatible with php-fusion. All admin and user related 403 errors ceased with ModSecurity disabled.
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 12 posts
  • Votes 0 votes
  • Topic users 4 members

4 participants

F
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
C
C
Chan 0
Lead Developer of PHP-Fusion
  • Super Admin, joined since
  • Contributed 3,842 posts on the community forums.
  • Started 232 threads in the forums
  • Answered 6 questions
R
R
Anonymous User 367
  • Veteran Member, joined since
  • Contributed 939 posts on the community forums.
  • Started 2 threads in the forums
  • Answered 20 questions
S
S
  • Junior Member, joined since
  • Contributed 17 posts on the community forums.
  • Started 7 threads in the forums
  • Started this discussions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet