xreturnable

xreturnable
2 reviews   downloaded 238 times
created by mikl, last updated on November 11, 2009
#412
how to install
by velsa at 6:07am on June 24, 2009.

how to install xReturnable

#438
404 PageNot found Error
by robak at 7:10am on July 5, 2009.

When using path url format I've got 404 error from web server.

My sollution: add urldecode and urlencode to urlCompress and Uncompress

public static function urlCompress($data) {
  return urlencode(base64_encode(addslashes(gzcompress(serialize($data),9))));
}

public static function urlUncompress($data) {
  return unserialize(gzuncompress(stripslashes(base64_decode(urldecode($data)))));
}



New Review

Please login first.