uploading editam to production server

0 views
Skip to first unread message

ovihc

unread,
Oct 24, 2007, 3:31:22 AM10/24/07
to Editam Content Management Platform
Hi,

I have build an application with Editam on my own computer. I'm using
a macbook with MAMP.

The only way I have access to the production server is through ftp. It
is a hosting company in the netherlands. I can create a database
through Plesk. I'm in the netherlands, so I don't know if this is the
standard everywhere. I have checked that all the information I'm
typing is correct, so I believe it is something with Editam that is
the problem.

The steps:

1.)

I upload a fresh new copy of Editam into the server through ftp, then
I access the installation on the production server through the xxxx.nl/
admin . The problem is that when I get to the page where is asks me
about enetering my ftp settings, none of the settings work. I am
typing them correctly but it doesn't establish a connection. Either
way, I think it is weird to setup an ftp account on the production
server when the files that it needs to change are on the server
itself.

2.)

That step doesn't work so I choose "skip this step". I forgot what it
is says exxactly. I then enter the settings for locales, and then the
admin username and password.

3.)

Then, when it takes me to the final page (the one where I think
creates the tables in the DB), nothing happens. I don't get anymore
messages and nothing is installed. If I go back to xxxx.nl/admin, I
again get the option of setting up the website. If i go to the
xxxx.nl/ , i dont get the "Editam" installation was complete page.


So my understanding is that the problem is that Editam cannot write
files to the server. If this is the case, then what do I need to do?

I'm a bit confused about this because when I use Cakephp, I upload my
work to the production server and change a configuration file and the
paths in it, and that's about it.

So how can I get this working? Should I:

a.) upload my working copy INSTEAD of uploading a new copy to the
server? I have all the contents in the DB so I figured this would be
the best option.

Message has been deleted

ovihc

unread,
Oct 24, 2007, 3:48:55 AM10/24/07
to Editam Content Management Platform
I also have to say that when I install the same revision in my
macbook
locally, it works. I dont even get the whole "setup an ftp account"
choice. The problem is only that I'm setting it up in the host
companie's server.

The host server is runnning as user apache. In my local installation
with MAMP, I have everything setup as my username so I guess that's
why it works. Are there some settings that I need to change on the
server installation?


This is the order of the installation in my local computer:
1 - Please select a database type (i choose mysql)
2 - Please set your database details
3 - Please set your language details
4 - Set your site details
5 - Welcome to your new Editam Site.


In the production server, it's like this:
(*mysql is automatically chose)
1 - Please set your database details
2 - Setup an ftp account (I have to skip this step)
3 - Please set your language details
4 - Set your site details
5 - Nothing happens. stops. nothing is setup and DB is empty.

edward

unread,
Oct 26, 2007, 5:59:02 AM10/26/07
to Editam Content Management Platform
Contents of config.php.txt

<?php


if(!defined('AK_CONFIG_INCLUDED')){
echo '1.- AK_CONFIG_INCLUDED is not defined <br />';

if(!file_exists('config'.DIRECTORY_SEPARATOR.'config.php')){
echo '2.- could not find /config/config.php <br />';
define('AK_ENVIRONMENT', 'setup');

require('includes'.DIRECTORY_SEPARATOR.'editam'.DIRECTORY_SEPARATOR.'controllers'.DIRECTORY_SEPARATOR.'editam_setup_controller.php');
exit;
}else{
echo '3.- config/config.php WAS found <br />';
if(!include_once('config'.DIRECTORY_SEPARATOR.'config.php'))
echo '4.- config/config.php was included <br />';
else echo '4.- config/config.php WAS NOT included <br />';
if(EDITAM_CACHE_ENABLED)
echo '5.- EDITAM_CACHE_ENABLED is true <br />';
else echo '5.- EDITAM_CACHE_ENABLED is false <br />';
session_start();

if(EDITAM_CACHE_ENABLED && empty($_POST) &&
empty($_SESSION['__credentials']) ){
echo '6.- EDITAM CACHE is enabled <br />';
$Cache =& Ak::cache();
$Cache->init(EDITAM_CACHE_LIFE);
$cache_group = AK_HOST;
$cache_id = Ak::lang().'-'.@$_GET['ak'];

if($cached = $Cache->get($cache_id, $cache_group)){
echo '7.- CACHE is from database <br />';
if(EDITAM_COMPRESS_OUTPUT &&
function_exists('ob_gzhandler') &&
preg_match('/gzip|deflate/', @
$_SERVER['HTTP_ACCEPT_ENCODING'])){
ob_start('ob_gzhandler');
}

list($headers, $cached) = split('~~',$cached,2);
$headers = unserialize($headers);
header('Status: HTTP/1.1 304 Not Modified');
foreach ($headers as $header){
header($header);
}
echo '8.- This is $cached'.$cached;
exit;
}
}echo '9.- EDITAM CACHE is not enabled <br />';
}echo '10.- we are past the if-else statements <br />';
}

require_once(AK_LIB_DIR.DS.'AkDispatcher.php');
$Dispatcher =& new AkDispatcher();
$Dispatcher->dispatch();
echo '11.- The end of index.php <br />';
?>


/*******************************/

1.- AK_CONFIG_INCLUDED is not defined
3.- config/config.php WAS found
4.- config/config.php WAS NOT included
5.- EDITAM_CACHE_ENABLED is true
6.- EDITAM CACHE is enabled
9.- EDITAM CACHE is not enabled
10.- we are past the if-else statements
--->Please change file/dir permissions or enable FTP file handling by
setting the following on your config/production.php file
define('AK_UPLOAD_FILES_USING_FTP', true);
define('AK_READ_FILES_USING_FTP', false);
define('AK_DELETE_FILES_USING_FTP', true);
define('AK_FTP_PATH', 'ftp://username:pass...@example.com/
path_to_the_framework');
define('AK_FTP_AUTO_DISCONNECT', true);
11.- The end of index.php

edward

unread,
Oct 26, 2007, 6:30:14 AM10/26/07
to Editam Content Management Platform
I put in comments in the config.php file like 'echo 'reading
config.php file'; and they did output. So that means that the
config.php file is being read which means it's being loaded. The other
part of the index.php file that is not executing is this:

if(EDITAM_CACHE_ENABLED && empty($_POST) &&
empty($_SESSION['__credentials']) ){

I had earlier erased the whole /app/tmp directory contents, except I
left the folder 'cache' in it, as I remember that that dir should
stay.

What could b e the problem now? The table called cache in the DB is
empty. But so is the one from the working Editam installation in my
local computer.

edward

unread,
Oct 26, 2007, 6:37:44 AM10/26/07
to Editam Content Management Platform
I'm sorry, on the previous post, I should have pasted this instead:

if($cached = $Cache->get($cache_id, $cache_group)){

not the:

bermiferrer

unread,
Oct 26, 2007, 8:11:03 AM10/26/07
to Editam Content Management Platform

edward

unread,
Oct 29, 2007, 4:29:28 AM10/29/07
to Editam Content Management Platform
I have more information that might be valuable. I switched the
framework to development mode to get debug output, and this is what I
got.

----------------------------------first
paste--------------------------------
Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkObject.php on line
66

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionController.php
on line 263

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionController.php
on line 265

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionController.php
on line 1409

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionController.php
on line 1411

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionController.php
on line 1671

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionController.php
on line 1685

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionController.php
on line 1710

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionController.php
on line 1711

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionController.php
on line 1712

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionController.php
on line 1725

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionController.php
on line 1726

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionController.php
on line 1727

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionController.php
on line 1756

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionController.php
on line 1779

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of method_exists(). If you would like to enable call-time
pass-by-reference, you can set allow_call_time_pass_reference to true
in your INI file. However, future versions may not support this any
longer. in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/
lib/AkActionController.php on line 1889

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of method_exists(). If you would like to enable call-time
pass-by-reference, you can set allow_call_time_pass_reference to true
in your INI file. However, future versions may not support this any
longer. in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/
lib/AkActionController.php on line 1889

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of method_exists(). If you would like to enable call-time
pass-by-reference, you can set allow_call_time_pass_reference to true
in your INI file. However, future versions may not support this any
longer. in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/
lib/AkActionController.php on line 1929

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionController.php
on line 1967

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of aggregate_methods(). If you would like to enable call-
time pass-by-reference, you can set allow_call_time_pass_reference to
true in your INI file. However, future versions may not support this
any longer. in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/
akelos/lib/AkActiveRecord.php on line 1550

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActiveRecord.php on
line 4277

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActiveRecord.php on
line 4280

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActiveRecord.php on
line 4320

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionView.php on
line 113

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionView.php on
line 203

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActiveRecord/
AkActsAsNestedSet.php on line 134

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActiveRecord/
AkObserver.php on line 118

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActiveRecord/
AkObserver.php on line 136

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActiveRecord/
AkBelongsTo.php on line 130

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/editam/helpers/editags_helper.php
on line 201

Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set
allow_call_time_pass_reference to true in your INI file. However,
future versions may not support this any longer. in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/editam/helpers/editags_helper.php
on line 203

Warning: Cannot modify header information - headers already sent by
(output started at /var/www/vhosts/xxxxxx.xx/httpdocs/probando/
includes/akelos/lib/AkObject.php:66) in /var/www/vhosts/xxxxxx.xx/
httpdocs/probando/includes/akelos/lib/AkResponse.php on line 109

Warning: Cannot modify header information - headers already sent by
(output started at /var/www/vhosts/xxxxxx.xx/httpdocs/probando/
includes/akelos/lib/AkObject.php:66) in /var/www/vhosts/xxxxxx.xx/
httpdocs/probando/includes/akelos/lib/AkResponse.php on line 109

I did what the errors stated (which is to erase the &). After that, I
got even more output, but different:

----------------------------------second
paste--------------------------------
Warning: fopen(): SAFE MODE Restriction in effect. The script whose
uid is 10298 is not allowed to access /tmp/tmplbiWFz owned by uid 48
in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/lib/
AkFtp.php on line 45

Warning: fopen(/tmp/tmplbiWFz): failed to open stream: Success in /var/
www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkFtp.php
on line 45

Warning: fwrite(): supplied argument is not a valid stream resource
in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/lib/
AkFtp.php on line 46

Warning: fclose(): supplied argument is not a valid stream resource
in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/lib/
AkFtp.php on line 47

Warning: fopen(): SAFE MODE Restriction in effect. The script whose
uid is 10298 is not allowed to access /tmp/tmplbiWFz owned by uid 48
in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/lib/
AkFtp.php on line 49

Warning: fopen(/tmp/tmplbiWFz): failed to open stream: Success in /var/
www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkFtp.php
on line 49

Warning: ftp_fput() expects parameter 3 to be resource, boolean given
in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/lib/
AkFtp.php on line 50

Warning: fclose(): supplied argument is not a valid stream resource
in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/lib/
AkFtp.php on line 52

Warning: unlink(): SAFE MODE Restriction in effect. The script whose
uid is 10298 is not allowed to access /tmp/tmplbiWFz owned by uid 48
in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/lib/
AkFtp.php on line 53

Warning: fopen(): SAFE MODE Restriction in effect. The script whose
uid is 10298 is not allowed to access /tmp/tmpU8o984 owned by uid 48
in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/lib/
AkFtp.php on line 45

Warning: fopen(/tmp/tmpU8o984): failed to open stream: Success in /var/
www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkFtp.php
on line 45

Warning: fwrite(): supplied argument is not a valid stream resource
in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/lib/
AkFtp.php on line 46

Warning: fclose(): supplied argument is not a valid stream resource
in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/lib/
AkFtp.php on line 47

Warning: fopen(): SAFE MODE Restriction in effect. The script whose
uid is 10298 is not allowed to access /tmp/tmpU8o984 owned by uid 48
in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/lib/
AkFtp.php on line 49

Warning: fopen(/tmp/tmpU8o984): failed to open stream: Success in /var/
www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkFtp.php
on line 49

Warning: ftp_fput() expects parameter 3 to be resource, boolean given
in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/lib/
AkFtp.php on line 50

Warning: fclose(): supplied argument is not a valid stream resource
in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/lib/
AkFtp.php on line 52

Warning: unlink(): SAFE MODE Restriction in effect. The script whose
uid is 10298 is not allowed to access /tmp/tmpU8o984 owned by uid 48
in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/akelos/lib/
AkFtp.php on line 53

Warning: Cannot modify header information - headers already sent by
(output started at /var/www/vhosts/xxxxxx.xx/httpdocs/probando/
includes/akelos/lib/AkFtp.php:45) in /var/www/vhosts/xxxxxx.xx/
httpdocs/probando/includes/akelos/lib/AkResponse.php on line 109

Warning: Cannot modify header information - headers already sent by
(output started at /var/www/vhosts/xxxxxx.xx/httpdocs/probando/
includes/akelos/lib/AkFtp.php:45) in /var/www/vhosts/xxxxxx.xx/
httpdocs/probando/includes/akelos/lib/AkResponse.php on line 109

Warning: Cannot modify header information - headers already sent by
(output started at /var/www/vhosts/xxxxxx.xx/httpdocs/probando/
includes/akelos/lib/AkFtp.php:45) in /var/www/vhosts/xxxxxx.xx/
httpdocs/probando/includes/akelos/lib/AkResponse.php on line 114

Warning: render(): Unable to access /var/www/vhosts/xxxxxx.xx/httpdocs/
probando/includes/tmp/views/includes/editam/views/layouts/compiled/
login.tpl.php in /var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/
akelos/lib/AkActionView/AkPhpTemplateHandler.php on line 71

Warning: render(/var/www/vhosts/xxxxxx.xx/httpdocs/probando/includes/
tmp/views/includes/editam/views/layouts/compiled/login.tpl.php):
failed to open stream: No such file or directory in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionView/
AkPhpTemplateHandler.php on line 71

Warning: render(): Failed opening '/var/www/vhosts/xxxxxx.xx/httpdocs/
probando/includes/tmp/views/includes/editam/views/layouts/compiled/
login.tpl.php' for inclusion (include_path='/var/www/vhosts/xxxxxx.xx/
httpdocs/probando/includes/akelos/lib:/var/www/vhosts/xxxxxx.xx/
httpdocs/probando/includes/editam/models:/var/www/vhosts/xxxxxx.xx/
httpdocs/probando/includes/akelos/vendor/pear:.:') in /var/www/vhosts/
xxxxxx.xx/httpdocs/probando/includes/akelos/lib/AkActionView/
AkPhpTemplateHandler.php on line 71


It seems to me that somehow it is writing to the server's /tmp folder,
and then can't read it because when the file was created, it was
created with the server's user permission. And the ftp settings cannot
access /tmp of course.

I hope this information helps.

Reply all
Reply to author
Forward
0 new messages