hello :
when i enable the Vbseo ( when i upload the .htaccess file ) my forum stop running
and this appear :
The requested URL cannot be served, zero sized reply returned
can anybody help me .!
This is a discussion on The requested URL cannot be served, zero sized reply returned why ? within the General Discussion forums, part of the vBSEO SEO Plugin category; hello : when i enable the Vbseo ( when i upload the .htaccess file ) my forum stop running and ...
hello :
when i enable the Vbseo ( when i upload the .htaccess file ) my forum stop running
and this appear :
The requested URL cannot be served, zero sized reply returned
can anybody help me .!
Hello ,
Make sure your server supports mod_rewrite and you are allowed to use .htaccess on your hosting account. You can check it by [How to] Check if mod_rewrite is working for my site
Mert Gökçeimam / Crawlability Inc.
vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!
Twitter:@Depkac
Personal Blog : Mert Gökçeimam
hello
my server supports mod_rewrite and i am allowed to use .htaccess on my hosting account
what i can to do ?
Can you please manually edit config_vbsep.php file search for the following setting
adn add your forum path between two bracketsPHP Code:define('VBSEO_CUSTOM_DOCROOT', '');
example
When you are done , please save your config_vbseo.php file , upload it to your server . Open vBSEO Control Panel and save your settings without changing anything.PHP Code:define('VBSEO_CUSTOM_DOCROOT', '/var/www/html');
Mert Gökçeimam / Crawlability Inc.
vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!
Twitter:@Depkac
Personal Blog : Mert Gökçeimam
i did that
but this now what i get
500 Server Error
The following error occurred: [code=SERVER_RESPONSE_CLOSE] The server closed the connection while reading the response. Contact your system administrator.
Could not open error file
i did that
but this now what i get
500 Server Error
The following error occurred: [code=SERVER_RESPONSE_CLOSE] The server closed the connection while reading the response. Contact your system administrator.
Could not open error file
Find in config.php
Replace withPHP Code:define('VBSEO_CUSTOM_DOCROOT', '');
define('VBSEO_CUSTOM_TOPREL', '');
When you are done , please save your config_vbseo.php file , upload it to your server . Open vBSEO Control Panel and save your settings without changing anything.PHP Code:define('VBSEO_CUSTOM_DOCROOT', '/path/to/your/root');
define('VBSEO_CUSTOM_TOPREL', '/vb/');
Make sure you save the config.php correct format and you are using a text editor.
Mert Gökçeimam / Crawlability Inc.
vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!
Twitter:@Depkac
Personal Blog : Mert Gökçeimam
I did not know how can Edit the file
my forum path is : ??????? ???? ?? ?????
my root is : syrcafe
can you make it for me pleas
this the file
That is your forum domain adress. Your forum path is different. Create a php file with the following content , upload it to your doc root and call it via browser to find about your path
PHP Code:<?php
if ($_SERVER['PATH_TRANSLATED'])
{
$path = $_SERVER['PATH_TRANSLATED'];
}
else if ($_SERVER['SCRIPT_FILENAME'])
{
$path = $_SERVER['SCRIPT_FILENAME'];
}
else
{
echo 'We are sorry, but this script is unable to determine your forums path.';
exit;
}
echo substr($path, 0, (strlen($path) - 14));
?>
Mert Gökçeimam / Crawlability Inc.
vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!
Twitter:@Depkac
Personal Blog : Mert Gökçeimam