Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter wantei202006

    (@wantei202006)

    Here is what my htacces looks like

    # WordPress SEO - XML Sitemap Rewrite Fix
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^sitemap_index.xml$ /index.php?sitemap=1 [L]
    RewriteRule ^([^/]+?)-sitemap([0-9]+)?.xml$ /index.php?sitemap=$1&sitemap_n=$2 [L]
    </IfModule>
    # END WordPress SEO - XML Sitemap Rewrite Fix
    
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    and my nginx config (ikigainetwork.moe.conf)

    server {
    	server_name ikigainetwork.moe www.ikigainetwork.moe;
    	listen 81.4.104.56;
    	root /home/ikigainetwork/public_html;
    	index index.html index.htm index.php;
    	access_log /var/log/virtualmin/ikigainetwork.moe_access_log;
    	error_log /var/log/virtualmin/ikigainetwork.moe_error_log;
    	fastcgi_param GATEWAY_INTERFACE CGI/1.1;
    	fastcgi_param SERVER_SOFTWARE nginx;
    	fastcgi_param QUERY_STRING $query_string;
    	fastcgi_param REQUEST_METHOD $request_method;
    	fastcgi_param CONTENT_TYPE $content_type;
    	fastcgi_param CONTENT_LENGTH $content_length;
    	fastcgi_param SCRIPT_FILENAME /home/ikigainetwork/public_html$fastcgi_script_name;
    	fastcgi_param SCRIPT_NAME $fastcgi_script_name;
    	fastcgi_param REQUEST_URI $request_uri;
    	fastcgi_param DOCUMENT_URI $document_uri;
    	fastcgi_param DOCUMENT_ROOT /home/ikigainetwork/public_html;
    	fastcgi_param SERVER_PROTOCOL $server_protocol;
    	fastcgi_param REMOTE_ADDR $remote_addr;
    	fastcgi_param REMOTE_PORT $remote_port;
    	fastcgi_param SERVER_ADDR $server_addr;
    	fastcgi_param SERVER_PORT $server_port;
    	fastcgi_param SERVER_NAME $server_name;
    	fastcgi_param HTTPS $https;
        location / {
                    try_files $uri $uri/ /index.php?$args; 
        }
    	location ~ \.php$ {
    		try_files $uri =404;
    		fastcgi_pass unix:/var/php-nginx/14911244012458.sock/socket;
    	}
    location ~* \.(txt|xml|js)$ {
        expires 8d;
    }
    
    location ~* \.(css)$ {
        expires 8d;
    }
    
    location ~* \.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav|mp4|m4v|ogg|webm|aac)$ {
        expires 8d;
    }
    
    location ~* \.(jpg|jpeg|png|gif|swf|webp)$ {
        expires 8d;
    }
    	listen 81.4.104.56:443 default ssl;
    	ssl_certificate /home/ikigainetwork/ssl.cert;
    	ssl_certificate_key /home/ikigainetwork/ssl.key;
    
    #Yoast sitemap
    location ~ ([^/]*)sitemap(.*)\.x(m|s)l$ {
    	rewrite ^/sitemap\.xml$ /sitemap_index.xml permanent;
            rewrite ^/([a-z]+)?-?sitemap\.xsl$ /index.php?xsl=$1 last;
    	rewrite ^/sitemap_index\.xml$ /index.php?sitemap=1 last;
    	rewrite ^/([^/]+?)-sitemap([0-9]+)?\.xml$ /index.php?sitemap=$1&sitemap_n=$2 last;
    
            ## following lines are options. Needed for wordpress-seo addons
            rewrite ^/news_sitemap\.xml$ /index.php?sitemap=wpseo_news last;
    	rewrite ^/locations\.kml$ /index.php?sitemap=wpseo_local_kml last;
    	rewrite ^/geo_sitemap\.xml$ /index.php?sitemap=wpseo_local last;
    	rewrite ^/video-sitemap\.xsl$ /index.php?xsl=video last;
    
    	access_log off;
    }
    
    }
    Thread Starter wantei202006

    (@wantei202006)

    I’ve tried what you told me, disabling all my plugins and changing to a basic theme, but the sitemap still isn’t created.

    Thread Starter wantei202006

    (@wantei202006)

    I have but no results are displayed, just an empty box.

    Thread Starter wantei202006

    (@wantei202006)

    Actually I followed this tutorial -> https://webdesign.tutsplus.com/series/building-a-responsive-layout-with-skeleton/

    I completed it and was managed to make the complete template. But the problem is it only was the ability to display level-1 sub-menus. I’m guessing i have to change my code and styles a bit to add the multiple layered menus.

    Can someone help me out?

    Thread Starter wantei202006

    (@wantei202006)

    I’m currently using WordPress SEO by Yoast but that also doesn’t seem to be fixing the problem.

    Thread Starter wantei202006

    (@wantei202006)

    OK guys i have removed the popups and fixed the nav bar :). Any more suggestions?

    Thread Starter wantei202006

    (@wantei202006)

    I’ve updated the site a bit can anyone give me some suggestions?

    I’m also having the same problem please help me out.

    Posts by my “Authors” do not have preview thumbnails on facebook.

    When i try to post my link on facebook, the thumbnail preview is not appearing instead an image from ProjectWonderful is there. How can i fix this please help me out.

    It works fine when I the Admin posted something but when it comes to my authors the preview image does not work.

    I’m also having a similar problems. Posts by my “Authors” do not appear well in Facebook. The thumbnail image cannot bee seen. Please fic it.

Viewing 10 replies - 1 through 10 (of 10 total)