Can anyone help me with the installation process.
I have downloaded, unpacked and uploaded the extracted files to my server.
I have checked the permissions of the directory with DreamHost and my Apache user 'ellieharrison' is definitely the 'owner'.
Yet when I run the installer, I just get a blank screen. I have tried these two addresses:
http://archive.ellieharrison.com/icaatom-1.3.0/index.php
http://archive.ellieharrison.com/icaatom-1.3.0/index.php/;sfInstallPlugin
(leaving them both plenty of time to load up in Firefox)
The browser says done after a few seconds and the screen remains blank.
If anyone can offer advice, this would be most appreciated. I have done the whole process above twice, which takes a long time as it is several hours to upload all the files to the server.
Many thanks,
Ellie Harrison
--
You received this message because you are subscribed to the Google Groups "ICA-AtoM Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ica-atom-user...@googlegroups.com.
To post to this group, send email to ica-ato...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/ica-atom-users/-/xHyGsoilMkYJ.
For more options, visit https://groups.google.com/groups/opt_out.
Ramiro has been trying to help me with this, but we've still not cracked it. If you have a chance to read over our messages below and offer advice, that would be gratefully appreciated. I really want to use AtoM!! But I can't even get passed the first hurdle :(
----- Original Message -----From: Jesús García CrespoCc: Ellie HarrisonSent: Thursday, February 21, 2013 4:31 AMSubject: Re: [ica-atom-users] Installation - blank screen when attempting to Run the installer
--
--
David Juhasz
Director, Technical Services
Artefactual Systems Inc.
www.artefactual.com
----- Original Message -----From: f.poue...@agglo-pau.frSent: Wednesday, March 06, 2013 4:15 PMSubject: Re: [ica-atom-users] Installation - blank screen when attempting to Run the installer
You received this message because you are subscribed to a topic in the Google Groups "ICA-AtoM Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/ica-atom-users/lahjlMpHoko/unsubscribe?hl=en-CA.
To unsubscribe from this group and all its topics, send an email to ica-atom-user...@googlegroups.com.
To post to this group, send email to ica-ato...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/ica-atom-users/-/8KCxMCpxGQkJ.
To view this discussion on the web visit https://groups.google.com/d/msg/ica-atom-users/-/HmiS4mnJliMJ.
I tried to install ICA-ATOM, with the same result on xampp, then wampserver 2.1e, wampserver 2.2a and wampserver 2.2e.
The apache_error.log file wrote : "PHP Fatal error: Class 'Criteria' not found in C:\\wamp\\www\\icaatom-1.3.0\\plugins\\sfPluginAdminPlugin\\config\\sfPluginAdminPluginConfiguration.class.php on line 40"
----- Original Message -----From: Jesús García Crespo
Sent: Monday, March 25, 2013 6:35 PMSubject: Re: [ica-atom-users] Installation - blank screen when attempting to Run the installer
--
You received this message because you are subscribed to a topic in the Google Groups "ICA-AtoM Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/ica-atom-users/lahjlMpHoko/unsubscribe?hl=en-CA.
To unsubscribe from this group and all its topics, send an email to ica-atom-user...@googlegroups.com.
To post to this group, send email to ica-ato...@googlegroups.com.
Can you open the php.ini file- where can I find this file and what should I open it in?
There must be a directive called "include_path", please try to remove it and then restart Apache.- should I delete this file? And then what do I restart?
Also, it may be useful to take a look to phpinfo(). Send me the report to my email, I can take a look for you.- Again if you can let me know how to do this I can send you the report - I am using my Browser (Firefox), FTP (Dreamweaver) and SHH (puTTy) to access the files.
Anyway, can you deduce anything from the index.php error message as to why the Installer refuses to run? I have pasted the code from the php file it refers to below.
Many thanks,
Ellie Harrison
plugins/sfPluginAdminPlugin/config/sfPluginAdminPluginConfiguration.class.php
<?php
/**
* sfPluginAdminPlugin
configuration.
*
* @package
sfPluginAdminPlugin
* @subpackage config
*
@author Your name here
*
@version SVN: $Id:
sfPluginAdminPluginConfiguration.class.php 6899 2010-05-14 19:10:14Z jablko
$
*/
class sfPluginAdminPluginConfiguration extends
sfPluginConfiguration
{
public static
$pluginNames;
/**
* @see
sfPluginConfiguration
*/
public function
initialize()
{
// Project classes, e.g.
QubitSetting, not loaded unless
//
sfApplicationConfiguration,
// http://qubit-toolkit.org/wiki/index.php?title=Autoload#Plugins
if (!$this->configuration instanceof
sfApplicationConfiguration)
{
return;
}
$enabledModules =
sfConfig::get('sf_enabled_modules');
$enabledModules[] =
'sfPluginAdminPlugin';
sfConfig::set('sf_enabled_modules',
$enabledModules);
// Stash plugin names enabled in
ProjectConfiguration.class.php for
//
sfPluginAdminPluginIndexAction. Where is the best place to stash
it?
// This is probably not the best place :
P
sfPluginAdminPluginConfiguration::$pluginNames =
$this->configuration->getPlugins();
new sfDatabaseManager($this->configuration);
$criteria = new
Criteria;
$criteria->add(QubitSetting::NAME,
'plugins');
try
{
if (1 == count($query =
QubitSetting::get($criteria)))
{
// http://qubit-toolkit.org/wiki/index.php?title=Autoload
$this->dispatcher->disconnect('autoload.filter_config',
array($this->configuration, 'filterAutoloadConfig'));
$pluginNames = unserialize($query[0]->__get('value', array('sourceCulture'
=> true)));
$this->configuration->enablePlugins($pluginNames);
$pluginPaths =
$this->configuration->getAllPluginPaths();
foreach ($pluginNames as $name)
{
if
(!isset($pluginPaths[$name]))
{
throw
new InvalidArgumentException('The plugin "'.$name.'" does not
exist.');
}
// Copied from
sfProjectConfiguration::loadPlugins()
$className =
$name.'Configuration';
if (!is_readable($path =
$pluginPaths[$name].'/config/'.$className.'.class.php'))
{
$configuration = new sfPluginConfigurationGeneric($this->configuration,
$pluginPaths[$name],
$name);
}
else
{
require_once
$path;
$configuration = new $className($this->configuration, $pluginPaths[$name],
$name);
}
// Is this
cached?
$configuration->initializeAutoload();
$configuration->initialize();
$this->configuration->pluginConfigurations[$name] =
$configuration;
}
$this->dispatcher->connect('autoload.filter_config',
array($this->configuration,
'filterAutoloadConfig'));
}
}
catch (PropelException
$e)
{
// Silently
swallow PropelException because we can't tell at this
point
// if we are in install, and install
plugin can't listen for an exception
// thrown
at this point, is this the best solution?
}
}
}
----- Original Message -----From: Jesús García CrespoSent: Wednesday, March 27, 2013 9:16 PMSubject: Re: [ica-atom-users] Installation - blank screen when attempting to Run the installer
--
Fatal error: Class 'Criteria' not found in /home/icaatom/archive.ellieharrison.com/icaatom-1.3.0/plugins/sfPluginAdminPlugin/config/sfPluginAdminPluginConfiguration.class.php on line 40
----- Original Message -----From: Jesús García CrespoSent: Tuesday, April 16, 2013 2:14 PMSubject: Re: [ica-atom-users] Installation - blank screen when attempting to Run the installer
--
PHP 5.3.x FastCGI.
----- Original Message -----From: Jesús García CrespoSent: Tuesday, April 16, 2013 3:07 PMSubject: Re: [ica-atom-users] Installation - blank screen when attempting to Run the installer
--
Best of luck,
--
You received this message because you are subscribed to the Google Groups "ICA-AtoM Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ica-atom-user...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/93a03d1b-53ac-45ab-b118-0ccba093d32a%40googlegroups.com.
You received this message because you are subscribed to a topic in the Google Groups "ICA-AtoM Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/ica-atom-users/lahjlMpHoko/unsubscribe.
To unsubscribe from this group and all its topics, send an email to ica-atom-user...@googlegroups.com.
To post to this group, send email to ica-ato...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/CAC1FhZJHnhj9eDsvi749mBPaTMLKPVBbbofPrP5kdUieM4gZ8A%40mail.gmail.com.
I think WAMP does not come with PDO extension enabled by default. Fortunately, WAMP includes a tray icon where you can enable PHP extensions easily. It should be there one called "PDO" or something.
I think the problem is with wamp 2.2. You can use wamp 2.1
Thanks for the info Clara. The latest 2.2d does not work, although I was able to get it installed using the earlier build 2.2a-p1-x32.
...you could try to turn on debug mode in installation to see what is really happening there. Go to web/install.php and where getApplicationConfiguration method is called, set third parameter as value true:
line 5: $configuration = ProjectConfiguration::getApplicationConfiguration('qubit', 'prod', true);
--
You received this message because you are subscribed to the Google Groups "ICA-AtoM Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ica-atom-user...@googlegroups.com.
To post to this group, send email to ica-ato...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/3f0ffb82-2c11-46e6-adff-bf17f13b787d%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/56eaa25c-b449-433c-83ef-8c15e48dc5ea%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/f7958e7d-d775-4761-a678-6b7cf26b7184%40googlegroups.com.