verification showing "not installed"...have read other threads

Discussion in 'Bugs Report and Tracking' started by bayoushooter, Sep 2, 2009.

  1. bayoushooter New Member

  2. Yao Android Developer

    Hi Beyoushooter,

    The tapatalk based on xmlrpc, it is popular way to send data on internet.

    I tried to connect you forum by xmlrpc, but I got 406 Not Acceptable.

    I searched it on google, looks is a common issue by server configure. Below link is a solution I found. If you web server is apache, I think it is good for you.

    http://stellify.net/406-not-acceptable-and-apache-mod_security/

    Please let me know if still has any issue.

    Thanks,
    yao
  3. bayoushooter New Member

    Are they referrring to htaccess for the /forums/ dir or /forums/mobiquio/ dir ?
  4. bayoushooter New Member

    i only have an .htaccess in my root dir (/public_html/), i added it to that one to no avail. i also created a new .htaccess file with the lines listed on that link and put it in /forums/ and /forums/mobique/ and it fails each time.

    i'm uncomfortable disabling modsecurity on my server. is there any other way around it?
  5. Col Hajj New Member

    I'm in the same boat. Uploaded folder per instructions and my site will not verify. My site is not setup as private. I also tried adding the .htaccess file to both the route and /forums directory and neither worked.
  6. winter Tapatalk Master

    If we scroll down to the user comments in the link Yao provided perhaps it is caused by some invalid characters. We will see if we can find anything meaningful.. meanwhile if you can think of something please let us know.
  7. xpla New Member

  8. winter Tapatalk Master

  9. xpla New Member

    Oh well there's the problem. It's physically located in /forum but as we bridge vbulletin to joomla we had to rename the menu link to something different the folder itself is.

    You can't have Forum as a Menu Link if the name of the folder is forum as well.

    Hmmm this is getting tricky ...

    If i redirect any query string via .htaccess it should work.

    Like http://sowi.infonetz.org/lounge/mobiquoANY STRING to .../forum/mobiquoANY STRING

    but i'm not very familiar with .htaccess :(
  10. winter Tapatalk Master

    I think you will need to modify the .htaccess file to get it to work. If you need help, PM "Yao" with your site current .htaccess details and he maybe able to assist you.

    Cheers!
  11. winter Tapatalk Master

    I'm expecting Yao to give us some insights on how to resolve these kind of issues. stay tuned.
  12. xpla New Member

    Did this but he didn't answer me. Still have the issue.
  13. xpla New Member

    Ok it is NOT a rewrite issue at all. The problem is a plug-in.

    We connect vBulletin via jFusion to Joomla and have the followings plugins running:

    hook: init_startup

    PHP:
    if(!defined('_JEXEC')){
    define('SEFENABLED','1');
    define('SEFMODE','0');
    define('JOOMLABASEURL','http://sowi.infonetz.org/lounge/');
    define('REDIRECT_IGNORE','');
    $hookFile '/home/lounge/www/administrator/components/com_jfusion/plugins/vbulletin/hooks.php';
    if(
    file_exists($hookFile)) {
    include_once(
    $hookFile);
    $val 'redirect';
    $JFusionHook = new executeJFusionHook('init_startup',$val);
    }
    }
    PHP:
    if(defined('_JEXEC') || isset($_GET['jfusion'])){
    global 
    $hookFile;
    if(empty(
    $hookFile)) $hookFile '/home/lounge/www/administrator/components/com_jfusion/plugins/vbulletin/hooks.php';
    if(
    file_exists($hookFile)) {
    include_once(
    $hookFile);
    $val 'frameless';
    $JFusionHook = new executeJFusionHook('init_startup',$val);
    }
    }
    PHP:
    global $JFusionActivePlugin,$JFusionLoginCheckActive;
    //Some server setups do not have REQUEST_URI thus we have to create if it does not
    $https = (isset($_SERVER['HTTPS']) && !empty($_SERVER['HTTPS']) && (strtolower($_SERVER['HTTPS']) != 'off')) ? 's://' '://';
    if (!empty (
    $_SERVER['PHP_SELF']) && !empty ($_SERVER['REQUEST_URI'])) {
    $currentURL 'http' $https $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
    } else {
    $queryString = (isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING'])) ? '?' $_SERVER['QUERY_STRING'] : '';
    $currentURL 'http' $https $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME'] . $queryString;
    }
    if(
    strpos($currentURL,'admincp')===false && strpos($currentURL,'modcp')===false && $JFusionActivePlugin != 'vbulletin' && empty($JFusionLoginCheckActive)) {
    $JFusionActivePlugin 'vbulletin';
    defined('JPATH_BASE') or define('JPATH_BASE','/home/lounge/www');
    global 
    $hookFile;
    if(empty(
    $hookFile)) $hookFile '/home/lounge/www/administrator/components/com_jfusion/plugins/vbulletin/hooks.php';
    if(
    file_exists($hookFile)) {
    include_once(
    $hookFile);
    $val 'duallogin';
    $JFusionHook = new executeJFusionHook('init_startup',$val);
    }
    }
  14. winter Tapatalk Master

    interesting.. we don't have Joomla setup.. keep contacting Yao he will be able to give you some idea.
  15. xpla New Member

    Well i posted every information, maybe Yao just could have a look about it? Would be great!

    Thank you
  16. winter Tapatalk Master

    Not much update from our side. Looks like this is one thing we cannot support at the moment.. :(

Share This Page