Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Daforino

    (@daforino)

    WpJoe,

    You need to set a virtual url in your localhost apache to run this plugin properly.

    If you try to run this plugin with an url like “this: https://localhost/testdomain.com”, you′ll get this error.

    Three steps to work:

    1- Allow your virtual domain to loop back to your localhost in the system hosts file (usually in Windows\System32\drivers\etc) by adding these lines:
    127.0.0.1 testdomain.com
    127.0.0.1 sub1.testdomain.com
    127.0.0.1 sub2.testdomain.com
    (and so on, for each subdomain you set in MiniMU)

    2- Create a virtual host in Apache configuration.
    (Usually C:\wamp\bin\apache\Apache2.2.21\conf\httpd.conf)

    Lines to create a virtual host in httpd.conf:

    NameVirtualHost 127.0.0.1:80

    #seta pro localhost
    <VirtualHost 127.0.0.1>
    #ServerAdmin admin@localhost

    DocumentRoot C:\wamp\www
    ServerName localhost
    ServerAlias localhost
    #ErrorLog logs/localhost_error.log
    #CustomLog logs/localhost_access.log common

    </VirtualHost>

    #set testdomain.com
    <VirtualHost 127.0.0.1>
    DocumentRoot C:\wamp\www\testdomain.com
    ServerName testdomain.com
    ServerAlias *.testdomain.com
    <Directory C:\wamp\www\testdomain.com>
    Options All Includes Indexes
    </Directory>
    </VirtualHost>

    3- Set in WordPress General Options (wp-admin/options-general.php):
    WordPress Address (URL) testdomain.com
    Site Address (URL)testdomain.com

    Regenerate permalinks.

    Tip: Replace testdomain.com with url you want.

    Good luck!
    Sandro

    Thread Starter Daforino

    (@daforino)

    Update:

    I could isolate the error.
    This happens because a conflict between the custom image uploader from the theme and the the wootumblog′s image uploader.

    In some way, they are interfering with other.
    I tried to disable the registering of the custom image uploader from the theme, and the plugin starts to work properly.

    Is this “custom image uploader” from the theme necessary when wootumblog is running?

    If so, what is the right way to disable this uploader properly, without messing other functions on the theme?

    Thanx.

    Thread Starter Daforino

    (@daforino)

    New info:

    This error happens when wootumblog plugin is installed along adapted-to-tumblog Bueno theme.

    I tried to install plugin with another theme (Casual) and everything goes OK.

    There is another bug, along WordPress 3.3.1 and woothumblog 2.1.1. When I upload an image for a image post, it says I don′t have enough privileges. (I had to downgrade for WP2.2.1 for it to work).

    In spite of some bugs, it′s a very nice and fancy plugin, a living advert for the developer.

    thanx

    Thread Starter Daforino

    (@daforino)

    Ooops

    Sorry, I tried sometimes until now, the error seems like random.

    Apparently, there′s nothing to do with version of WP.

    It′s a sinister bug, really. Darth Bug!

    []s
    Daforino

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