Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)
  • Plugin Author CWX-Chrome

    (@cwx-chrome)

    Hello Maetrix!

    I was testing the plugin with subdomains and it works flawlessly, so your setup must be a little different from usual. Can you tell me please, what kind of setup you are using? I mean like you have a multi-site setup, or you use other paths than the default, or whatever it is that is different from the default WP setup.

    Also you should test for other plugins being incompatible with CWX Project. For this, you deactivate all plugins but CWX Project and check if it works. If it does work, you activate the other plugins one by one and check if CWX Project stops working after activating a certain plugin. Then, if you found an incompatibility (or probably more), please let me know which one it is.

    Thank you for your report!

    Forum: Plugins
    In reply to: [CWX Project] Frontend
    Plugin Author CWX-Chrome

    (@cwx-chrome)

    There are plans to take it to the front-end indeed. In fact, internally there are the structures to put it on the front-end and the API is exposed to the front-end already.

    There will be one more point release before I can add more features. So 1.0.3 will be stable and from 1.1 onwards I will add features of many kinds. The first feature I was planning is file attachments.

    I was also planning to post a roadmap of what is coming and when. I was hoping to see more requests like yours, so I can make a roadmap based on user demand. Well, maybe CWX Project is too fresh to have such expectations πŸ™‚

    Plugin Author CWX-Chrome

    (@cwx-chrome)

    @mweinand
    I’m sorry, but this plugin might not be what you were looking for. I guess you want something like http://www.watchmanadvisors.com/to-do-list-member-wordpress-plugin/.

    CWX Project is meant for site owners, staff, contributors and so on, so everyone knows what to do and when.

    Plugin Author CWX-Chrome

    (@cwx-chrome)

    This is a pure Dashboard Widget. Everything is there (with one exception, the task assignment on post/page/etc. editors). So the Settings can be opened with the cog-wheel button on the bottom of the widget.

    Plugin Author CWX-Chrome

    (@cwx-chrome)

    @mweinand
    Did you try the patch above?

    Plugin Author CWX-Chrome

    (@cwx-chrome)

    I tried to find anything that looks like a bottleneck on a system similar to yours, with the default theme, lots of posts, images and even comments.

    Profiling showed a max difference of about 0.5 seconds for the plugin being active or not on the front-end.

    Before we dive deeper into your system, analyzing your other plugins etc., we can try some patching to exclude CWX Project from the front-end completely.

    I hope you’re able to edit PHP files … You can edit the following locally and then upload it, or edit directly on the server …

    Open ‘plugins/cwx-project/cwx-project.php’ in an editor and go to line 186 insert a new line and enter the following on the new line (187)
    if(!is_admin()) return;

    The result should look like so:

    // register_uninstall_hook(__FILE__, array('self', 'uninstall'));
    
    		if(!is_admin()) return; // <- new code you inserted
    
    		add_action('plugins_loaded', array($this, 'updateCheck'));

    Save the changes and see what happens after activating the plugin.

    Please let me know if this fixes your issue or not.

    Plugin Author CWX-Chrome

    (@cwx-chrome)

    Ok, I’ll try to find a point where I can start to guess.

    In the meanwhile, it would be great if you could post some details about your server configuration (web server software, php and mysql version and stuff like that). It might be an incompatibility with another plugin as well, so if its not too much asked for, a list of your active plugins could be helpful.

    Plugin Author CWX-Chrome

    (@cwx-chrome)

    RESOLVED

    Plugin Author CWX-Chrome

    (@cwx-chrome)

    All code that prevented CWX Project from running on PHP 5.2 should be fixed.

    This took a while because it wasn’t easy to find and set up an OS that comes with PHP 5.2.4

    Thank you guys, this was really important, I guess πŸ™‚

    Have fun with version 1.0.2!

    Plugin Author CWX-Chrome

    (@cwx-chrome)

    @cwmedia
    your solution looks really elegant. I will use it, if you don’t mind, and put credits with your name where appropriate πŸ™‚
    thank you!
    I will also look into the crash thing you reported.

    Plugin Author CWX-Chrome

    (@cwx-chrome)

    CWX Project uses closures (annonymous functions), supported by PHP 5.3 and higher.

    I will try to fix this and to support very old PHP 5.2.x

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