daniellam
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Not Acceptable – Approriate Represenation of fileI had the same problem and it’s resolved now…
https://daniellam.name/it/?p=12Forum: Installing WordPress
In reply to: Screwed Up WordPress addressI believe you’ve changed site URLs in options, is that right? The fields there probably makes you think that you can change your URL just by changing those fields, which is exactly what you did – but that’s wrong.
To change the URL you need to configure from the web server settings. And THEN you can change those WordPress fields in the Options page.
Anyway to un-do the damage, you need to connect to your MySQL database, then change the 2 options back to what they were.
I.e. Run this query
SELECT * FROM <your table prefix>_options w
where option_name = ‘siteurl’ or option_name = ‘home’;It should show your changed URLs. And run this query
UPDATE <your table prefix>_options
set option_value = ‘https://your old path’
where option_name = ‘siteurl’ or option_name = ‘home’;and commit to change the options back. You should change the WordPress directory in file system to what it was before as well.
Forum: Installing WordPress
In reply to: MySQL 5Probably not with WordPress in particular. However when I installed MySQL 5.2.0 for Windows a few months back, I had installation problems. You can have a look at the details here.
Forum: Fixing WordPress
In reply to: JS error in IE with TripleK2After so much investigation – uh it was “only” 3 hrs now I realise – it turns out that TripleK2 theme (probably the ” Prototype JavaScript framework” inside) conflicts with
1. Whenever widget is used, or
2. If a flickr badge is usedin IE6. So for the time being I have to give up my flickr badge AND hardcode my favourite arrangement in sidebar files..
Please let me know if anyone has a better idea…
Forum: Fixing WordPress
In reply to: JS error in IE with TripleK2I have the exact same problem! This is the first time I use Triple2K theme and everything works fine in FireFox, but in IE it has javascript error:
Line: 20
Char: 3
Error: ‘undefined’ is null or not an object
Code: 0What do you mean by changing themes to “triple k2”? Isn’t that what you have been using?