riledhel
Forum Replies Created
-
Forum: Plugins
In reply to: [Len Slider] Can't save a sliderI have version 2.0.9 on WP 3.5.1 and have the same problem. Sometimes the other text fields get remarked as errors (TITLE NEAR THUMB and TEXT NEAR THUMB). If I switch the skin then I can’t save either.
Tested with Chrome VersiΓ³n 25.0.1364.172m and FireFox 19.0.2.Forum: Fixing WordPress
In reply to: wp_insert_post not workingTo debug,
replace $post_id = wp_insert_post($post, false);with$post_id = wp_insert_post($post, true);Also, add
'ID' => ''in your array definition if you are inserting or the appropiate ID; just in case.I didn’t experience any more WSOD since removing APC and installing Xcache. I assume it has something to do with that, specially because I never had anything written to the php log that could help me trace the problem. Markku, do you have any opcode cache installed in your system? Anything special about your LAMP/LEMP setup?
Still had problems. Followed your advice, removed APC from the server and installed Xcache. I’ll see if that fixes it.
I enabled the “Use PHP to serve cache files” option (had the mod_rewrite option with the rules in the vhost configuration) and that seems to “fix” my problems so far. You are right about being “almost as fast as the mod_rewrite option”. I’ll post here if I find the cause of my problems or other news. Thank you.
For what I can see in the source code, this plugins mirrors the files in your uploads directory to Amazon S3. It doesn’t bypass the directory or remove any of the files there.
Forum: Plugins
In reply to: High Server Load: W3 Total Cache or WP Super Cache ?As donncha says, also consider moving your site from a shared hosting account to a VPS. Otherwise you will continue having your site blocked or you may have you account canceled.
Installing cache plugins isn’t enough when you start having 10k+ visitors.Forum: Plugins
In reply to: [Plugin: WP Super Cache] Broke the permalinks structureChanged this line:
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz -fto:
RewriteCond %{REQUEST_URI} ^(.+)$ %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}%1/index.html -ffixed the problem, as described here.
Forum: Plugins
In reply to: [Plugin: WP Super Cache] Supercaching Home Page but not other pagesthat also fixed my problem here…
Forum: Plugins
In reply to: [Plugin: WP Super Cache] Broke the permalinks structureHopefully someday… thanks for your help. If I come to understand why this problem arises, I’ll let you know.
Forum: Plugins
In reply to: How do I exclude images?I like the “use excerpts” idea more π More simple, more elegant.
Forum: Plugins
In reply to: Personalized events and filesWordPress can fully do this with a custom plugin. You already have all the user management options WP provides out-of-the-box. Then you add the files and events management with a custom plugin. Even more, you can have different files and events for each role in your site, extending the “for each user” idea for a more general one. Give it a thought. Regards.
Forum: Plugins
In reply to: Search user input data filtered by post (zip) code / suburbCheck sites like http://jobs.freelanceswitch.com/ or drop me a line at javier [at] eraxia.com. Regards.
Forum: Plugins
In reply to: user-entered dataWrite me at javier [at] eraxia.com and we can talk more about it.
Forum: Plugins
In reply to: [Plugin: WP-prettyPhoto] Plugin: prettyPhoto does not activateUpdate your host to PHP v5. It’s a problem with the class constructor, that sintax it’s not supported in PHP v4.