Forum Replies Created
-
AuthorPosts
-
peterlaursenParticipant
after saving from BLOB-viewer half of picture is missing.
peterlaursenParticipantnot quite yet ..
It does not hang and it does not crash anymore. But graphics still not always shown. Attached pic won't show in browser after it has been saved. It a simple jpg. Any filesize limit on what BLOB-viewer can handle.
Most important: I also experienced corruption of binary data when saving from BLOB-viewer. Actually I exprienced that more often than I experienced that saved data were OK
It's not safe!
peterlaursenParticipantQuote:Do you know when that version will be available?Yesterday it was tomorrow (it is about 2 am here). So with some luck it will be as soon as the day after yesterday! 😀
Check the last post by Ritesh here:
peterlaursenParticipantsome questions:
1) are there som “mods” with that forum. Some “mods” may alter the config tables of the DB. Other “mods” may alter the php-code. Porting a “modded” forum can be very complicated. Mods and data import have to be applied in the right order.
2) Did you copy your old php-code to new server (phpbb2-library) ?
3) MySQL and php-version on the servers ?
If SQLyog says that everything was imported it could be that not everything was exported ?
Data also may be there but not used by the code ?
Did you try the forum at http://www.phpbb.com/ ??
peterlaursenParticipantQuote:maybe I typed in an obscure pwyes maybe … if you tried to use the name of your Windows' user account, then you can't connect! MySQL does not use the Windows' user management – it operates its own user accounts. That's a common misunderstanding with new MySQL users …
peterlaursenParticipantmaybe this is most illustrative:
/*this is correct */
/*************/
select 'backs\ash' like '%\\%'; /*returns 1*/
/* after stripped by LIKE-parser >> */
select 'backs\ash' like '%\%';
/* MySQL server pattern match actually check for >> */
select 'backsash' like '%%';
/*checks if -character is contained in literal string 'backsash' */
/* These are all wrong and return 0 */
/*****************************/
select 'backs\ash' like '%\%';
/* fails with LIKE-parser – like '%\%' becomes like '%%' after being stripped by parser
so with MySQL server pattern match it checks 'backsash' for match with “wildcard-meaning-% followed by literal-%” */
select 'backsash' like '%\\%';
/* fails with MySQL server pattern match – 'backsash' simply resolves to 'backsash' with MySQL server pattern match */
select 'backsash' like '%\%' ;
/* fails with both –
checks 'backsash' for match with “wildcard-meaning-% followed by literal-%” */
Goodnight from here – dream sweet 😆
peterlaursenParticipantFinally I shall point out that this “