Author Topic: Internal Server Error but can't figure it out.  (Read 2923 times)

Offline typomaniac

  • Newbie
  • *
  • Posts: 3
Internal Server Error but can't figure it out.
« on: December 11, 2018, 02:18:30 AM »
I hope I'm in the right area with this but here goes. I just installed Roundcube 1.3.8 and the first thing I'm seeing is an Internal Server Error. I opened the script to https://praisenpray.org/mail/ (mail being the directory where I put everything). I never even made it to any config pages. Is something upposed to be chmodded or something? I checked the error log and it shows nothing at all. I'm like at a total loss here. Any guidance would sure be appreciated.

Offline typomaniac

  • Newbie
  • *
  • Posts: 3
Re: Internal Server Error but can't figure it out.
« Reply #1 on: December 11, 2018, 11:45:56 AM »
I found a documentation at https://github.com/roundcube/roundcubemail/wiki/Installation and it said to comment out the whole htaccess file which I did and got a screen. I'm now going to un-comment the lines out one at a time to see where the problem lies. Hopefully I can get this going. I used to have it long ago but had no real use for it at the time. Will update, one way or the other soon. Thanx all :)

Offline typomaniac

  • Newbie
  • *
  • Posts: 3
Re: Internal Server Error but can't figure it out.
« Reply #2 on: December 11, 2018, 03:14:57 PM »
Got everything working but now wondering if there is an admin screen or something where one can change the skin, add plugins, etc.?
I tried to login using the syslog username and default password and nothing. Not sure what syslog is to begin with.
Is there any way for users to add folders or remove them, I know, questions, questions, questions but I know users are going to ask about folders.
When I click on help nothing happens and I went back and activated the help plugin.
Also, some questions about the htaccess file. I had to comment some lines out, am I okay with that? I mean will it cause some kind of problems for me in the future? The lines I #ed out are: 2 through 20 and line 23.
When I ran the installer it said the following were recommended but not required:

Intl:  NOT AVAILABLE(See http://www.php.net/manual/en/book.intl.php)
Exif:  OK
LDAP:  NOT AVAILABLE(See http://www.php.net/manual/en/book.ldap.php)
GD:  OK
Imagick:  NOT AVAILABLE(See http://www.php.net/manual/en/book.imagick.php)

And there any way to show pics without having to click to show them when an email comes with images. Not so bad the first time but when from the same sender would be nice to have it so that one don't have to be clicked all the time to displyay.

Okay, I will stop for a while. Been a real long night and half the day is gone already. Thank you, anybody who reads this for your time. :)


Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,876
    • SKaero - Custom Roundcube development
Re: Internal Server Error but can't figure it out.
« Reply #3 on: December 12, 2018, 02:40:15 AM »
Got everything working but now wondering if there is an admin screen or something where one can change the skin, add plugins, etc.?
No, those changes have to be made in the config file.

I tried to login using the syslog username and default password and nothing. Not sure what syslog is to begin with.
I'm not sure what your asking, you need to login to Roundcube with accounts that have been setup on the mail server.

Is there any way for users to add folders or remove them, I know, questions, questions, questions but I know users are going to ask about folders.
Yes in settings -> folders users can add and remove folders.

When I click on help nothing happens and I went back and activated the help plugin.
Which help are you clicking on? Have you checking if the browser is blocking a popup?

Also, some questions about the htaccess file. I had to comment some lines out, am I okay with that? I mean will it cause some kind of problems for me in the future? The lines I #ed out are: 2 through 20 and line 23.
No thats fine, not all servers are setup the same some will need that and others wont.

When I ran the installer it said the following were recommended but not required:

Intl:  NOT AVAILABLE(See http://www.php.net/manual/en/book.intl.php)
Exif:  OK
LDAP:  NOT AVAILABLE(See http://www.php.net/manual/en/book.ldap.php)
GD:  OK
Imagick:  NOT AVAILABLE(See http://www.php.net/manual/en/book.imagick.php)
Thats fine, the majority of functions will still be available. Intl is used to help with multi-language setups, LDAP is only needed if you want to use LDAP, and GD will be used to handle images instead of Imagick.

And there any way to show pics without having to click to show them when an email comes with images. Not so bad the first time but when from the same sender would be nice to have it so that one don't have to be clicked all the time to displyay.
You can set the following option in the Roundcube config and/or in the Roundcube settings:
Code: [Select]
// display remote resources (inline images, styles)
// 0 - Never, always ask
// 1 - Ask if sender is not in address book
// 2 - Always allow
$config['show_images'] = 0;