zrebie
Forum Replies Created
-
Thanks for info, still hope that it will be fixed some day…
Have you found the solution, I also have the same problem
Forum: Plugins
In reply to: [P3 (Plugin Performance Profiler)] WordPress Core Load TimeI changed object-cache.php with the one from APC Object Cache Backend plugin, and here are results(which looks definetely better):
Total Load Time: 4.2819seconds avg.
Site Load Time 1.7686seconds avg.
Profile Overhead: 2.5133seconds avg.
Plugin Load Time: 1.0273seconds avg.
Theme Load Time: 0.0345seconds avg.
Core Load Time: 0.5963seconds avg.
Margin of Error: 0.1105seconds avg.
(4.2819 observed, 4.1714 expected)
Visits: 2
Number of PHP ticks: 22,967 calls avg.
Memory Usage: 55.83 MB avg.
MySQL Queries: 125 queries avg.Forum: Plugins
In reply to: [P3 (Plugin Performance Profiler)] WordPress Core Load TimeOh I think I finally found the problem – W3_Total_Cache Object Cache.
Which is strange, when it is enabled, the page loads really slow (which is the opposite of this feature ;/ ) – but this problem I will look in that plugins support.Still thanks for reply, and I hope you can guide me with additional questions regarding PHP ticks and memory.
Forum: Plugins
In reply to: [P3 (Plugin Performance Profiler)] WordPress Core Load TimeThank for reply,
I checked the margin error and its quite low.
Total Load Time: 6.1250seconds avg.
Site Load Time 4.0484seconds avg.
Profile Overhead: 2.0767seconds avg.
Plugin Load Time: 1.9800seconds avg.
Theme Load Time: 0.0441seconds avg.
Core Load Time: 1.9298seconds avg.
Margin of Error: 0.0944seconds avg.
(6.1250 observed, 6.0306 expected)
Visits: 2
Number of PHP ticks: 18,658 calls avg.
Memory Usage: 54.63 MB avg.
MySQL Queries: 121 queries avg.Moreover I am checking only 2 pages for admin panel (funny cause those are the posts and pages ), because the moderator who are going to add posts and modify pages will look on those most often.
As for the caching I use W3 total cache with Object Cache enabled (isnt it enought? ). As for site its great, but is admin cached fully? I will look into the ones which you suggested.
I have to add that as for now number of pages and posts is really small (around 60 pages and 10 posts), so what will happen when there will be 60 pages and 600 posts, I do not want to end with admin panel not accessible.
I tried uninstalling plugins (which off course disabled the time for plugins, but the core load time was still around 2 secs).
I also tried the option you mentioned (opcode optimizers) and still the same. Moreover I tried changing to default theme (the same results, or even worse ?? )
So Im kind of stuck, maybe the PHP ticks should be blamed, or the memory (unfortunately I already tries to maximize that – no luck – my server provider doesnt allow it to be more than 64MB ;/ ) Do you think it can be the problem?
Thanks in advance
Ok I think I found it, the mod_rewrites were not using wordpress for the uploads folder
Have you found a solution for this.
I also have 404 on server and it looks like it is not going into php hook for 404 and just resolving page from Apache. Locally on my development server it works like a charm. How can I fix this?Forum: Plugins
In reply to: [Facebook] Facebook page comments not syncedHmmm Thank you for reply,
Maybe I did not make myself clear,I understand that WordPress based comments are not synced, but I thought that Facebook Comments Box would sync its comments with the Fan Page Post which was created by plugin.I would like to have a Facebook like comments box with all comments from FanPage post, do you know how can I achieve it?
Forum: Plugins
In reply to: [Facebook] Does Facebook Status on Fan Page Comment Sync with Website?So is it working, cause I have the newest version of Facebook plugin and posts which are submitted to Facebook FanPage, their comments are not synced.
Forum: Plugins
In reply to: [Download Monitor] Cant remove categoryOk problem solved (my mistake in code)
Forum: Plugins
In reply to: [Crop-Thumbnails] Cropped images are not saved, error messI have a workaround for this, just add in editor.php after
foreach($all_image_sizes as $img_size_name=>$value) :this code, which will set sizes (like thimThumb does if there is 0 size):
if ($value[‘width’]==0 && $value[‘height’]==0){ $value[‘width’]=$orig_img[2];
$value[‘height’]=$orig_img[1];
} else if ($value[‘width’]==0) {
$value[‘width’] = floor ($orig_img[1] * ($value[‘height’] / $orig_img[2]));
} else if ($value[‘height’]==0) {
$value[‘height’] = floor ($orig_img[2] * ($value[‘width’] / $orig_img[1]));
}Forum: Plugins
In reply to: [WP Supersized] WP-Supersized and prettyPhoto not workingI have narrowed the problem to the script jquery_animate_enhanced (when I disabled enqueuing that script all works, but dont know what to do next.