Tagged: wordpress RSS Toggle Comment Threads | Keyboard Shortcuts

  • 10:37 am on January 20, 2012 Permalink | Reply
    Tags: wordpress   

    Call to undefined function is_rtl() 

    Aiseh, bila buka saja laman web ibnuyahya.com ni tiba-tiba saja nampak white screen je. Something wrong. Cek log file, jumpa beberapa error message seperti di bawah

    Call to undefined function is_rtl() in /wp-includes/general-template.php on line 2102

    Entah bila saya upgrade wordpress ni pun tak tau la. Tiba-tiba je keluar error. Ok. kalau malas nak debug. ada 2 penyelesaian sementara untuk kembalikan laman web anda kepada keadaan asal.

    1. Disable kesemua plugin.

    /wp-content/plugins/

    2. Disable line 2102 dan 2103 pada file general-template.php

    /wp-includes/general-template.php

    //if ( is_rtl() )
    //		echo apply_filters( 'wp_admin_css', ..
    
    Posted by Ibnuyahya
     
  • 8:52 pm on December 28, 2011 Permalink | Reply
    Tags: wordpress   

    Updating category post shortcode plugin 

    I think there is long time for me not updating category post shortcode plugin. I just updated a few bug from the previous version. Please download new version from http://wordpress.org/extend/plugins/category-post-shortcode/ or just update from your admin area.

     
  • 8:42 pm on November 18, 2011 Permalink | Reply
    Tags: , wordpress   

    Setting Nginx dan WordPress 

    Berikut adalah nginx configuration untuk WordPress dengan permalink.

    # Upstream to abstract backend connection(s) for php
    upstream php {
            server unix:/tmp/php-cgi.socket;
            server 127.0.0.1:9000;
    }
    
    server {
            ## Your website name goes here.
            server_name domain.tld;
            ## Your only path reference.
            root /var/www/wordpress;
            ## This should be in your http block and if it is, it's not needed here.
            index index.php;
    
            location = /favicon.ico {
                    log_not_found off;
                    access_log off;
            }
    
            location = /robots.txt {
                    allow all;
                    log_not_found off;
                    access_log off;
            }
    
            location / {
                    # This is cool because no php is touched for static content
                    try_files $uri $uri/ /index.php;
            }
    
            location ~ \.php$ {
                    #NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
                    include fastcgi.conf;
                    fastcgi_intercept_errors on;
                    fastcgi_pass php;
            }
    
            location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
                    expires max;
                    log_not_found off;
            }
    }
    
     
  • 7:29 am on May 25, 2010 Permalink | Reply
    Tags: , wordpress, xmlrpc   

    datetime format : sync wordpress and codeigniter thru xmlrpc 

    [lang_en-us]I notice that we need to put datetime.iso8601 when sending datetime data from codeigniter to wordpress through XMLRPC[/lang_en-us]

    [lang_ms-my]Untuk menghantar data tarikh dan masa melalui XMLRPC, pastikan kita masukkan format datetime.iso8601 kedalam array structure.[/lang_ms-my]

         $content_struct['dateCreated']             = array($dateCreated,'dateTime.iso8601');
         $content_struct['date_created_gmt']     = array($date_created_gmt,'dateTime.iso8601');
    
     
c
compose new post
j
next post/next comment
k
previous post/previous comment
r
reply
e
edit
o
show/hide comments
t
go to top
l
go to login
h
show/hide help
shift + esc
cancel