Jump to content

Valtasar

Clients
  • Posts

    227
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Valtasar got a reaction from SeNioR- in I can't reply to some open topics   
    Finally i solved this problem..
    It wasn't 3rd party item, not a theme issue.
    If a post have quote in quote, nobody can use the HTML editor.
    If this post is hidden, normal members can use the editor but not the admins (who can see the post)
  2. Thanks
    Valtasar reacted to onlyME in Topic Thumbnail for IPS4.x   
    @Valtasar please download it again, I just uploaded new file 
    It's a topics feed not posts feed like the screenshow you shown me, so it's better to display starter.
    But you can display the last poster if you want, edit your theme > core > global > plugins > bim_tthumb_widget
    Find
    $topic->author()->link() Replace by
    $topic->lastCommenter()->link()  
  3. Like
    Valtasar reacted to onlyME in Topic Thumbnail for IPS4.x   
    Revert it and wait for the next version  
  4. Thanks
    Valtasar reacted to onlyME in Topic Thumbnail for IPS4.x   
    Edit your theme > core > global > plugins > bim_tthumb_widget
    Find and remove
    'do', 'getNewComment'  
  5. Like
    Valtasar reacted to onlyME in Topic Thumbnail for IPS4.x   
    Ok, I will test it 
  6. Thanks
    Valtasar reacted to Adriano Faria in Change Post Date   
    I start to believe that there's something more out there. I  haven't tested this yet (will do this weekend). My dev board has ALL plugins disabled, inclusing this one, and I keep getting this repeatdly:
     
  7. Thanks
    Valtasar reacted to Adriano Faria in Change Post Date   
    No, as you can see the file wasn’t updated. Follow the file and you’ll get notified when it’s done.
  8. Thanks
    Valtasar reacted to Adriano Faria in Change Post Date   
    I’ll try to reproduce.
  9. Thanks
    Valtasar reacted to TheJackal84 in (DF41) Enhanced User Info Panel (Support Topic)   
    Updating it should not cause the ACP to have a white screen, Can you access it in any way?
    I will install a language pack and test it out
  10. Like
    Valtasar reacted to InvisionHQ in iAwards   
    You need to know what awards app do you try to update. jawards or award system?
    This is the only two old apps with the upgrade tool.
  11. Thanks
    Valtasar got a reaction from Adriano Faria in Ignore Topics   
    You are great !!!! Thank You 
  12. Thanks
    Valtasar reacted to Adriano Faria in Ignore Topics   
    What's New in Version 2.1.3:
    Added support to Clubs
     


  13. Thanks
    Valtasar reacted to Adriano Faria in Ignore Topics   
    I'll take a look for a new version.
  14. Thanks
    Valtasar got a reaction from Adriano Faria in Ignore Topics   
    Works like a charm  Thank you Adriano.
    Would be great if it can be ignored topics from Clubs.....
     
  15. Like
    Valtasar got a reaction from *Yaser* in Charset Conversion Libraries   
    As promised, here is my php script to automatically convert a IPB2 database to utf8.
    It does not use IPB2-style queries, but seems to work for me, converting most of my iso-8859-7 database to utf8.
    However, it still fails in a few cases, which I have to investigate in the next days.
    The reason is probably (as I noticed) that there is some binary content within some text fields (??),
    which I can only guess are either already utf8-encoded chars, or I don't know what.
    I will have to write to a file the specific cases where txt_convert_charsets fails, to find out what really happened.

    As I also explain inside the file, in my case, default charset for remote and local database was utf8 but the database had latin1 charset, latin1_swedish_ci collation and IPB charset was set to 'iso-8859-7'.
    Hence it was also erroneously displayed in phpmyadmin.
    When I got my local sql backup, the content was really utf8-encoded latin1 chars (I couldn't get anything better from backup/phpmyadmin)!
    I then changed all the "CREATE TABLE" and "SET character_set_client" commands from latin1 to utf8, trying to do
    ABSOLUTELY NO modification to the content of the database, before running the attached script.

    - Serialization is handled quite nicely I think, with a command I found to change the string lengths (without unserializing).
    - It is fully automatic - it will examine your database and convert only "char varchar text enum set tinytext mediumtext longtext" fileds.
    - Skips fields to be converted if they are a primary key. Any ideas on how to convert these? (small problem-I guess they do not contain utf8 strings).
    - Skips conversion if the table does not have a primary key (odd but there existed such tables in my IPB2 database-not any important ones of course).

    To run it, just place it at your IPB home directory, and change the database connection details and your source charset.
    You can optionally convert html entities after utf8 conversion:it worked for me, but it was the opposite of what bfarber says in the above post: html_entity_decode( $out, ENT_NOQUOTES, "utf-8" ) worked fine (php5.2.6, mysql 5.0, windows xp) while mb_convert_encoding($out, 'utf-8', 'HTML-ENTITIES') failed-I really don't know why!

    Feel free to try it, and to correct/improve it if possible, so that at the end we all manage to convert our databases to utf8!
    ipb2_utf8_convert.php

    VERY IMPORTANT: ONLY USE THIS FOR EXPERIMENTATION AND ONLY USING A LOCAL COPY!
  16. Like
    Valtasar got a reaction from GemaldeGR in Charset Conversion Libraries   
  17. Like
    Valtasar got a reaction from Tcapb in Charset Conversion Libraries   
×
×
  • Create New...