Foros del Web » Programando para Internet » PHP »

Error en pagina web subida !

Estas en el tema de Error en pagina web subida ! en el foro de PHP en Foros del Web. Hola buenas . Acabo de subir mi pagina aun no terminada y tengo un error de php. www.quemundotanloco.com como podeis ver estos son los errores ...
  #1 (permalink)  
Antiguo 01/08/2011, 16:39
Avatar de rgcrally2  
Fecha de Ingreso: marzo-2011
Mensajes: 15
Antigüedad: 13 años, 1 mes
Puntos: 0
Error en pagina web subida !

Hola buenas . Acabo de subir mi pagina aun no terminada y tengo un error de php.
www.quemundotanloco.com como podeis ver estos son los errores .


Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /homepages/7/d375501431/htdocs/configuration.php:1) in /homepages/7/d375501431/htdocs/libraries/joomla/session/session.php on line 412

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /homepages/7/d375501431/htdocs/configuration.php:1) in /homepages/7/d375501431/htdocs/libraries/joomla/session/session.php on line 412

Warning: Cannot modify header information - headers already sent by (output started at /homepages/7/d375501431/htdocs/configuration.php:1) in /homepages/7/d375501431/htdocs/libraries/joomla/session/session.php on line 415

no se a que se deben .

Otra cosa tambien es el password del superadministrador , no hay manera de entrar. He cambiado en la tabla jos_user en phpmyadmin y he puesto otra contraseña pero no hay manera.
  #2 (permalink)  
Antiguo 01/08/2011, 16:56
 
Fecha de Ingreso: febrero-2010
Mensajes: 818
Antigüedad: 14 años, 2 meses
Puntos: 55
Respuesta: Error en pagina web subida !

session_start() va al principio del archivo y con header no puede haber salida por el navegador antes de utilizarlo.
  #3 (permalink)  
Antiguo 01/08/2011, 17:01
Avatar de rgcrally2  
Fecha de Ingreso: marzo-2011
Mensajes: 15
Antigüedad: 13 años, 1 mes
Puntos: 0
Respuesta: Error en pagina web subida !

Perdona me lo podrias explicar porque no entiendo muy bien.... nose mucho de php la verdad , quiero solventar el problema . Espero tu respuesta gracias !
  #4 (permalink)  
Antiguo 01/08/2011, 17:25
Avatar de rgcrally2  
Fecha de Ingreso: marzo-2011
Mensajes: 15
Antigüedad: 13 años, 1 mes
Puntos: 0
Respuesta: Error en pagina web subida !

Esto es el archivo index.php

<?php
/**
* @version $Id: index.php 10381 2008-06-01 03:35:53Z pasamio $
* @package Joomla
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/

// Set flag that this is a parent file
define( '_JEXEC', 1 );

define('JPATH_BASE', dirname(__FILE__) );

define( 'DS', DIRECTORY_SEPARATOR );

require_once ( JPATH_BASE .DS.'includes'.DS.'defines.php' );
require_once ( JPATH_BASE .DS.'includes'.DS.'framework.php'Warning: session_start() );

JDEBUG ? $_PROFILER->mark( 'afterLoad' ) : null;

/**
* CREATE THE APPLICATION
*
* NOTE :
*/
$mainframe =& JFactory::getApplication('site');

/**
* INITIALISE THE APPLICATION
*
* NOTE :
*/
// set the language
$mainframe->initialise();

JPluginHelper::importPlugin('system');

// trigger the onAfterInitialise events
JDEBUG ? $_PROFILER->mark('afterInitialise') : null;
$mainframe->triggerEvent('onAfterInitialise');

/**
* ROUTE THE APPLICATION
*
* NOTE :
*/
$mainframe->route();

// authorization
$Itemid = JRequest::getInt( 'Itemid');
$mainframe->authorize($Itemid);

// trigger the onAfterRoute events
JDEBUG ? $_PROFILER->mark('afterRoute') : null;
$mainframe->triggerEvent('onAfterRoute');

/**
* DISPATCH THE APPLICATION
*
* NOTE :
*/
$option = JRequest::getCmd('option');
$mainframe->dispatch($option);

// trigger the onAfterDispatch events
JDEBUG ? $_PROFILER->mark('afterDispatch') : null;
$mainframe->triggerEvent('onAfterDispatch');

/**
* RENDER THE APPLICATION
*
* NOTE :
*/
$mainframe->render();

// trigger the onAfterRender events
JDEBUG ? $_PROFILER->mark('afterRender') : null;
$mainframe->triggerEvent('onAfterRender');

/**
* RETURN THE RESPONSE
*/
echo JResponse::toString($mainframe->getCfg('gzip'));
  #5 (permalink)  
Antiguo 01/08/2011, 17:37
Avatar de rgcrally2  
Fecha de Ingreso: marzo-2011
Mensajes: 15
Antigüedad: 13 años, 1 mes
Puntos: 0
Respuesta: Error en pagina web subida !

Bueno encontre la solucion -> http://www.youtube.com/watch?v=MksIFp6lYX4

Etiquetas: subida, tabla
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 20:31.