Jump to content

Organizr v1.0 Released


causefx

Recommended Posts

causefx
ORGANIZR v1.0 - Ready for the prime time!

Finally, after a long time of testing with the help of our fellow users, I am ready to release this project.

 

What is Organizr?

 

Organizr is a webpage that you run on your server to help put all your services into one webpage.  Are you tired of having to remember all your IP's and ports?  Or are you tired of having all those bookmarks?  Well, **Organizr** is here to help with that.  We didn't want you to have a shitty looking interface that you would use basically everyday while you check on Sonarr, Radarr etc...   We wanted something you can give a link to your friends and family that you could be proud of.  Not something were you are locked into it with they way it looks, something you can fully customize.  

 

What kinda Features is there?

 

Organizr has the following:

 

* Custom tabs for your services

* Fullscreen Support

* Pin/Unpin sidebar

* Mobile support

* Set default page on launch

* Enable or Disable loading icon

* Customise loading icon

* Upload new icons with ease

* Enable or disable iFrame for your tabs

* User management support: Create, delete and promote users from the user management console

* 3 user classes available: admin, user, guest

* 9 Different themes available

* Personalise any theme: Customise the look and feel of Organizr with access to the colour palette

* Take it even further with your own Custom CSS editor

* Organizr login log viewer

* Fail2ban support (see wiki)

* Nginx Cookie Authentication support

* Protect new user account creation with registration password

* 'Forgot Password' support [receive an email with your new password, prerequisites: mail server setup]

* Multiple login support

* Keyboard shortcut support (Check help tab in settings)

* Split-screen support (view two tabs side-by-side on Organizr)

* Gravatr Support

* Loading screen icon support

* Customise the top bar by adding your own site logo or site name

* Slim option available for top bar

* Additional language support [EN, DE, ES, FR, IT, NL]

* Quick access tabs [access your tabs quickly e.g. www.example.com/#Sonarr]

 

 

Where can I see Images or Download it?

 




 

Let me know if there is anything else you guys wanna know....  Thanks for your time!

  • Like 7
Link to comment
Share on other sites

  • 2 weeks later...
shorty1483

@@causefx After some struggle I managed to install on top of my existing nginx reverse proxy. Man this is awesome!

Edited by shorty1483
Link to comment
Share on other sites

CBers

Been looking at your project for a while now, but it seems a tad complicated to set up for the average user.

 

I'll give it a go later this week though and report back any issues.

  • Like 1
Link to comment
Share on other sites

shorty1483

Been looking at your project for a while now, but it seems a tad complicated to set up for the average user.

 

I'll give it a go later this week though and report back any issues.

 

When you've found the way it's pretty simple. Use the Windows from scratch installation instruction on github Wiki.

 

@causefx https://github.com/causefx/Organizr/wiki/Windows-Installation-from-scratch#running-php-as-a-service You should attach the following after point 10:

11. On the opened cmd prompt type in “nssm restart php” (without the quotes) to restart the PHP service to apply the changes in php.ini.

I am not that familiar with php and did not think about that I need to reload the service after uncommenting the two needed modules. 

Edited by shorty1483
  • Like 1
Link to comment
Share on other sites

CBers

When you've found the way it's pretty simple. Use the Windows from scratch installation instruction on github Wiki.

 

@@causefx https://github.com/causefx/Organizr/wiki/Windows-Installation-from-scratch#running-php-as-a-service You should attach the following after point 10:

11. On the opened cmd prompt type in “nssm restart php” (without the quotes) to restart the PHP service to apply the changes in php.ini.
I am not that familiar with php and did not think about that I need to reload the service after uncommenting the two needed modules.

I've used PHP before, so it seemed natural to restart PHP after making those changes to the php.ini file, but yes, it should be noted.

 

I've following this "link" and it is really easy, until you get to the last step, copy the Organizr files, as after that, there's no further instructions.

 

How do you open/use Organizr ??

 

.

Edited by CBers
Link to comment
Share on other sites

shorty1483

@@causefx - the automatic upgrade failed:

 

58ceebd84dcbb_Capture1142.jpg

 

Did you update to 1.10? I did today in the morning and I had no errors...

Link to comment
Share on other sites

CBers

Did you update to 1.10? I did today in the morning and I had no errors...

I was trying to use the AUTOMATIC update from within Organizr when that error was displayed.

 

Is Organizr available away from the PC it's installed on?

 

IE, from another PC on the same LAN?

Link to comment
Share on other sites

shorty1483

I was trying to use the AUTOMATIC update from within Organizr when that error was displayed.

 

Is Organizr available away from the PC it's installed on?

 

IE, from another PC on the same LAN?

 

I used the automatic option too. And yes, it's availably everywhere where your nginx is available, also from i-net if wanted. 

Link to comment
Share on other sites

CBers

I used the automatic option too. And yes, it's availably everywhere where your nginx is available, also from i-net if wanted.

I tried the update option again, but the same error.

 

Newbie to NGINX, so how is it made to be available everywhere?

Link to comment
Share on other sites

Jdiesel

Any tips on adding getting this working with an existing nginx reverse proxy that is already setup? 

Link to comment
Share on other sites

CBers

I tried the update option again, but the same error.

 

Newbie to NGINX, so how is it made to be available everywhere?

I manually updated, so now running 1.10.

 

Worked out how to access externally.

Link to comment
Share on other sites

shorty1483

Any tips on adding getting this working with an existing nginx reverse proxy that is already setup? 

 

I added this ones to the server block:

## Organizr ##
	location /organizr {
	root html;
	index index.php index.html index.htm;
}

location ~ \.php$ {
        root           html;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  C:/nginx/html$fastcgi_script_name;
        include        fastcgi_params;
}

I can access Organizr now using https://mydomain/organizr. If you want to reach without subfolder (just https://mydomain), then extract the Organizr files to the html root directory and set "location /" in the code above.

 

I manually updated, so now running 1.10.

 

Worked out how to access externally.

 

You want to access over WAN? Depending on your server section in nginx.conf. I you run nginx on port 80+443, you need to port forward these two ports in your ISP Router/Modem. Also Windows Firewall needs to have an exception for nginx totally or just the ports you chose for your webcontent.

Edited by shorty1483
Link to comment
Share on other sites

causefx

@@CBers - Ahhhh, I know why you are seeing that error now, you havent customized anything yet, goto settings and change the title or theme also make some tabs. 

Edited by causefx
Link to comment
Share on other sites

CBers

@@CBers - Ahhhh, I know why you are seeing that error now, you havent customized anything yet, goto settings and change the title or theme also make some tabs.

I'm sure I'd created tabs, but no customisation.

 

I'll try with the next update.

 

Thanks @@causefx.

Link to comment
Share on other sites

CBers

thanks @@CBers. new update is out... I plan to add Emby integration next.

Automatic Update within Organizr worked.

 

Now running v1.15.

 

Thanks.

Link to comment
Share on other sites

CBers

@@causefx

 

Just updated to v1.20 and it includes:

 

  • Added SABnzbd to homepage
  • Added Headphones to homepage

 

How do you access the "homepage" as I have Emby open as my default app??

 

Thanks.

Link to comment
Share on other sites

CBers

@@causefx

 

Just updated to v1.20 and it includes:

 

  • Added SABnzbd to homepage
  • Added Headphones to homepage
How do you access the "homepage" as I have Emby open as my default app??

 

Thanks.

I've sorted it out with the help of @elmerfdz over on Gitter.

 

Needed to add "homepage.php" as a new tab :)

 

Also found a bug with adding NzbGet to the home page, where the entry in the PORT field isn't saved. @elmerfdz is aware.

Link to comment
Share on other sites

Swynol

what does the homepage look like? also do all the tab open in iframe or its own page? 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...