414 Request-URI Too Large - problem

zpasji
User w
User w
Posts: 6
Joined: Thu Mar 05, 2020 10:06 pm

414 Request-URI Too Large - problem

Post by zpasji »

Hello,
I'm just trying to integrate and I have this error, a long link is generated http://flo.micromedia.pl/forum
where did i make a mistake?
User avatar
axew3
w3all User
w3all User
Posts: 2689
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: 414 Request-URI Too Large - problem

Post by axew3 »

after a loop, when you open wp page-forum the url seem to be concatenated each time, so you have this:

Code: Select all

http://flo.micromedia.pl/forum/?w3=dzM9ZHpNOVpIcE5PVnBJY0U1UFZuQkpZMFUxVUZadVFrcFpNRlV4VlVaYWRWRnJjRnBOUmxWNFZsVmFZV1JXUm5KalJuQk9VbXhXTkZac1ZtRlpWMUpYVW01S2FsSnVRazlWYlhoWFRrWmFjMVp0UmxwV01VcFlWVzAxUzJGc1NuVlJhemxXWWxob1dGUnJXbUZqTVZwMFVteHdWMDFWY0ZsV1Z6QXhVekpHYzFOdVZsSmhlbXhYV1d4b2IxZEdVbkpYYlVacVRWWndNRlZ0ZUhkV01ERldZMFpzVjFaNlFYaFZla3BIWXpGT2RWWnNTbWhsYlhoWVYxZDRiMkl4WkVkVmJrcFlZbFZhY1ZSV1duZE5SbFowWlVoa1YwMUVSbGRaTUZwelZqRmFObEZZYUZabGEzQklXWHBHVDJSV1duTlRiV2hzWWxob1dWWXhaRFJpTWtsNFdrVmtWbUpyY0Z..............
etc etc that finally lead to the error, but why it come out i have not understand right now ...
If you remove the phpBB overall_header code, it is then fixed? Can you try?
p.s
If you can't access to phpBB because ever reload to wp forum page, and you setup phpBB recompile setting to NO, disable javascript on browser and point to phpBB admin, change the setting to recompile YES, and remove the code overall header
User avatar
axew3
w3all User
w3all User
Posts: 2689
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: 414 Request-URI Too Large - problem

Post by axew3 »

answering this morning to a pm, i've take a look into your post and clicking into your example link, i've been able to stop loop and see page code output ... ...
it seem to me you have not well read instructions (yeah yeah! my Eng is bad!) and where:

Code: Select all

var wordpress_url_page_f = 'http://flo.micromedia.pl/forum'; // MANDATORY! // (DO NOT ADD/INCLUDE final slash here) Url that point to your iframed wordpress forum page
into overall_header.html and overall_footer.html code you added, you should set it with THE URL OF THE WP PAGE FORUM you created into WP,
AND NOT THE REAL PHPBB URL

which is the name of the page-forum you created into wordpress?
you need to setup the url of this page as value into overall_header.html and overall_footer.html js code
AND NOT the real phpBB url.

Look also that you DO NOT need to name this page, like the forum folder, if phpBB reside into same folder where wp is.

Test doing this please:

into plugin admin, where create/rebuild page-forum, setup as value forums (note that it is forums not forum), click create/rebuild page.
then create blank page into wordpress, just title it forums and save.

now into your overall_header.html js code, set values like this:

Code: Select all

var wordpress_url_page_f = 'http://flo.micromedia.pl/forums'; // MANDATORY! // (DO NOT ADD/INCLUDE final slash here) Url that point to your iframed wordpress forum page
and into overall_footer.html, same value

Code: Select all

var wordpress_url_page_forum = 'http://flo.micromedia.pl/forums'; // MANDATORY! // (DO NOT ADD/INCLUDE final slash here) Url that point to your iframed wordpress forum page
now all will work fine.
zpasji
User w
User w
Posts: 6
Joined: Thu Mar 05, 2020 10:06 pm

Re: 414 Request-URI Too Large - problem

Post by zpasji »

thank you very much for the answer, I was wrong, I created page-forums.php and changed the paths in footer and header files on domain.pl/forums/ and something started, but there is still a problem because the main page is displayed in the forum
https://ibb.co/mGmzXpq

Code: Select all

http://flo.micromedia.pl/forums/

I also have a problem displaying the user list, if the plugin is enabled the list does not appear, previously there was a transfer from phpbb to wordpress

Code: Select all

http://flo.micromedia.pl/florysci/
User avatar
axew3
w3all User
w3all User
Posts: 2689
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: 414 Request-URI Too Large - problem

Post by axew3 »

And what setting have you put into plugin admin, where URL setting?

Code: Select all

http://flo.micromedia.pl/forum
i hope?
zpasji
User w
User w
Posts: 6
Joined: Thu Mar 05, 2020 10:06 pm

Re: 414 Request-URI Too Large - problem

Post by zpasji »

I just didn't, I missed it, thx
now, unfortunately, the page loops when logging in
Post Reply