installation does not work

Permalink
hello,
the last two hours I tryed to get concrete running on the shared server of my university but unfortunately it doesen´t seem to work out... I always get this page:(http://stud3.tuwien.ac.at/~e0928345/)
here´s the info file: (http://stud3.tuwien.ac.at/~e0928345/info.php/zusatz)

my site.php is:
<?php
define('DB_SERVER', '127.0.0.1');
define('DB_USERNAME', 'xxx');
define('DB_PASSWORD', 'xxx');
define('DB_DATABASE', 'xxx');
define('BASE_URL', 'http://stud3.tuwien.ac.at');
define('DIR_REL', '/~e0928345/public_html');
define('PASSWORD_SALT', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx');
define('ENABLE_APPLICATION_EVENTS', true);
define('CACHE_FRONTEND_OPTIONS', serialize(array('automatic_cleaning_factor' => 0)));
define('DIRNAME_APP_UPDATED', 'concrete');
?>
(i do know that i´ve to replace the xxx by pw etc.)

thank you!

dorferc
 
triplei replied on at Permalink Reply
triplei
If you're installing to the main root of your server, you should leave your DIR_REL to just be / however, in your case it may need to be /~e0928345/ since it looks like you're running the concrete install out of a sub-directy from your document root.

Give that a shot and see if it does the trick.
dorferc replied on at Permalink Reply
dorferc
By now I can say that I´ve tryed pretty everything. The concrete install runs on the subdirectory /~e0928345/public_html. After some changes I got the message that there´s something wrong with dispatcher.php on line 8.
Is there a big difference between 127.0.0.1 and localhost (it didn´t work for localhost)?
Mnkras replied on at Permalink Reply
Mnkras
your dir rel has an extra / in it, remove it and it should work
dorferc replied on at Permalink Reply
dorferc
I already tryed that one, doesn´t work.
Did any of you guys check my info file I posted, cuz I´m not that sure anymore (I checked that before I started the install) if I have all the required rights on my server (write, delete...)?
Fernandos replied on at Permalink Best Answer Reply
Fernandos
PHP Configuration is somewhat ok.
you c5 thinks it's installed in:http://stud3.tuwien.ac.at/~e0928345/public_html/...

but you have installed it in:
http://stud3.tuwien.ac.at/~e0928345/...
Which is quite different.

I'd recommend you to usehttp://www.afraid.org a subdomain Webforwad to your long url.

Example: student.whatever.org points tohttp://stud3.tuwien.ac.at/~e0928345/public_html/...

So you c5 thinks it's installed in /.

Or just manually change the BASE URL and DIR REL to the right values.
Fernandos replied on at Permalink Reply
Fernandos
define('BASE_URL', 'http://stud3.tuwien.ac.at/~e0928345');
define('DIR_REL', '/public_html');

Why did you add this?
define('CACHE_FRONTEND_OPTIONS', serialize(array('automatic_cleaning_factor' => 0)));

And why did you add this?
define('DIRNAME_APP_UPDATED', 'concrete');
Did you update an older c5??
dorferc replied on at Permalink Reply
dorferc
thank you for your help! I´ll try that in the next two hours! I might have changed some things (it´s the latest version of concrete) but I´ll undo that since my last php-lessions are years ago..
dorferc replied on at Permalink Reply
dorferc
I reinstalled it and it still doesn´t work. I should have mentioned that i get an empty site.php after every installation ( I wrote/copied the one above by myself after installation).

now during the installation it says something about not enough memory size in

"concrete/libraries/3rdparty/adodb/adodb-datadict.inc.php on line 706"



I do use afraid.org now and my adress is: student.mooo.com instead ofhttp://..../public_html/

my new site.php is(i wrote it):
<?php
define('DB_SERVER', '127.0.0.1');
define('DB_USERNAME', 'xxxxxxx');
define('DB_PASSWORD', 'xxxxxxxxxxxxxxxxx');
define('DB_DATABASE', 'xxxxx');
define('BASE_URL', 'student.mooo.com');
define('DIR_REL', '');
define('PASSWORD_SALT', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx');
define('ENABLE_APPLICATION_EVENTS', true);
?>

I also tryed:
define('BASE_URL','http://stud3.tuwien.ac.at/~e0928345');
define('DIR_REL', '/public_html');

still don´t work;(
dorferc replied on at Permalink Reply
dorferc
i´ll try it on an other server.

thank you anyway for your help!!