1
Nick_James
XPressMe intallation question

Hello, does XPressMe work with the latest version of Wordpress?

Okay, I downloaded XPressME_Integration_Kit_Ver2.4.1
(had to go to the authors site... in Japanese (: )

And then I downloaded the latest version of Wordpress-3.2.1

I then made a new folder called BLOG (how original)

I then put all of the files from the xpressme_integration_kit folder into this folder.

I then put all of the files from the wordpress folder into this folder.

When it complained about duplicates, I allowed it use the wordpress file.

I then modified the wp-config.php file to switch it to default to English

from
define ('WPLANG', 'ja'); // language support to Japanese
to
define ('WPLANG', ''); // language support to English

(okay, okay, so I did this later after it all came up in Japanese... ;) )

I then put the BLOG folder into the modules folder and uploaded it to the site.
and installed the module.

I then changed the XpressME integration settings to allow privileges for certain uses. I guess I need to make a group for BLOGGERS, and then use that to allow those who I want to blog in the location. I made the WEBMASTER2 group an administrator and as soon as I did, that person got privileges to post in the Wordpress blog... COOL !

Um, I had to change the display settings. I used translate.google.com with a cut and paste to translate the japanese words over to english.
Display Navi Title of Old Post Link Previous Post
Display Navi Title of Newer Post Link Next Post
Display Navi Title of Old Page Link Previous
Display Navi Title of Newer Page Link Next Page

I think that was it.

Before we go live with it, is there anything we have to watch out for?

I installed the Askimet and Jetpack pluggins.

So far, it looks fully functional (at least after I finished uploading the group of files that did not transfer up.)

Any issues?

www.ladads.info/modules/blog should bring it up.

2
Nick_James
Re: XPressMe intallation question

Oh, and I love the switch to go back and forth between the XOOPS view and the WORDPRESS view.

Any suggestions on how to set the themes so I don't give viewers themelash?

3
Nick_James
Re: XPressMe intallation question

Getting a 'deprecated' error in the block to put the most recent blog on the first page.

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

4
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?

5
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;

Login

Who's Online

130 user(s) are online (92 user(s) are browsing Support Forums)


Members: 0


Guests: 130


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