Author Topic: Install  (Read 12520 times)

Offline flad-mast

  • Newbie
  • *
  • Posts: 3
Install
« on: August 16, 2008, 06:34:17 AM »
I have a problem, i have my own website hosted on one.com
and i wont to install roundcube mail but when i try to install it says:
 
Checking php.ini/.htaccess settings
file_uploads:  OK
session.auto_start:  OK
magic_quotes_gpc:  NOT OK(is '1', should be '0')
magic_quotes_sybase:  OK
 
 
 
And one.com will not let me edit "php.ini" what can i do?

Offline dj2

  • Jr. Member
  • **
  • Posts: 40
Install
« Reply #1 on: August 16, 2008, 10:04:10 AM »
Locate your .htaccess file in the root directory.  Open it, and add this line to the bottom:

Code: [Select]
php_flag magic_quotes_gpc off

Save the file, then try the install again.

Offline flad-mast

  • Newbie
  • *
  • Posts: 3
Install
« Reply #2 on: August 16, 2008, 10:57:57 AM »
Then my website says this:


Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, support@one.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Offline flad-mast

  • Newbie
  • *
  • Posts: 3
Install
« Reply #3 on: August 16, 2008, 11:04:05 AM »
It still says:

Checking php.ini/.htaccess settings
file_uploads: OK
session.auto_start: OK
magic_quotes_gpc: NOT OK(is '1', should be '0')
magic_quotes_sybase: OK

Offline JohnDoh

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 2,850
Install
« Reply #4 on: August 16, 2008, 11:53:07 AM »
may be you host has disabled htaccess files. if you cannot use either php.ini or htaccess then you will not be able to use RC.
Roundcube Plugins: Contextmenu, SpamAssassin Prefs, and moreā€¦

Offline dj2

  • Jr. Member
  • **
  • Posts: 40
Install
« Reply #5 on: August 16, 2008, 04:23:35 PM »
Quote from: JohnDoh;13328
may be you host has disabled htaccess files. if you cannot use either php.ini or htaccess then you will not be able to use RC.


Correct.  Luckily, my host allows that.

Offline flad-mast

  • Newbie
  • *
  • Posts: 3
Install
« Reply #6 on: August 17, 2008, 09:01:10 AM »
My host allow htaccess!!

Offline parames

  • Newbie
  • *
  • Posts: 1
Roundcube Webmail on One.com
« Reply #7 on: October 10, 2008, 12:40:34 AM »
Hey i found a link for installing roundcube webmail on ONE.COM hosting.. Follow the link to install roundcube webmail on one.com hosting

Roundcube webmail on One.com

Post your comments there if you have any questions


Quote from: flad-mast;13319
I have a problem, i have my own website hosted on one.com
and i wont to install roundcube mail but when i try to install it says:
 
Checking php.ini/.htaccess settings
file_uploads:  OK
session.auto_start:  OK
magic_quotes_gpc:  NOT OK(is '1', should be '0')
magic_quotes_sybase:  OK
 
 
 
And one.com will not let me edit "php.ini" what can i do?
« Last Edit: October 24, 2008, 01:24:59 PM by parames »

Offline nhomauhoaphuong

  • Newbie
  • *
  • Posts: 9
Install
« Reply #8 on: October 10, 2008, 11:57:33 AM »
if your server is not supporting .htm..... then created a php.ini then uploaded into the installer folder... it will work
goodluck

Offline diegomanas

  • Newbie
  • *
  • Posts: 2
Install
« Reply #9 on: September 10, 2009, 01:48:48 PM »
One.com is supporting .htaccess but with some restrictions. In order to install roundcube in one.com you sould comment the next line:
Code: [Select]
ExpiresActive On
I think they've already had this option on but you can't use this kind of statement to modify it. I did and now it's working.

Try and see if that works!

Offline diegomanas

  • Newbie
  • *
  • Posts: 2
Install
« Reply #10 on: September 10, 2009, 02:55:18 PM »
Sorry, I made a mistake. I've checked my .htaccess and I found the next:
Code: [Select]
# AddDefaultCharset UTF-8
AddType text/x-component .htc

<IfModule mod_php5.c>
php_flag display_errors Off
php_flag log_errors On
# php_value error_log logs/errors

php_value upload_max_filesize 5M
php_value post_max_size 6M
php_value memory_limit 64M

php_value zlib.output_compression Off
php_value magic_quotes_gpc 0
php_value zend.ze1_compatibility_mode 0
php_value suhosin.session.encrypt Off

php_value session.auto_start 0
php_value session.gc_maxlifetime 21600
php_value session.gc_divisor 500
php_value session.gc_probability 1

# http://bugs.php.net/bug.php?id=30766
php_value mbstring.func_overload 0
</IfModule>

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^favicon.ico$ skins/default/images/favicon.ico
</IfModule>

<IfModule mod_deflate.c>
SetOutputFilter DEFLATE
</IfModule>

#<IfModule mod_headers.c>
# replace 'append' with 'merge' for Apache version 2.2.9 and later
#Header append Cache-Control public env=!NO_CACHE
#</IfModule>

<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault &quot;access plus 1 month&quot;
</IfModule>

FileETag MTime Size

I didn't edit mod_expires but, I had commented the whole mod_headers configuration.
This is working right now, so I guess it should work to anyone.