ASK ME Anything About XenForo Platform 👨

macleo1234

Member
Dec 26, 2020
41
15
8
Please does anyone know how i can link my website so users can be able to login with their account on xenforo? i am using sngine social network platorm script and i will like users on this to also login with their accounts on xenforo without creating a new account? anyone? please help
 
J

j++

Guest
I can put an expiration date on the user registration? example: one year of access.
 

Proxybunker

Well-known member
Jan 3, 2021
2,660
1,841
120
codecanyonscripts.com
@CyberDeviL , I recently installed IO Dark Mode style and seeing instruction regarding outdated template. Should i click Automatically Merge 2021-09-30_111.png
you will get outdated templates if you upgrade your xenforo say from 2.6.6 to 2.6.7 and are still using the old theme what version of the io dark theme are you using and what version is your xenforo

yes you can automatically merge them however it most likely will not work correctly and you will have to manually do it
 

shankssenpai

New member
May 14, 2022
0
0
0
you will get outdated templates if you upgrade your xenforo say from 2.6.6 to 2.6.7 and are still using the old theme what version of the io dark theme are you using and what version is your xenforo

yes you can automatically merge them however it most likely will not work correctly and you will have to manually do it
I use
Xenforo v2.2.6 Patch 2
iO-Dark-Mode - 2.2.5.0.0

Currently IO Dark Child is enabled.

What is Custom Version and Parent Version?
It mentions files in Custom Version varying in many versions 2.2.2 - 2.2.5
Ex.
bb_code.lss
Custom version: 2.2.2 Parent Version: 2.2.6
forum_view
Custom version: 2.2.4 Parent Version: 2.2.6

While trying to Merge, it shows error,
"Oops! We ran into some problems. The custom template is out of date but has been edited more recently than the parent. Merging can only be done by hand."
Any document link for manual update would be helpful.
 
Last edited:

Proxybunker

Well-known member
Jan 3, 2021
2,660
1,841
120
codecanyonscripts.com
I use
Xenforo v2.2.6 Patch 2
iO-Dark-Mode - 2.2.5.0.0

Currently IO Dark Child is enabled.

What is Custom Version and Parent Version?
It mentions files in Custom Version varying in many versions 2.2.2 - 2.2.5
Ex.
bb_code.lss
Custom version: 2.2.2 Parent Version: 2.2.6
forum_view
Custom version: 2.2.4 Parent Version: 2.2.6

While trying to Merge, it shows error,
"Oops! We ran into some problems. The custom template is out of date but has been edited more recently than the parent. Merging can only be done by hand."
Any document link for manual update would be helpful.
sorry I don't have any documents about doing it by hand if you click on the file name, not the merge button it will open and show you the code if you scroll you will see what has changed and what options you have
 
  • Like
Reactions: CyberLORD

edukaris

Member
Banned User
Apr 24, 2020
92
20
18
Hello guys,

I changed the domain name of a xenforo site, and migrated succesfuly until the site is live.

But i am getting this error on home >>https://prnt.sc/1uummon

Also same error when anyone clicks on login, or register.

And board URL has already been set to new domain.

I will appreciate any help.
Thank you.
 

edukaris

Member
Banned User
Apr 24, 2020
92
20
18
Can someone guide me on solving this and i will buy them coffee right away? Please
 

YusEx

New member
Feb 14, 2021
10
-2
1
Around the world
I have been able to solve. Nothing to do with database.
Ok, mate.

For everyone;
If you encounter this error message and you are using a computer (rather than a mobile device), access the browser console (F12 if using Windows / Chrome).

Select the Console tab and there should be an error message displayed to troubleshoot what's happening.

If it's a 403 Forbidden error then it will likely be due to a server side security mechanism such as ModSecurity, mod_evasive, or similar.
It could even be something like the Wordfence add-on for WordPress.
Contact your host and ask them to whitelist whichever rules are being triggered, or to disable the mechanism.

If it's an HTTP 500 error, this is a generic web server error and your host will need to inspect the server error log (not the XF ACP error log) to determine what is causing it.
 
  • Like
Reactions: edukaris

edukaris

Member
Banned User
Apr 24, 2020
92
20
18
Ok, mate.

For everyone;
If you encounter this error message and you are using a computer (rather than a mobile device), access the browser console (F12 if using Windows / Chrome).

Select the Console tab and there should be an error message displayed to troubleshoot what's happening.

If it's a 403 Forbidden error then it will likely be due to a server side security mechanism such as ModSecurity, mod_evasive, or similar.
It could even be something like the Wordfence add-on for WordPress.
Contact your host and ask them to whitelist whichever rules are being triggered, or to disable the mechanism.

If it's an HTTP 500 error, this is a generic web server error and your host will need to inspect the server error log (not the XF ACP error log) to determine what is causing it.
I have to also let you know that my problem was solved when i edited .htacess and not this method.

I moved my site to a new server and new domain. so there where some minor changes in .htacess that i need to adjust and everything was back to normal.

First of all, i disabled, friendly URls.
Then went and enabled MOD security and pasted the Mod code into .htacess and everything was back to normal.
 

ducbo

New member
Jun 30, 2022
0
0
0
I don't understand your question do you want to run xenforo on your site through an iframe or run something on xenforo with an iframe
Sorry for the confusion in the question (I'm using google translate), but it was like using iframe within topics, searching the internet and some ready-made BB Code templates on CP, trying to embed external videos.

Solution:
I created a new template and it's working, for example for doodstream.

Match URLs:
https://doodstream.com/e/{$id}
https://dood.ws/e/{$id}

Embed template:
<div class="bbMediaWrapper">
<div class="bbMediaWrapper-inner">
<iframe src="https://dood.ws/e/{$id}"
width="560" height="315"
frameborder="0" allowfullscreen="true"></iframe>
</div>
</div>

Thanks for listening.
 

Proxybunker

Well-known member
Jan 3, 2021
2,660
1,841
120
codecanyonscripts.com
Sorry for the confusion in the question (I'm using google translate), but it was like using iframe within topics, searching the internet and some ready-made BB Code templates on CP, trying to embed external videos.

Solution:
I created a new template and it's working, for example for doodstream.

Match URLs:
https://doodstream.com/e/{$id}
https://dood.ws/e/{$id}

Embed template:
<div class="bbMediaWrapper">
<div class="bbMediaWrapper-inner">
<iframe src="https://dood.ws/e/{$id}"
width="560" height="315"
frameborder="0" allowfullscreen="true"></iframe>
</div>
</div>

Thanks for listening.
now I understand you can also use the plugin s9e Media Sites that can add a lot of different sites to embed videos
 
  • Like
Reactions: kimbola

Latest posts

Forum statistics

Threads
69,246
Messages
908,561
Members
237,330
Latest member
zumber

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu