61
Nick_James
Re: IE Explorer error

I think we were on 2.5.1. There is some way to get a list of all settings, but I can't find it right now.



62
Nick_James
Re: IE Explorer error

It was the spider module. currently deactivated.

Just upgraded to 2.5.4

Getting this error (before and after) on the Blog module.

Warning: Call-time pass-by-reference has been deprecated in /home/content/D/a/m/Damselfly/html/modules/blog/include/xpress_block_render.php on line 37

Warning: Call-time pass-by-reference has been deprecated in /home/content/D/a/m/Damselfly/html/modules/blog/include/xpress_block_render.php on line 39

Warning: Call-time pass-by-reference has been deprecated in /home/content/D/a/m/Damselfly/html/modules/blog/include/xpress_block_header.php on line 38

Warning: Call-time pass-by-reference has been deprecated in /home/content/D/a/m/Damselfly/html/modules/blog/include/xpress_block_header.php on line 40



63
Nick_James
Re: IE Explorer error

Good point. Now where do I find all that information again... :(



64
Nick_James
Re: IE Explorer error

line 125
$_SESSION['xoopsUserGroups'] = $GLOBALS['xoopsUser']->getGroups();
Nicholas James
President - LaDads
www.ladads.info



65
Nick_James
IE Explorer error

Site works in Firefox and Safari. Not in IE.

IE gives a Fatal error: Call to a member function getGroups() on a non-object
in ... modules/spiders/post.loader.spiders.php on line 125.



66
Nick_James
Re: How to change email address of my profile?

or just make a new account...



67
Nick_James
Re: Xpressme/Wordpress Author Submission

Not sure. Just started using XPressME. I'll have to look into it.



68
Nick_James
Re: Problems with the integrated Banner system

I have a similar issue on my system. The banner ad displays an error.

No referer detected



69
Nick_James
Re: XPressMe intallation question

Well

if ( strstr($xml_data, '<?xml version="1.0" encoding="EUC-JP" ?>') !== false
&& version_compare(PHP_VERSION, '5.0.0', '>') )
{
$xml_data = str_replace('<?xml version="1.0" encoding="EUC-JP" ?>', '<?xml version="1.0" encoding="UTF-8" ?>', $xml_data);
$ans = mb_convert_variables('UTF-8' , 'EUC-JP', &$xml_data); //EUC-JP to UTF-8
$ret = @xpress_XML_unserialize($xml_data);
$ans = mb_convert_variables('EUC-JP' , 'UTF-8', &$ret); //UTF-8 to EUC-JP
} else {
$ret = xpress_XML_unserialize($xml_data);
}
return $ret;

to (deleted two &)

if ( strstr($xml_data, '<?xml version="1.0" encoding="EUC-JP" ?>') !== false
&& version_compare(PHP_VERSION, '5.0.0', '>') )
{
$xml_data = str_replace('<?xml version="1.0" encoding="EUC-JP" ?>', '<?xml version="1.0" encoding="UTF-8" ?>', $xml_data);
$ans = mb_convert_variables('UTF-8' , 'EUC-JP', $xml_data); //EUC-JP to UTF-8
$ret = @xpress_XML_unserialize($xml_data);
$ans = mb_convert_variables('EUC-JP' , 'UTF-8', $ret); //UTF-8 to EUC-JP
} else {
$ret = xpress_XML_unserialize($xml_data);
}
return $ret;


and same song in the other file. Delete the & from the &$


if ( strstr($xml_data, '<?xml version="1.0" encoding="EUC-JP" ?>') !== false
&& version_compare(PHP_VERSION, '5.0.0', '>') )
{
$xml_data = str_replace('<?xml version="1.0" encoding="EUC-JP" ?>', '<?xml version="1.0" encoding="UTF-8" ?>', $xml_data);
$ans = mb_convert_variables('UTF-8' , 'EUC-JP', &$xml_data); //EUC-JP to UTF-8
$ret = @xpress_XML_unserialize($xml_data);
$ans = mb_convert_variables('EUC-JP' , 'UTF-8', &$ret); //UTF-8 to EUC-JP
} else {
$ret = xpress_XML_unserialize($xml_data);
}
return $ret;

to

if ( strstr($xml_data, '<?xml version="1.0" encoding="EUC-JP" ?>') !== false
&& version_compare(PHP_VERSION, '5.0.0', '>') )
{
$xml_data = str_replace('<?xml version="1.0" encoding="EUC-JP" ?>', '<?xml version="1.0" encoding="UTF-8" ?>', $xml_data);
$ans = mb_convert_variables('UTF-8' , 'EUC-JP', $xml_data); //EUC-JP to UTF-8
$ret = @xpress_XML_unserialize($xml_data);
$ans = mb_convert_variables('EUC-JP' , 'UTF-8', $ret); //UTF-8 to EUC-JP
} else {
$ret = xpress_XML_unserialize($xml_data);
}
return $ret;



70
Nick_James
Re: XPressMe intallation question

Resizing a graphic.

We put in a test graphic - a chicken - and it will not resize. In the basic word press blog setup, we can grab the graphic and resize it to any size.

In the XPressME XOOPS installation of the same software, the chicken will not resize.

Any idea as to what code controls the resizing of the chicken?




TopTop
« 1 ... 4 5 6 (7) 8 9 10 ... 33 »



Login

Who's Online

256 user(s) are online (159 user(s) are browsing Support Forums)


Members: 0


Guests: 256


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits