CWX-Chrome
Forum Replies Created
-
Forum: Plugins
In reply to: [CWX Project] PROJECT Button unresponsiveHello 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] FrontendThere 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 π
Forum: Plugins
In reply to: [CWX Project] installing slows website@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.
Forum: Plugins
In reply to: [CWX Project] installing slows websiteThis 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.
Forum: Plugins
In reply to: [CWX Project] installing slows website@mweinand
Did you try the patch above?Forum: Plugins
In reply to: [CWX Project] installing slows websiteI 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.
Forum: Plugins
In reply to: [CWX Project] installing slows websiteOk, 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.
Forum: Plugins
In reply to: [CWX Project] Parse error: cwx-project.php on line 619RESOLVED
Forum: Plugins
In reply to: [CWX Project] Parse error: cwx-project.php on line 619All 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!
Forum: Plugins
In reply to: [CWX Project] Parse error: cwx-project.php on line 619@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.Forum: Plugins
In reply to: [CWX Project] Parse error: cwx-project.php on line 619CWX 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