seito
Forum Replies Created
-
Hi,
yes, I checked with devTools (Chrom’s Web Developer tools console) and nothing special was reported. No errors whatsoever and on drag-drop to designated container action I get a notification about Synchronous XMLHttpRequestbeeing depreciated. Which I don’t think is the reason for a issue.
Images are not too large. I tested with different sizes and quantity. From 1 x 10kb to 90 x 1Mb. Nothing ever happens.
I have logging enabled and don’t get any error logs. Not from a WP system and not from the server (no timeouts and no resources capping). It just simply nothing happens.
At the end, I managed to upload images by FTP to a sunshine folder (documentation should be perhaps clearer about this destination for FTP) and added images through “FTP Images Folder” method.
Let me know if you have any more ideas.
Forum: Plugins
In reply to: [Social Share bar (Digg Digg Alternative)] Empty space under sidebar/headerYes, but this -margin should not be permanent fix… it’s only a temporary hack.
I wonder, did anybody managed to resolve this issue? When I tried this plugin I had the same problem.
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Changelog for 0.5.4.3?me three 🙂
Forum: Fixing WordPress
In reply to: Failed to load resources error after update to 3.5 (admin back end)OK, I did what esmi said. I deleted all files and folders related to wordpress (that were also found in fresh 3.5 package! I left files like wp-config, etc. intact) except folder wp-content. And then upload fresh package, again without wp-content. And now it seams like it’s working. If any more problems show up, I will report.
But, I would still like to know what is up with this new file wp-config-sample.php?
Esmi, THANK YOU!
Forum: Fixing WordPress
In reply to: Failed to load resources error after update to 3.5 (admin back end)I wanted to write you is there really no other way, since I don’t want to mess with wp-config or any of those files I already configured. But now I see there is NO wp-config in 3.5. What? I’m really frustrated here and I don’t get it any more. What is this new file wp-config-sample.php?
If I upload fresh download, will I not loose some already made settings which would be preserved with auto-update?
Forum: Fixing WordPress
In reply to: Failed to load resources error after update to 3.5 (admin back end)I did, and I followed instructions under KNOWN ISSUES … jquery. My problem is, that error says jquery is not breaking. It’s missing. So, I hope that someone will have any idea what is going on here. Maybe problem with support for multisite network paths or something.
We did! Exactly the same problem for me. Did you found a solution?
THIS IS MAKING ME GO CRAZY! Sorry guys, but problem is NOT resolved!
It works so well, that now it redirects everything to http://www.anteros.eu. Even other sites and domains on network! For example, example1.com redirects to http://www.anteros.eu. Also http://www.example1.com. And example1.com is mapped subdomain that I use for another page on network.
So I added this little line:
RewriteCond %{HTTP_HOST} !example1.com [NC]And it works now. But is there any other way? How do I tell htaccess, that redirection is only valid for this domain, and NO subdomain? As i see it, problem is that example1.anteros.eu is valid for first RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]. There is no WWW at the beginning and so it redirects to http://www.anteros.eu.
But how to rewrite this code so that I won’t need to ad exceptions like
!example1.com [NC] for every single subdomain?Any suggestions?
ok. I made it work. Problem was, in sequence of redirections… When I moved my non www -> www redirection right after rewrite base / things started to work as they should.
This is my code now, for root htaccess on sub-domain multisite network where primary domain is www. For future references. And if anybody sees any mistake, or has any suggestions, I will be grateful for information.
RewriteEngine On RewriteBase / RewriteCond %{HTTPS} off RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC] RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] RewriteCond %{HTTPS} on RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC] RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L] RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule . index.php [L]Yes I was. But I used my www for 2+ years and all the links and … well, you know. Standard excuses for taking a shortcut that later on bites you in your back.
I tried redirecting non www to www from my cPanel. No success.
Also i tried redirecting with .htaccess. But it seems I can’t make it work. There is something wrong with my code… At the moment in my root I have htaccess with:
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule . index.php [L] RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]Do you have any idea what could be wrong?
First, thank you for your time!
Strange. Try this:
1. enter URL -> anteros.eu (I tried in another browser and in mozila it did redirected me to http://www.anteros.eu)
2. when you have http://www.anteros.eu in address bar, highlite and delete “www.” part of URL.
3. I get redirected to http://anteroseu.www.anteros.eu/ as before.When typing anteros.eu in Chrome’s address bar, problem above is immediate.
Any idea what could be going on?
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] conflict with smoothsliderOk, I checked with firebug and I get this error:
TypeError: jQuery(“#smooth_slider_1”).cycle is not a function
,slideExpr: “div.smooth_slideri”Any idea how is this connected to My Calendar?
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] conflict with smoothsliderYes, on page where I use it I use it through shortcode which is hardcoded directly in php.
Besides that it can be used on each post through screen options box and when enabled it gets added automagically. But that’s not the case in this instance.
So, did you manage to replicate the problem?