Recent content by ponology

  1. P

    [Discuss] Route Prefix Loading process

    So... will this get changed in the next release? :D I don't think that feature will be implemented. It just feels like... not Kier and Mike's style
  2. P

    Creating Sub Pages within a Mod?

    I'm not sure if this is the best way but it worked: Go to AdminCP > Development > Route Prefixes. Add a new one for you (let's say "portal", and configure it to use your class) In your route prefix class, put something like this class MyAddon_RoutePrefix implements XenForo_Route_Interface {...
  3. P

    Fixed  Apache/PHP crash on db query (Windows)

    Very nice investigation, Mike! So I think we will just go around this :D
  4. P

    Fixed  Apache/PHP crash on db query (Windows)

    Maybe a PHP configuration? Like memory limit or something. What are yours? On my Windows machine, I increased it to 256M but that stack overflow still happened. Running a Core 2 Duo 2.1Ghz, 2GB RAM
  5. P

    Fixed  DataWriter hook

    This one is minor, I just post here so you remember to fix it before the next commit Class: XenForo_DataWriter Line: 1837 Original return new $class($errorHandler, $inject); Should be return new $createClass($errorHandler, $inject); Anybody can't get load_class_datawriter working, fix it :D...
  6. P

    Fixed  Apache/PHP crash on db query (Windows)

    Hi Mike, Yeah, it was very hard to catch as most of the time the script runs in the background. I don't know if this information is helpful: I didn't use a bundle solution (WAMP for example), I setup my Apache/PHP/MySQL by myself. I enabled and installed a few extra Apache modules and PHP...
  7. P

    Fixed  Add-on Uninstall Callback

    Yes, I was going to report this :D
  8. P

    [Discuss] Route Prefix Loading process

    I want to use the load_class_route_prefix code event to "hook" into buildLink method of XenForo_Route_Prefix_Threads and XenForo_Route_Prefix_Forums to prevent them to produce links with non ascii characters. In theory, it should be find by extending those classes with a code event listener...
  9. P

    Fixed  Apache/PHP crash on db query (Windows)

    I'm running XenForo in Windows XP (the machine mentioned in the first post) by using a database dump from my other linux box. It works very well until now. I can edit templates and everything. I copy and pasted a few time into template editor and it was saved without any "exception" raised. Very...
  10. P

    Fixed  Apache/PHP crash on db query (Windows)

    I updated the post with information when I use Visual Studio to debug the exception in httpd
  11. P

    Fixed  Apache/PHP crash on db query (Windows)

    I downloaded the latest package and failed to install it. After a few tracing, I commented out this line $data[] = ' INSERT INTO xf_bb_code_media_site (media_site_id, site_title, site_url, match_urls, embed_html) VALUES (blah blah blah) '; And the installer went through...
Top Bottom