Recent content by MS1

  1. MS1

    XF 1.4 Local copy redirects to domain

    The cache was the problem - I didn't knew the browser cache also contains htaccess-files! I cleared it -> now everything works great. You have helped me a lot! Greetings
  2. MS1

    XF 1.4 Local copy redirects to domain

    @andybond No! I develop a lot of scripts and pages with XAMPP and don't have problems (there is no redirect when I navigate to these folders or files)
  3. MS1

    XF 1.4 Local copy redirects to domain

    Can I change them directly in the database of my local copy?
  4. MS1

    XF 1.4 Local copy redirects to domain

    That's what I tried. But unfortunatly I also get directly redirected to the live site... that's so strange!
  5. MS1

    XF 1.4 Local copy redirects to domain

    That's my problem! I can't even analyse any of these things, because I get directly redirected to the online site. It's like there is somewhere still an htaccess redirect?!
  6. MS1

    XF 1.4 Local copy redirects to domain

    config.php <?php $config['db']['host'] = 'localhost'; $config['db']['port'] = '3306'; $config['db']['username'] = 'root'; $config['db']['password'] = ''; $config['db']['dbname'] = 'mydb'; ?>
  7. MS1

    XF 1.4 Local copy redirects to domain

    Hello, currently I'm using xenforo version 1.4.5 and I want to update to 1.5! Therefore I downloaded all my files from the server (also the database from the server) to create a local copy. For testing purposes I want to update xenforo on my local machine (XAMPP) - then I can see if there are...
  8. MS1

    Fixed Facebook integration - no email returned

    Hi guys, I'm embarrassed...I'm german :D Sorry, for the misleading avatar. At that time I wanted to test the avatars function quickly and took the first picture that came along. Nevertheless some germans also like koala bears ;) Honestly, I don't know much about the coding of the login...
  9. MS1

    Fixed Facebook integration - no email returned

    I have exactly the same problem described by @Sim !
  10. MS1

    Other BBCode [finished]

    Good evening experts, I would like to place an order, since I am stuck with a problem. It is the implementation of a BBCode. In principle, this is indeed very simple and intuitive at XenForo. However, there are still some difficulties for me. The problem is not actually generating the action I...
  11. MS1

    XF 1.3 JavaScript in BBCode

    I want to include some Latex inside my new forum with fallback! I have made the decision that someone must help me with this problem - because I lack the tools. So I think I´ll put my problem to the "Development Requests" to find someone - against payment of course. If you are interested I could...
  12. MS1

    XF 1.3 JavaScript in BBCode

    Yes, I already thought about this problem with a user which disables JavaScript while already get the cookie. But this weakness I would accept. I agree with your statement. But this only happens the first time?! Because of the reload of the page, the javascript code was executed and on the next...
  13. MS1

    XF 1.3 JavaScript in BBCode

    Thank you for your detailed answer, @katsulynx ! Basically I want to check with a cookie if the user has JavaScript enabled or not. Because of that I think I need to use both (Php and JS as combination), and check if the cookie exists. Here you can see my full code (which avoids the infinite...
  14. MS1

    XF 1.3 JavaScript in BBCode

    Ok, now I understand the problem! Thanks! But how can I realise something like the following? <?php public function renderTagbb1(array $tag, array $rendererStates) {?> <script type="text/javascript"> createCookie("mycookie",1); document.location.reload(); </script> <?php...
  15. MS1

    XF 1.3 JavaScript in BBCode

    Ok, so the following code will not work correctly, because the JavaScript-Code is not included in the "return-Statement"? <?php public function renderTagbb1(array $tag, array $rendererStates) { ?> <script> alert("Hello"); </script> <?php $output="Executed"; return $output; }...
Top Bottom