1 claudiocunha Sep 11, 2008 14:52
3 claudiocunha Sep 12, 2008 11:37
Walter wrote:
Esquisito cara, vou ver se arrumo um tempo pra dar uma olhadinha nisso, até amanhã.
OK THKS...
4 claudiocunha Sep 30, 2008 17:07
e então ainda nada...
estou mesmo aflitinho, e não preciso de "evacuar"...
se poder arranjar uma ajudinha, agradecido...
5 waltercruz Sep 30, 2008 19:20
Se deve a questões de retorno por referência do php5.
Sugestões:
Edite o /home/www/balsanovaascdr.freehostia.com/inc/collections/model/_blogcache.class.php
Substitua function & get_by_url (linha 99) Por function get_by_url (sem o &)
Em /home/www/balsanovaascdr.freehostia.com/inc/_core/model/dataobjects/_dataobjectcache.class.php, a linha 151, também retirando o & em function & new_obj( $row = NULL )
Creio que isso solucionará seu problema.
[]'s
- Walter
6 claudiocunha Oct 01, 2008 20:31
walter foi na muche...
mas dá-me agora esse erro:
Notice: Only variables should be assigned by reference in /home/www/balsanovaascdr.freehostia.com/index.php on line 59
Warning: Cannot modify header information - headers already sent by (output started at /home/www/balsanovaascdr.freehostia.com/index.php:59) in /home/www/balsanovaascdr.freehostia.com/inc/skins/_skin.funcs.php on line 379
Notice: Only variable references should be returned by reference in /home/www/balsanovaascdr.freehostia.com/inc/_core/model/dataobjects/_dataobjectlist2.class.php on line 195
Notice: Only variable references should be returned by reference in /home/www/balsanovaascdr.freehostia.com/inc/items/model/_itemlist.class.php on line 298
7 waltercruz Oct 01, 2008 21:03
O ideal seria vc poder mudar a configuração do php.ini e colocar allow_call_time_pass_reference como Off. Isso resolveria o problema.
Sem isso, você precisa tirar o & antes das definições de funções.
As que são ditas aí, são em
_dataobject2.class.php em function & get_next() (linha 187) (mas tem mais funções nesse arquivo)
e em _itemlist.class.php na função get_item
Uma opção simples seria desabilitar o reporte de erros no nivel notice e warning.
Para isso, em conf/_advanced.php, onde tem:
error_reporting( E_ALL );
Substitua por
error_reporting( E_ALL & ~E_NOTICE| E_WARNING );
De um toque quando estiver tudo ok!
8 claudiocunha Oct 02, 2008 11:55
ficou um brinquinho... muito obrigado...
espero não chatear mais...
:oops:
9 waltercruz Oct 02, 2008 15:24
Sem problema, não é uma chateação não!
Esquisito cara, vou ver se arrumo um tempo pra dar uma olhadinha nisso, até amanhã.