Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Vanilla: moving domain, white page displayed
This discussion has been closed.
Comments
Can you use php5?
var_dump(ini_get('session.save_path'));
at the top of Authenticator::GetIdentity() in library/People/People.Class.Authenticator.php. The session is started there.vanilla cleaning the output buffer:
//init_vanilla.php line 58 ob_end_clean(); ob_start();
Then /home/stml/library/ needs to be in your php include path. You can let the extension do that by adding to conf/settings.php:
$Configuration['DBSESSION_ZEND_FRAMEWORK_PATH_TO_INCLUDE'] = '/home/stml/library/';
Here is the solution to your problem:
http://kb.mediatemple.net/questions/652/(dv)+Session+Save+Path+Errors+and+the+Vhost.conf
I don't know who is managing your server, but he just has to follow the article. If for any strange reason he can't, you just need to download the zend framework (it is just a collection of a php file, no compilation), put it in /var/www/sites/XXXXXX/library/ and add to conf/settings.php
$Configuration['DBSESSION_ZEND_FRAMEWORK_PATH_TO_INCLUDE'] = '/var/www/sites/XXXXXX/library/';
ps: if someone is renting a virtual server to sell some share hosting on it and can't fix that basic problem after 1 week you reported it to him/her, you probably should look for an other provider.
/var/www/sites/XXXXXX/tmp should be writeable.
stml also had to update its domain name related settings (its url has changed I think) and its current problem is that his new server php session is not properly set (Your new provider documentation should tell if something need to be done to enable session).
When your new server is up and running you import the data in the new database (using mysql: "mysql -u username -p < backup.sql"*)
*if you don't have shell access you either need access to the database and use a mysql client on your computer:
- mysql -h you.server.com -u username -p < backup.sql
- use PhpMyAdmin import - but there is a limit of 2mb for the size of the data.