MyBB Community Forums

Full Version: Index of/
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everyone.

There is like putting a picture in place so do not get this white background?


My intention is to put an image for introduction before the member access the forum.

Thank you to have time to help me.


Quote:[Image: P_gina_do_Mybb.jpg]
Do you want the directory to redirect you to another page or are you just trying to stylize the directory page?
You can add a index.html file with your required edits like link to forum, description about your website, etc all you need is just a little HTML knowledge and some spare time to do that.
(2016-10-20, 01:29 AM)[PMC] John Wrote: [ -> ]Do you want the directory to redirect you to another page or are you just trying to stylize the directory page?

Ideally both.

It can also be only one image.

(2016-10-20, 04:29 AM)Dark-Power-Invader Wrote: [ -> ]You can add a index.html file with your required edits like link to forum, description about your website, etc all you need is just a little HTML knowledge and some spare time to do that.

This modification seems complex.
I'm not sure what else you're expecting - you need a web page to be there, but your forum is inside a subdirectory - do you want this welcome page to be managed within MyBB?
edit: delayed response !

that should be a simple task as you wanted to put just a image (with introduction)

simple code is given below. file name => index.html
<html>
<head>
<title>forum name</title>
</head>
<body>
<br />
<div style="text-align: center;">
<a href="path/to/forum"><h2>forum</h2></a>
</div>
<br />
<img src="path/to/your/image" alt="" />
<br />
<div style="text-align: center;">
<a href="path/to/forum"><h2>forum</h2></a>
</div>
</body>
</html>
(2016-10-20, 11:37 AM)Matt Wrote: [ -> ]I'm not sure what else you're expecting - you need a web page to be there, but your forum is inside a subdirectory - do you want this welcome page to be managed within MyBB?

It would be like this:
  • Image presentation to the forum (link)
  • Forum

(2016-10-20, 11:44 AM).m. Wrote: [ -> ]edit: delayed response !

that should be a simple task as you wanted to put just a image (with introduction)

simple code is given below. file name => index.html
<html>
<head>
<title>forum name</title>
</head>
<body>
<br />
<div style="text-align: center;">
<a href="path/to/forum"><h2>forum</h2></a>
</div>
<br />
<img src="path/to/your/image" alt="" />
<br />
<div style="text-align: center;">
<a href="path/to/forum"><h2>forum</h2></a>
</div>
</body>
</html>

Appreciate your help.

I did this procedure, it worked. But no it does not get on the page before the forum.
^ can we have your forum url ..
Yeah there is no way to actually to modify the file however what I recommend is using this line in an .htaccess file and use a plugin named page manager(Link here) to create your own landing page. The plugin is a little old but still works perfectly in my opinion.

DirectoryIndex (landing page)

ex:

DirectoryIndex forum/landingpage.php
(2016-10-21, 02:46 AM).m. Wrote: [ -> ]^ can we have your forum url ..

Forum test: http://mrexperimental.esy.es/

(2016-10-21, 07:18 AM)[PMC] John Wrote: [ -> ]Yeah there is no way to actually to modify the file however what I recommend is using this line in an .htaccess file and use a plugin named page manager(Link here) to create your own landing page. The plugin is a little old but still works perfectly in my opinion.

DirectoryIndex (landing page)

ex:

DirectoryIndex forum/landingpage.php

It was not possible due to incompatibility with the new MyBB.