Re: [CentOS-es] Migración de CentOS 6 a CentOS 7 - web php

2017-01-08 Por tema Wilmer Arambula
Te recomiendo invertir en actualizar tu web a php usando un framework como
yii2, laravell o simphony MVC, así evitas estos problemas, o utiliza la
antigua que aplican los de sistemas para que cambiar algo que ya funciona,

Saludos,

El 8/1/2017 16:27, "angel jauregui"  escribió:

> @Alex
>
> Buen dia tu problema no esta en los paquetes ni la instaalcion de tu
> CentOS, tu servidor esta bien ya deja de darle vueltas a eso.
>
> Tu problema es la sintaxis de programación que usaste, te recomiendo
> pruebes cambiar tu código, ya lo revise y te le hice un cambio que espero
> te sirva de *idea* para que sepas lo que debes corregir:
>
> *$hotels = "SELECT h.*,c.n_name as ciudad FROM hoteles h, city
> c WHERE h.n_lang = ".$_SESSION['idioma_id']." AND c.n_id = h.n_city AND
> h.n_lang = c.n_lang";*
> *$hotels = mysql_query($hotels);*
> * #   while($row = mysql_fetch_assoc($hotels)){*
> * #   $results[] = $row;*
> * #   }*
>
> *#foreach($results as $hotel){*
> *while( $hotel= mysql_fetch_array($hotels) ) {*
> *$SqlOfertas = "SELECT o.* FROM ofertashoteles oh, ofertas
> o WHERE oh.n_hotel = ".$hotel['n_id']." AND oh.n_oferta = o.n_id AND
> o.n_lang = ".$_SESSION['idioma_id'];*
> *$rsOfertas = mysql_query( $SqlOfertas);*
> *$ofertas = [];*
>
> *if($_SESSION['idioma'] == 'ru'){*
> *$idioma_busqueda  = "SELECT la_id FROM languages WHERE
> la_abbreviation = 'en' LIMIT 1";*
> *$idioma_busqueda = mysql_query($idioma_busqueda);*
> *$idioma_busqueda =
> mysql_fetch_object($idioma_busqueda);*
>
> *$name_hotel = "SELECT h.*,c.n_name as ciudad FROM
> hoteles h, city c WHERE h.n_lang = ".$idioma_busqueda->la_id." AND c.n_id =
> h.n_city AND h.n_lang = c.n_lang AND h.n_id = ".$hotel['n_id'];*
> *$name_hotel = mysql_query($name_hotel);*
> *$name_hotel = mysql_fetch_object($name_hotel);*
> *$hotel['n_name'] = $name_hotel->n_name;*
> *$hotel['tag_city'] = $hotel['ciudad'];*
> *$hotel['ciudad'] = $name_hotel->ciudad;*
> *}else{*
> *$hotel['tag_city'] = $hotel['ciudad'];*
> *}*
>
> Saludos !
>
>
> El 8 de enero de 2017, 12:19, Alex ( Servtelecom ) <
> alex.and...@servtelecom.com> escribió:
>
> > con o sin @ saca el mismo error, en los log's del apache también hace lo
> > mismo ;(
> >
> > Firma Alexandre Andreu Cases - Servtelecom
> > El 08/01/17 a las 11:09, Camilo Sperberg escribió:
> >
> > Saca la arroba y de esa forma php no silenciará el error. Con eso podemos
> >> saber qué pasa.
> >>
> >> Sent from my iPhone 7 Beta [Confidential use only]
> >>
> >> On 8 Jan 2017, at 10:26, Alex ( Servtelecom ) <
> >>> alex.and...@servtelecom.com> wrote:
> >>>
> >>> while(@$row = mysql_fetch_assoc($hotels)){
> >>> $results[] = $row;
> >>>
> >> ___
> >> CentOS-es mailing list
> >> CentOS-es@centos.org
> >> https://lists.centos.org/mailman/listinfo/centos-es
> >>
> >
> > ___
> > CentOS-es mailing list
> > CentOS-es@centos.org
> > https://lists.centos.org/mailman/listinfo/centos-es
> >
>
>
>
> --
> M.S.I. Angel Haniel Cantu Jauregui.
>
> Celular: (011-52-1)-899-871-17-22
> E-Mail: angel.ca...@sie-group.net
> Web: http://www.sie-group.net/
> Cd. Reynosa Tamaulipas.
> ___
> CentOS-es mailing list
> CentOS-es@centos.org
> https://lists.centos.org/mailman/listinfo/centos-es
>
___
CentOS-es mailing list
CentOS-es@centos.org
https://lists.centos.org/mailman/listinfo/centos-es


Re: [CentOS-es] Migración de CentOS 6 a CentOS 7 - web php

2017-01-08 Por tema angel jauregui
@Alex

Buen dia tu problema no esta en los paquetes ni la instaalcion de tu
CentOS, tu servidor esta bien ya deja de darle vueltas a eso.

Tu problema es la sintaxis de programación que usaste, te recomiendo
pruebes cambiar tu código, ya lo revise y te le hice un cambio que espero
te sirva de *idea* para que sepas lo que debes corregir:

*$hotels = "SELECT h.*,c.n_name as ciudad FROM hoteles h, city
c WHERE h.n_lang = ".$_SESSION['idioma_id']." AND c.n_id = h.n_city AND
h.n_lang = c.n_lang";*
*$hotels = mysql_query($hotels);*
* #   while($row = mysql_fetch_assoc($hotels)){*
* #   $results[] = $row;*
* #   }*

*#foreach($results as $hotel){*
*while( $hotel= mysql_fetch_array($hotels) ) {*
*$SqlOfertas = "SELECT o.* FROM ofertashoteles oh, ofertas
o WHERE oh.n_hotel = ".$hotel['n_id']." AND oh.n_oferta = o.n_id AND
o.n_lang = ".$_SESSION['idioma_id'];*
*$rsOfertas = mysql_query( $SqlOfertas);*
*$ofertas = [];*

*if($_SESSION['idioma'] == 'ru'){*
*$idioma_busqueda  = "SELECT la_id FROM languages WHERE
la_abbreviation = 'en' LIMIT 1";*
*$idioma_busqueda = mysql_query($idioma_busqueda);*
*$idioma_busqueda =
mysql_fetch_object($idioma_busqueda);*

*$name_hotel = "SELECT h.*,c.n_name as ciudad FROM
hoteles h, city c WHERE h.n_lang = ".$idioma_busqueda->la_id." AND c.n_id =
h.n_city AND h.n_lang = c.n_lang AND h.n_id = ".$hotel['n_id'];*
*$name_hotel = mysql_query($name_hotel);*
*$name_hotel = mysql_fetch_object($name_hotel);*
*$hotel['n_name'] = $name_hotel->n_name;*
*$hotel['tag_city'] = $hotel['ciudad'];*
*$hotel['ciudad'] = $name_hotel->ciudad;*
*}else{*
*$hotel['tag_city'] = $hotel['ciudad'];*
*}*

Saludos !


El 8 de enero de 2017, 12:19, Alex ( Servtelecom ) <
alex.and...@servtelecom.com> escribió:

> con o sin @ saca el mismo error, en los log's del apache también hace lo
> mismo ;(
>
> Firma Alexandre Andreu Cases - Servtelecom
> El 08/01/17 a las 11:09, Camilo Sperberg escribió:
>
> Saca la arroba y de esa forma php no silenciará el error. Con eso podemos
>> saber qué pasa.
>>
>> Sent from my iPhone 7 Beta [Confidential use only]
>>
>> On 8 Jan 2017, at 10:26, Alex ( Servtelecom ) <
>>> alex.and...@servtelecom.com> wrote:
>>>
>>> while(@$row = mysql_fetch_assoc($hotels)){
>>> $results[] = $row;
>>>
>> ___
>> CentOS-es mailing list
>> CentOS-es@centos.org
>> https://lists.centos.org/mailman/listinfo/centos-es
>>
>
> ___
> CentOS-es mailing list
> CentOS-es@centos.org
> https://lists.centos.org/mailman/listinfo/centos-es
>



-- 
M.S.I. Angel Haniel Cantu Jauregui.

Celular: (011-52-1)-899-871-17-22
E-Mail: angel.ca...@sie-group.net
Web: http://www.sie-group.net/
Cd. Reynosa Tamaulipas.
___
CentOS-es mailing list
CentOS-es@centos.org
https://lists.centos.org/mailman/listinfo/centos-es


Re: [CentOS-es] Migración de CentOS 6 a CentOS 7 - web php

2017-01-08 Por tema Alex ( Servtelecom )
con o sin @ saca el mismo error, en los log's del apache también hace lo 
mismo ;(


Firma Alexandre Andreu Cases - Servtelecom
El 08/01/17 a las 11:09, Camilo Sperberg escribió:

Saca la arroba y de esa forma php no silenciará el error. Con eso podemos saber 
qué pasa.

Sent from my iPhone 7 Beta [Confidential use only]


On 8 Jan 2017, at 10:26, Alex ( Servtelecom )  
wrote:

while(@$row = mysql_fetch_assoc($hotels)){
$results[] = $row;

___
CentOS-es mailing list
CentOS-es@centos.org
https://lists.centos.org/mailman/listinfo/centos-es


___
CentOS-es mailing list
CentOS-es@centos.org
https://lists.centos.org/mailman/listinfo/centos-es


Re: [CentOS-es] Migración de CentOS 6 a CentOS 7 - web php

2017-01-08 Por tema Ricardo

+ 1 con Cheperobert


Ricardo

> El 8 ene 2017, a las 17:14, José Roberto Alas  
> escribió:
> 
> El 8 de enero de 2017, 03:26, Alex ( Servtelecom )
>  escribió:
>> he comparado con un info del php y todo esta igual, linea por linea así que
>> cada vez lo entiendo menos. os plasmo el código php que falla, si quito este
>> código funciona pero lógicamente falta un trozo de la web jejeje! así que
>> aquí esta la resolución de parte de mi problema, que modulo o que se me
>> escapa del php.ini o del vhost para que funcione este código
>> 
>> code:
>> 
>>
>>
>>> href="./">
>>> class="active">
>>
>> 
>>
>>> 
>>$hotels = "SELECT h.*,c.n_name as ciudad FROM hoteles h, city c
>> WHERE h.n_lang = ".$_SESSION['idioma_id']." AND c.n_id = h.n_city AND
>> h.n_lang = c.n_lang";
>>$hotels = mysql_query($hotels);
>>while(@$row = mysql_fetch_assoc($hotels)){
>>$results[] = $row;
>>}
>> 
>>foreach($results as $hotel){
>>$SqlOfertas = "SELECT o.* FROM ofertashoteles oh, ofertas o
>> WHERE oh.n_hotel = ".$hotel['n_id']." AND oh.n_oferta = o.n_id AND o.n_lang
>> = ".$_SESSION['idioma_id'];
>>$rsOfertas = mysql_query( $SqlOfertas);
>>$ofertas = [];
>> 
>>if($_SESSION['idioma'] == 'ru'){
>>$idioma_busqueda  = "SELECT la_id FROM languages WHERE
>> la_abbreviation = 'en' LIMIT 1";
>>$idioma_busqueda = mysql_query($idioma_busqueda);
>>$idioma_busqueda = mysql_fetch_object($idioma_busqueda);
>> 
>>$name_hotel = "SELECT h.*,c.n_name as ciudad FROM
>> hoteles h, city c WHERE h.n_lang = ".$idioma_busqueda->la_id." AND c.n_id =
>> h.n_city AND h.n_lang = c.n_lang AND h.n_id = ".$hotel['n_id'];
>>$name_hotel = mysql_query($name_hotel);
>>$name_hotel = mysql_fetch_object($name_hotel);
>>$hotel['n_name'] = $name_hotel->n_name;
>>$hotel['tag_city'] = $hotel['ciudad'];
>>$hotel['ciudad'] = $name_hotel->ciudad;
>>}else{
>>$hotel['tag_city'] = $hotel['ciudad'];
>>}
>> 
>>while(@$wekk = mysql_fetch_assoc($rsOfertas)){
>>$ofertas[] = $wekk;
>>}
>> 
>> 
>>$SqlOfertasImg = 'select * from images WHERE img_ruta =
>> "hoteles_head_image" and img_product = '.$hotel['n_id'].' order by img_order
>> asc';
>>$rsOfertasImg = mysql_query( $SqlOfertasImg);
>>$oSqlOfertasImg = mysql_fetch_object($rsOfertasImg);
>> 
>>?>
>>
>> 
>>
>>>if( !$oSqlOfertasImg ){
>>echo '> alt="'.$oSqlOfertas->n_name.'" title="'.$oSqlOfertas->n_name.'">';
>>}else{
>>echo '> src="images/hoteles/'.$oSqlOfertasImg->img_file.'"
>> alt="'.$oSqlOfertas->n_name.'" title="'.$oSqlOfertas->n_name.'">';
>>}
>>?>
>>
>> 
>>
>>
>>
>>
>>
>>
>>> style="vertical-align: top;text-align: right;display: block;">> look_tag_return('tag_hotel_hotel',$_SESSION['idioma_id'],'hotel').'
>> '.$hotel['n_name']; ?>
>>
>>> style="padding-right: 0; padding-top: 19px; right: 0;">
>>
>>
>>
>>
>>
>>
>>
>>
>>>$oferta_final = '';
>>foreach($ofertas as $oferta){ ?>
>>> id="article" tabindex="-1" role="dialog"
>> aria-labelledby="myModalLabel">
>>
>>
>>
>>> data-dismiss="modal" aria-label="Close">> aria-hidden="true">×
>>> id="myModalLabel">> look_tag_return('tag_hotel_hotel',$_SESSION['idioma_id'],'hotel').'
>> '.$hotel['n_name']; ?>
>>
>>
>>> ?>
>>
>>
>>
>>
>>
>>  

Re: [CentOS-es] Migración de CentOS 6 a CentOS 7 - web php

2017-01-08 Por tema José Roberto Alas
El 8 de enero de 2017, 03:26, Alex ( Servtelecom )
 escribió:
> he comparado con un info del php y todo esta igual, linea por linea así que
> cada vez lo entiendo menos. os plasmo el código php que falla, si quito este
> código funciona pero lógicamente falta un trozo de la web jejeje! así que
> aquí esta la resolución de parte de mi problema, que modulo o que se me
> escapa del php.ini o del vhost para que funcione este código
>
> code:
>
> 
> 
>  href="./">
>  class="active">
> 
>
> 
> 
> $hotels = "SELECT h.*,c.n_name as ciudad FROM hoteles h, city c
> WHERE h.n_lang = ".$_SESSION['idioma_id']." AND c.n_id = h.n_city AND
> h.n_lang = c.n_lang";
> $hotels = mysql_query($hotels);
> while(@$row = mysql_fetch_assoc($hotels)){
> $results[] = $row;
> }
>
> foreach($results as $hotel){
> $SqlOfertas = "SELECT o.* FROM ofertashoteles oh, ofertas o
> WHERE oh.n_hotel = ".$hotel['n_id']." AND oh.n_oferta = o.n_id AND o.n_lang
> = ".$_SESSION['idioma_id'];
> $rsOfertas = mysql_query( $SqlOfertas);
> $ofertas = [];
>
> if($_SESSION['idioma'] == 'ru'){
> $idioma_busqueda  = "SELECT la_id FROM languages WHERE
> la_abbreviation = 'en' LIMIT 1";
> $idioma_busqueda = mysql_query($idioma_busqueda);
> $idioma_busqueda = mysql_fetch_object($idioma_busqueda);
>
> $name_hotel = "SELECT h.*,c.n_name as ciudad FROM
> hoteles h, city c WHERE h.n_lang = ".$idioma_busqueda->la_id." AND c.n_id =
> h.n_city AND h.n_lang = c.n_lang AND h.n_id = ".$hotel['n_id'];
> $name_hotel = mysql_query($name_hotel);
> $name_hotel = mysql_fetch_object($name_hotel);
> $hotel['n_name'] = $name_hotel->n_name;
> $hotel['tag_city'] = $hotel['ciudad'];
> $hotel['ciudad'] = $name_hotel->ciudad;
> }else{
> $hotel['tag_city'] = $hotel['ciudad'];
> }
>
> while(@$wekk = mysql_fetch_assoc($rsOfertas)){
> $ofertas[] = $wekk;
> }
>
>
> $SqlOfertasImg = 'select * from images WHERE img_ruta =
> "hoteles_head_image" and img_product = '.$hotel['n_id'].' order by img_order
> asc';
> $rsOfertasImg = mysql_query( $SqlOfertasImg);
> $oSqlOfertasImg = mysql_fetch_object($rsOfertasImg);
>
> ?>
> 
>
> 
>  if( !$oSqlOfertasImg ){
> echo ' alt="'.$oSqlOfertas->n_name.'" title="'.$oSqlOfertas->n_name.'">';
> }else{
> echo ' src="images/hoteles/'.$oSqlOfertasImg->img_file.'"
> alt="'.$oSqlOfertas->n_name.'" title="'.$oSqlOfertas->n_name.'">';
> }
> ?>
> 
>
> 
> 
> 
> 
> 
> 
>  style="vertical-align: top;text-align: right;display: block;"> look_tag_return('tag_hotel_hotel',$_SESSION['idioma_id'],'hotel').'
> '.$hotel['n_name']; ?>
> 
>  style="padding-right: 0; padding-top: 19px; right: 0;">
> 
> 
> 
> 
> 
> 
> 
> 
>  $oferta_final = '';
> foreach($ofertas as $oferta){ ?>
>  id="article" tabindex="-1" role="dialog"
> aria-labelledby="myModalLabel">
> 
> 
> 
>  data-dismiss="modal" aria-label="Close"> aria-hidden="true">×
>  id="myModalLabel"> look_tag_return('tag_hotel_hotel',$_SESSION['idioma_id'],'hotel').'
> '.$hotel['n_name']; ?>
> 
> 
>  ?>
> 
> 
> 
> 
> 
>   class="badge" data-toggle="modal"
> data-target="#article">+Info
>  ?>*/ ?>
> 

Re: [CentOS-es] Migración de CentOS 6 a CentOS 7 - web php

2017-01-08 Por tema Camilo Sperberg
Saca la arroba y de esa forma php no silenciará el error. Con eso podemos saber 
qué pasa. 

Sent from my iPhone 7 Beta [Confidential use only]

> On 8 Jan 2017, at 10:26, Alex ( Servtelecom )  
> wrote:
> 
> while(@$row = mysql_fetch_assoc($hotels)){
>$results[] = $row;
___
CentOS-es mailing list
CentOS-es@centos.org
https://lists.centos.org/mailman/listinfo/centos-es


Re: [CentOS-es] Migración de CentOS 6 a CentOS 7 - web php

2017-01-08 Por tema Alex ( Servtelecom )
he comparado con un info del php y todo esta igual, linea por linea así 
que cada vez lo entiendo menos. os plasmo el código php que falla, si 
quito este código funciona pero lógicamente falta un trozo de la web 
jejeje! así que aquí esta la resolución de parte de mi problema, que 
modulo o que se me escapa del php.ini o del vhost para que funcione este 
código


code:



href="./">
class="active"> 





$hotels = "SELECT h.*,c.n_name as ciudad FROM hoteles h, 
city c WHERE h.n_lang = ".$_SESSION['idioma_id']." AND c.n_id = h.n_city 
AND h.n_lang = c.n_lang";

$hotels = mysql_query($hotels);
while(@$row = mysql_fetch_assoc($hotels)){
$results[] = $row;
}

foreach($results as $hotel){
$SqlOfertas = "SELECT o.* FROM ofertashoteles oh, 
ofertas o WHERE oh.n_hotel = ".$hotel['n_id']." AND oh.n_oferta = o.n_id 
AND o.n_lang = ".$_SESSION['idioma_id'];

$rsOfertas = mysql_query( $SqlOfertas);
$ofertas = [];

if($_SESSION['idioma'] == 'ru'){
$idioma_busqueda  = "SELECT la_id FROM languages 
WHERE la_abbreviation = 'en' LIMIT 1";

$idioma_busqueda = mysql_query($idioma_busqueda);
$idioma_busqueda = 
mysql_fetch_object($idioma_busqueda);


$name_hotel = "SELECT h.*,c.n_name as ciudad FROM 
hoteles h, city c WHERE h.n_lang = ".$idioma_busqueda->la_id." AND 
c.n_id = h.n_city AND h.n_lang = c.n_lang AND h.n_id = ".$hotel['n_id'];

$name_hotel = mysql_query($name_hotel);
$name_hotel = mysql_fetch_object($name_hotel);
$hotel['n_name'] = $name_hotel->n_name;
$hotel['tag_city'] = $hotel['ciudad'];
$hotel['ciudad'] = $name_hotel->ciudad;
}else{
$hotel['tag_city'] = $hotel['ciudad'];
}

while(@$wekk = mysql_fetch_assoc($rsOfertas)){
$ofertas[] = $wekk;
}


$SqlOfertasImg = 'select * from images WHERE img_ruta = 
"hoteles_head_image" and img_product = '.$hotel['n_id'].' order by 
img_order asc';

$rsOfertasImg = mysql_query( $SqlOfertasImg);
$oSqlOfertasImg = mysql_fetch_object($rsOfertasImg);

?>



echo 'alt="'.$oSqlOfertas->n_name.'" title="'.$oSqlOfertas->n_name.'">';

}else{
echo 'src="images/hoteles/'.$oSqlOfertasImg->img_file.'" 
alt="'.$oSqlOfertas->n_name.'" title="'.$oSqlOfertas->n_name.'">';

}
?>


style="margin-left: 15px; margin-right:15px;">






style="vertical-align: top;text-align: right;display: block;">echo look_tag_return('tag_hotel_hotel',$_SESSION['idioma_id'],'hotel').' 
'.$hotel['n_name']; ?>


style="padding-right: 0; padding-top: 19px; right: 0;">










id="article" tabindex="-1" 
role="dialog" aria-labelledby="myModalLabel">




class="close" data-dismiss="modal" aria-label="Close">aria-hidden="true">×
id="myModalLabel">look_tag_return('tag_hotel_hotel',$_SESSION['idioma_id'],'hotel').' 
'.$hotel['n_name']; ?>



$oferta['n_description']; ?>






 class="badge" data-toggle="modal" 
data-target="#article">+Info
$oferta['n_description']; ?>*/ ?>



 

 







--

Firma Alexandre Andreu Cases - Servtelecom
El 08/01/17 a las 08:36, Ricardo escribió:

buenas,

algo se ha di