I can't use htaccess since I'm using nginx and skipped that step, now I notice there are no bots active in the download log, also Bing & Yahoo have failed the ping. What can I do?
Are there specific instructions for nginx ?
This is a discussion on Nginx no htaccess and no downloads? within the General Discussion forums, part of the vBSEO Google/Yahoo Sitemap category; I can't use htaccess since I'm using nginx and skipped that step, now I notice there are no bots active ...
I can't use htaccess since I'm using nginx and skipped that step, now I notice there are no bots active in the download log, also Bing & Yahoo have failed the ping. What can I do?
Are there specific instructions for nginx ?
Hello ,
I am not sure what you are actually asking as bot activity has nothing to do with Downloads Log.
Yahoo discontinued their ping service.
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
Well the problem is no sitemap downloads. Do you have experience with nginx setup?
Edit: actually it does mention 'bot' there?
Hello,
I just checked one of your sites and I saw that the URLs are not being rewritten there. Did you add the vBSEO rules to your nginx configuration file for that *specific* instance? (find the download package->htaccess folder->nginx.txt file)
If so, then I still don't get the issue you're having here.
Andrés Durán / Crawlability Inc.
ˇvBSEO 3.6.0 GOLD Liberado!
Inaugurando el NUEVO vBSEO Sitemap Generator 3.0. - ˇAHORA disponible para Clientes de vBSEO!
Síguenos en: Facebook | Síguenos en: Twitter
It's about the other site, I have one forum where I do not use vbseo atm for testing.
On the forum where rewrites work I need to get the Sitemap plugin working...
What are the rules you are using within the nginx config file?
Andrés Durán / Crawlability Inc.
ˇvBSEO 3.6.0 GOLD Liberado!
Inaugurando el NUEVO vBSEO Sitemap Generator 3.0. - ˇAHORA disponible para Clientes de vBSEO!
Síguenos en: Facebook | Síguenos en: Twitter
This is what I have
--
server {
listen 85.17.59.138:80;
server_name forum.dutchbodybuilding.com;
root /var/www/forum.dutchbodybuilding.com/public_html;
access_log /var/www/forum.dutchbodybuilding.com/logs/http_access;
error_log /var/www/forum.dutchbodybuilding.com/logs/http_error;
index index.html index.php;
location /. {
return 404;
}
if (!-e $request_filename) {
rewrite ^/(.*)$ /vbseo.php last;
}
location ~ .php$ {
expires off;
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
client_max_body_size 150M;
}
--
our default file is given:
You simply don't have the proper rules in place and they needed to be addedCode:location /forums/ { rewrite ^/forums/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ /forums/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 last; try_files $uri $uri/ /forums/vbseo.php?$args; } location ~ /forums/(.*\.php)$ { rewrite ^/forums/(.*)$ /forums/vbseo.php last; } location /forums/vbseo/(includes|resources/html|resources/xml)/ { allow 127.0.0.1; deny all; }
Brian Cummiskey / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
if you are in root you can remove the 'forums/' prefix
Brian Cummiskey / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Thanks and I did look at the Sitemap instructions but couldn't find this. We'll try it.
vBSEO 3.6.0 Readme File
-> Installing under other servers
-> Nginx
Brian Cummiskey / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
I see, thanks.
Problem with this part:
--
location / {
rewrite ^/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ /vbseo_sitemap/ vbseo_getsitemap.php?sitemap=$1 last;
try_files $uri $uri/ /vbseo.php?$args;
}
--
I get this error:
"[emerg]: invalid number of arguments in "rewrite" directive"
Do you get that error with the vBSEO default ruleset? or with a custom one?
You seem to be missing:
include fastcgi_params;
Somewhere. What is the full ruleset that you're using?
Andrés Durán / Crawlability Inc.
ˇvBSEO 3.6.0 GOLD Liberado!
Inaugurando el NUEVO vBSEO Sitemap Generator 3.0. - ˇAHORA disponible para Clientes de vBSEO!
Síguenos en: Facebook | Síguenos en: Twitter
When I use the code from this post it works: howto for nginx ???
So why the one from the install package doesn't work I have no idea. Maybe you can guess.