SA-MP Forums Archive
[Tool/Web/Other] FractalBB | SA:MP CMS and Forum software - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+---- Forum: Tools and Files (https://sampforum.blast.hk/forumdisplay.php?fid=82)
+---- Thread: [Tool/Web/Other] FractalBB | SA:MP CMS and Forum software (/showthread.php?tid=505686)



FractalBB | SA:MP CMS and Forum software - NewerthRoleplay - 09.04.2014

NEW UPDATE!
Why are you making this post?
Basically since I started the project I've been concentrating all of my efforts on other things rather than adding new features to the software, I also began to realize keeping the source code obfuscated and having a licensing system was kind of stupid considering it was basically free anyway with the free hosting I was providing and how I made the licenses free. So I decided to make the project open source so others can use it for whatever they want and people can help to contribute to the project.

The project is licensed under the DBAD (Don't be a dick) license which you can view here, which fyi even if you don't care you should read it because it is an awesome license! If you do need some support however I'm always happy to help just send me a PM

GitHub: https://github.com/Howelley/FractalBB
Demo: http://demo.my-server.me

Some extra notes:
Код:
Prior to installation you should run: chmod -R 0777 application system install index.php
If you need any information that isn't mentioned here than check out the projects website or take a look at the development thread

The install screen:
View an image here:

Here are some screenshots:
Home page


Forum


User Control Panel - Editable to suit your needs in the Admin panel


Admin Dashboard


Sidebar Modules: Name, Author and Description from config file


Ban viewer



Re: FractalBB | SA:MP CMS and Forum software - Lordzy - 09.04.2014

Haven't checked anything but it looks pretty cool, nice work there!


Re: FractalBB | SA:MP CMS and Forum software - Bingo - 09.04.2014

Nice one! Though! It looks good but it's more in our favor when used!

Tested. Friendly panels.


Re: FractalBB | SA:MP CMS and Forum software - Niko_boy - 09.04.2014

so far it does look good. good work


Re: FractalBB | SA:MP CMS and Forum software - d711728 - 09.04.2014

Very nice.


Re: FractalBB | SA:MP CMS and Forum software - StreetGT - 09.04.2014

You just need to add a "how to install" for people who don't know install it ^^


Re: FractalBB | SA:MP CMS and Forum software - NewerthRoleplay - 09.04.2014

Quote:
Originally Posted by StreetGT
Посмотреть сообщение
You just need to add a "how to install" for people who don't know install it ^^
Yea maybe, I was going to impliment something where the installer just creates a blank text file which can be used to determine if the installation script has been ran or not.


Re: FractalBB | SA:MP CMS and Forum software - JeaSon - 10.04.2014

is this a ucp ?


Re: FractalBB | SA:MP CMS and Forum software - Bingo - 10.04.2014

Quote:
Originally Posted by Namer
Посмотреть сообщение
is this a ucp ?
It's forum software, UCP too but not for admins, Admins have there login details and it must be entered in UCP so its ACP as well as the UCP.


Re: FractalBB | SA:MP CMS and Forum software - JeaSon - 10.04.2014

than its great man really +rep


Re: FractalBB | SA:MP CMS and Forum software - sterling123 - 11.04.2014

This is really nice


Re: FractalBB | SA:MP CMS and Forum software - Kathleen - 11.04.2014

I love it


Re: FractalBB | SA:MP CMS and Forum software - RajatPawar - 12.04.2014

Running it on /localhost/ using WAMP server.

WITHOUT .htaccess in the main folder - still can't get it working, I've edited the base_url to things, and it won't work.

WITH .htaccess in the main folder - it just refuses to open, shows error 500.

Where am I going wrong? Sorry for this!


Re: FractalBB | SA:MP CMS and Forum software - NewerthRoleplay - 12.04.2014

Ahh is mod rewrite enabled?


Re: FractalBB | SA:MP CMS and Forum software - Spydah - 12.04.2014

Nothing works in it.. I've installed it properly but the forums won't work etc.


Re: FractalBB | SA:MP CMS and Forum software - NewerthRoleplay - 12.04.2014

Quote:
Originally Posted by Spydah
View Post
Nothing works in it.. I've installed it properly but the forums won't work etc.
Well it does have you done everything already written here? Set your .htaccess using the included file, ensuring your webserver has mod_rewrite enabled. And also you have to make sure that your base_url is set in the application/config/config.php


Re: FractalBB | SA:MP CMS and Forum software - Spydah - 12.04.2014

Quote:
Originally Posted by NewerthRoleplay
View Post
Well it does have you done everything already written here? Set your .htaccess using the included file, ensuring your webserver has mod_rewrite enabled. And also you have to make sure that your base_url is set in the application/config/config.php
When I set my base_url I get a double url... Example: http://localhost/fractalbb/localhost/fractalbb/online

...

Nothing works only the index page, and I did everything.


Re: FractalBB | SA:MP CMS and Forum software - Krisna - 13.04.2014

this cms can't added a theme ??


Re: FractalBB | SA:MP CMS and Forum software - RajatPawar - 13.04.2014

All my .htaccess file contains is -
Code:
RewriteEngine on
RewriteCond $1 !^(index\.php|user_guide|templates|modules|install|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
Being absolutely clueless about this syntax, I am simply waiting for a solution from your side


Re: FractalBB | SA:MP CMS and Forum software - NewerthRoleplay - 13.04.2014

Quote:
Originally Posted by Rajat_Pawar
View Post
All my .htaccess file contains is -
Code:
RewriteEngine on
RewriteCond $1 !^(index\.php|user_guide|templates|modules|install|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
Being absolutely clueless about this syntax, I am simply waiting for a solution from your side
Okay instead of going to /forum and getting a blank page. What happens if you visit: index.php/forum

This can help us to see whether or not it is a server issue, if it does work then it means mod_rewrite is not enabled. If it is on a local server and you are using WAMP for example... You should consider doing the following:
Code:
Left click on wamp tray icon -> Apache -> Apache modules -> rewrite_module (server restart)
Hope this helps, Connor.