paperlion
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: modify category selector window in edit boxthanx, hth. also noticed there are no horizontal scroll bars there. i guess i’ll add that piece to mosquito, or whatever it’s called.
Forum: Fixing WordPress
In reply to: Now you see it, now you don’tDeveloped by…
Powered by WordPressat the bottom changes between both lines displaying and one line as I refresh the screen. Maybe it’s only on my screen?
Forum: Fixing WordPress
In reply to: Now you see it, now you don’tfoundation1.org/wp-en
Forum: Installing WordPress
In reply to: Database backup/restoreAin’t getting no satisfaction on this elsewhere – and this is a different angle on it, so…
I’m running 1.5.1.2 and still having encoding issues on database restores. I’ve tested with Notebook++ and other text editors/converters, and all with the same results – on restore – but when pasting into WP before backing up characters are all still fine.
Does anyone know the details of the problem and the fix – after months (okay part-time) this still eludes me. Is it still necessary to use a command-line sql restore with the iconv filter to convert to UTF8 even after this fix? If so, what are the characters in the database that will need this extra attention?
Forum: Installing WordPress
In reply to: Restore Database ProblemAahh, an old post. Hope these still get read.
I am having other character set problems.
Starting with a Windows-1250 (Central European) encoded email that looks fine, I bath it in Notepad (or various other re-encoders), resaving there as UTF8. Copy again and paste into WordPress. Still fine. Backup and restore, and presto – apostrophes and quotes have become question marks.
1) Is this something with backup / restore encoding changes?
2) If WP is displaying it correctly, isn’t it then solid UTF8?
Forum: Fixing WordPress
In reply to: Troubleshooting BackupActually, I saw a post about 1.7 and did it – seems to work okay – note that the only changes done to make 1.6 work were to WP’s own edit.php file.
Forum: Fixing WordPress
In reply to: changing blog address optionsYes. That hit the spot. thanx.
Forum: Fixing WordPress
In reply to: Troubleshooting BackupI’ve got to put a plug in for the greatest webhost – Thomas at livehost.net. He found the problem Skippy, and I thought I should post it to save any future anguish. He installed a tool called mod_dosevasive that is trying to prevent Denial of Service attacks. It’s designed to allow only so many hits to the server in an elapsed period of time by the same user. It was set to allow 150 hits to the server in a second, more than that, and it would block the IP for 5 seconds.
Here’s what he did:
The script would backup one table, and rerun the same script over and over… Each time probably accessing some of the same components twenty or thirty times. Since the problem was too many accesses to the same objects per second, the script just needed to be slowed down.
wp-admin/edit.php started like this:
<?php
require_once(‘admin.php’);
$title = __(‘Posts’);
$parent_file = ‘edit.php’;
require_once(‘admin-header.php’);I added two sleep statements and it works great. And the same first lines of edit.php look like this:
<?php
sleep(1);
require_once(‘admin.php’);
sleep(1);
$title = __(‘Posts’);
$parent_file = ‘edit.php’;
require_once(‘admin-header.php’);Now if I can get the encoding straight.
thanks for your help everyone.Forum: Fixing WordPress
In reply to: Troubleshooting BackupSkippy, I’m impressed! Webhost told me I’m hitting up against an anti-denial of service tool called mod_dosevasive.
Do you know of any workarounds – he’s probably going to tell me not to use your backup util, but I don’t want to give sql or phpmyadmin access to site editors; besides those methods are a lot more difficult to carry out and I’d rather not have to be on constant backup duty.
Thanks.
Forum: Fixing WordPress
In reply to: Troubleshooting BackupFWIW, this is a new upgrade: 1.5.0 –> 1.5.1.3. Deleted all files except /content and config.php and uploaded the upgrade. Any issues here maybe?
Forum: Fixing WordPress
In reply to: Troubleshooting BackupGee. Didn’t think of looking in the log; can’t imagine why!
Two things. The backup stops just before the halfway area on the progress bar almost immediately after starting -doesn’t seem like a timeout thing, with this text underneath:
Backing up table “wp1_post2cat”…
Then, noticed this on the errors log:
[Tue Aug 16 18:08:36 2005] [error] [client ip] File does not exist: /home/found/public_html/403.shtml
[Tue Aug 16 18:08:36 2005] [error] [client ip] client denied by server configuration: /home/found/public_html/wp-fdn3/wp-admin/edit.php
[Tue Aug 16 18:08:11 2005] [error] [client ip] File does not exist: /home/found/public_html/wp-fdn/wp-rss2.phpDon’t know if the last (which is really the first about wp-rss2) is relevant, but the edit.php denial sure is, and probably the 403 too.
Don’t know how though.
Thanks once again.
Forum: Fixing WordPress
In reply to: Troubleshooting BackupSkippy thanks, but this wasn’t enough. /backup is set to 777, but your 1.6 hangs about a third of the way through the backup (for that matter 1.5 hasn’t been an honor student lately either).
A gz file, appropriately named, was saved to /backup, but it was just 2kb! I decompressed it, and opened it in Notepad++. It looked good until its last line, which was this:
# End of data contents of table
wp1_linkcategories
<line>There seems to be plenty of disk space on the server – I checked at the host.
One interesting piece: the file properties of the .gz file created in /backup shows itself as 644. Don’t know how it incarnated this way or if this has anything to do with the problem, but it seems suspicious enough to mention.
thanks everybody for your help.
Forum: Fixing WordPress
In reply to: Troubleshooting Backupthanx, macmanx. Was confused because I understood backups default to latin1 even if blog content settings are utf.
Anyone know why the backup files might be misbehavin’?
Forum: Fixing WordPress
In reply to: Troubleshooting Backupskippy: thanks. I kept my ftp s/w open during the ‘backup’. No files ever made it to /backup even before I clicked the ‘save to disk’. Actually, they may have – but they’re essentially empty (3k for what are normally 25mb+ files). Any ideas?
Also, any answers on the other stuff, esp. re: encoding details utf-8 vs latin1 on a phpmyadmin restore and how it works -getting shifted between utf on the blog and latin on the backups? thnx.
Forum: Fixing WordPress
In reply to: Troubleshooting BackupAnybody know their way around backup and restore?
One more question: if restoring with phpmyadmin, I have to choose an encoding scheme, such as UTF-8, latin1 or others.
Although I haven’t changed WPs default setting of UTF-8, I believe any non-specifically UTF-8 indicated command-line SQL backups are saved as Latin1 (including all the backups done with the various WP plugin utils). Therefore, which encoding choice is correct when doing a restore?
Podz, Lorelle – where did everybody go. Is there a WordPress convention going on I don’t know about?