Index: trunk/xpressme_integration_kit/include/add_xpress_process.php
===================================================================
--- trunk/xpressme_integration_kit/include/add_xpress_process.php	(revision 475)
+++ trunk/xpressme_integration_kit/include/add_xpress_process.php	(revision 477)
@@ -36,7 +36,8 @@
 	//When notifying by a private message, Notification_reserve_send();
 	//it is evaded that the data base becomes read-only as a result of the check on the referrer and the method. 
+	$request_method =  (isset($_SERVER['REQUEST_METHOD'])) ? $_SERVER['REQUEST_METHOD'] : '';
 	$_SERVER['REQUEST_METHOD'] = 'POST';
-
 	require_once $xoops_config->xoops_mainfile_path; //It is necessary to execute it for the user attestation before wp-settings.php. 
+	$_SERVER['REQUEST_METHOD'] = $request_method;
 	unset($offset);
 	require_once(ABSPATH.'wp-settings.php');
Index: trunk/xpressme_integration_kit/include/set_cash_cookie_path.php
===================================================================
--- trunk/xpressme_integration_kit/include/set_cash_cookie_path.php	(revision 475)
+++ trunk/xpressme_integration_kit/include/set_cash_cookie_path.php	(revision 477)
@@ -8,5 +8,5 @@
  */
 if ( !defined('USER_COOKIE') )
-	define('USER_COOKIE', $modname . 'user_' . $hash);
+	define('USER_COOKIE', 'wordpress_' . $modname . 'user_' . $hash);
 
 /**
@@ -15,5 +15,5 @@
  */
 if ( !defined('PASS_COOKIE') )
-	define('PASS_COOKIE', $modname . 'pass_' . $hash);
+	define('PASS_COOKIE', 'wordpress_' . $modname . 'pass_' . $hash);
 
 /**
@@ -22,5 +22,5 @@
  */
 if ( !defined('AUTH_COOKIE') )
-	define('AUTH_COOKIE', $modname . '_auth_' . $hash);
+	define('AUTH_COOKIE', 'wordpress_' . $modname . '_auth_' . $hash);
 
 /**
@@ -29,5 +29,5 @@
  */
 if ( !defined('SECURE_AUTH_COOKIE') )
-	define('SECURE_AUTH_COOKIE', $modname . '_sec_' . $hash);
+	define('SECURE_AUTH_COOKIE', 'wordpress_' . $modname . '_sec_' . $hash);
 
 /**
@@ -36,5 +36,5 @@
  */
 if ( !defined('LOGGED_IN_COOKIE') )
-	define('LOGGED_IN_COOKIE', $modname . '_logged_in_' . $hash);
+	define('LOGGED_IN_COOKIE', 'wordpress_' . $modname . '_logged_in_' . $hash);
 
 /**
@@ -43,5 +43,5 @@
  */
 if ( !defined('TEST_COOKIE') )
-	define('TEST_COOKIE', $modname . '_test_cookie');
+	define('TEST_COOKIE', 'wordpress_' . $modname . '_test_cookie');
 
 /**
