Big frustrations
I am incredibly frustrated at the lack of vbSEO support. With the zend encoding of vbSEO it is not possible to bug fix it and I have had to spend many hours doing workarounds. I had to spend hours the moment before going on holiday. You promised to fix the problem while I was away and I gave you direct access to my site. However, the problem was not fixed now 12 days later, and you refuse to chat with me to sort out the issues - your excuse being that unnamed issues are being fixed in RC5.
Unnamed issues, since you refuse to let me chat with you.
Therefore, the issues are now being made public on this forum!
I have seen a number of discussions regarding objections to your zend etc encoding of the files. Until now I have been in support of your stand with the belief that bug fixes on live sites would be prompt. However, weeks go by without fixes and this is unacceptable on live heavily trafficed sites. Even more so when I have been able to find workaround fixes (taking hours) when you should have been able to find the workarounds and supply them within a much shorter timespan.
I am not an expert on htaccess, yet I have been able to find htaccess workarounds.
Archive rewrites
Regarding the archive - on one of my vBulletin installations, I have RC4 successfully installed with the host being Apache / PHP as module.
However, with my vBulletin installation with Apache / PHP as CGI, the archive links get rewritten asie there is a double index.phpHTML Code:http://forum.time2dine.co.nz/archive/index.php/index.php?f-9.html
The query string exists because the vBulletin archive/index.php file senses the PHP as CGI and so uses the query string. I have tried using the standard /index.php/f-9.html and found it does not work - probably due to the PHP as CGI compatability.
Your rewrite should check for php as cgi module, and rewrite the /index.php?f-9.html as /index.php/f-9.html, then send /index.php?f-9.html to the vBulletin files for processing. Of course, this then has to be incorporated into your archive rewriting that allows for rewriting of /archive/index.php/f-9.html to /archive/f-9.html.
Checking of cgi as a module is possible via the vBulletin method of checking per /archive/global.php:
PHP Code:if ((substr(PHP_OS, 0, 3) == 'WIN' AND strpos($_SERVER['SERVER_SOFTWARE'], 'apache') === false) OR (strpos(SAPI_NAME, 'cgi') !== false AND @!ini_get('cgi.fix_pathinfo')))
Workaround
My htaccess workaround that you should have come up with has been to redirect the
to the correct url beingHTML Code:http://forum.time2dine.co.nz/archive/index.php/index.php?f-9.html
then further send the query based url to the archive/index.php file.HTML Code:http://forum.time2dine.co.nz/archive/index.php/f-9.html
Please do the required fixes for your RC5 and improve your level of support!!!HTML Code:#correct archive RewriteCond %{QUERY_STRING} ^(.+)$ RewriteRule ^archive/index.php/index.php$ http://forum.time2dine.co.nz/archive/index.php/%1? [R=301,L] RewriteRule ^archive/index.php/f-(.+)\.html$ archive/index.php?f-$1.html



LinkBack URL
About LinkBacks










