Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

Migration Vanilla 2 : Bug Categorie : Oops - Didn't saver order properly

TofTof
edited January 2016 in Vanilla 2.0 - 2.8

Vanilla 2.2
Theme Bootstrap
Serveur de Test : http://88.181.151.128:8080/

Bonjour à tous,

J'ai un bug dans la section catégorie :

J'ai importé ma base de mon forum qui est sous phpbb sans souci et dans la section catégorie, je retrouve l'ensemble de mes catégories qu'il y a sur le forum phpbb.

Toutefois, on peut créer des catégories à la racine, mais ensuite si on souhaite les déplacer (comme prévue) avec la souris, on obtient le message suivant : "Oops - Didn't saver order properly" et on ne peut plus déplacer les catégories.

J'ai procédé à une installation neuve sur un autre serveur avec juste l'importation de ma base phpbb sans l'ajout ou l'activation de plugin et sans aucun apport de module type traduction ou autres... Et le bug est toujours présent.

Merci pour votre aide

Christophe

Comments

  • Bonsoir,

    J'ai trouvé quelques pistes mais je ne suis pas developpeur. Si quelques pouvaient m'aider : http://vanillaforums.org/discussion/21239/unable-to-arrange-categories

    Merci à vous

    Christophe

  • Help me please !!

  • R_JR_J Ex-Fanboy Munich Admin

    Do you have any JavaScript errors showing up in the console when you try to resort the categories?

  • TofTof
    edited January 2016

    Hi @R_J ,

    I do not think. My level of development is low
    Here is a screenshot. I will create an account on my test server with as login: R_J
    I send you the password by MP
    Thank

  • R_JR_J Ex-Fanboy Munich Admin

    There is no js error in the console.

    @Linc Do you know of a problem with category sorting when there are nearly 300 categories nested 4 (maybe 5) levels deep?

  • no

  • K17K17 Français / French Paris, France ✭✭✭

    J'ai essayé d'aider mais j'ai pas trouvé :/

  • hgtonighthgtonight ∞ · New Moderator

    @R_J said:
    There is no js error in the console.

    @Linc Do you know of a problem with category sorting when there are nearly 300 categories nested 4 (maybe 5) levels deep?

    Yes. This is a known issue.

    https://github.com/vanilla/vanilla/issues/1888

    With the default PHP config, 200 categories is the soft limit.

    Search first

    Check out the Documentation! We are always looking for new content and pull requests.

    Click on insightful, awesome, and funny reactions to thank community volunteers for their valuable posts.

  • hi,

    Thank you, I had seen information

    I do not know how to add it in my .htaccess

    When I write in the .htaccess line 1:
    php_value max_input_vars 3000

    I no longer have access to my VANILLA forum

    I saw on a site that had to put this:

        php_value max_input_vars 5000
        php_value suhosin.post.max_vars 5000
        php_value suhosin.request.max_vars 5000
    

    It still does not work. Error 500 Internal Server Error

    This is my .htaccess :

    # Original
    # php_value max_input_vars 3000
    # If you modify this file then change the above line to: # Modified
    <IfModule mod_rewrite.c>
       RewriteEngine On
       # Certain hosts may require the following line.
       # If vanilla is in a subfolder then you need to specify it after the /.
       # (ex. You put Vanilla in /forum so change the next line to: RewriteBase /forum)
       # RewriteBase /
       RewriteCond %{REQUEST_FILENAME} !-d
       RewriteCond %{REQUEST_FILENAME} !-f
       RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L]
    
    </IfModule>
    
  • PHP Version 5.5.29

  • vrijvlindervrijvlinder Papillon-Sauvage MVP

    the htaccess should not have a # in front of RewriteBase if you want urls to look nice.

  • if I delete the # can not go to categories

  • This is my .htaccess :

    # Modifié
    # php_value max_input_vars 3000
    # If you modify this file then change the above line to: # Modified
    <IfModule mod_rewrite.c>
       RewriteEngine On
       # Certain hosts may require the following line.
       # If vanilla is in a subfolder then you need to specify it after the /.
       # (ex. You put Vanilla in /forum so change the next line to: RewriteBase /forum)
       RewriteBase /forum
       RewriteCond %{REQUEST_FILENAME} !-d
       RewriteCond %{REQUEST_FILENAME} !-f
       RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L]
    
    </IfModule>
    

    I have an error : Internal Server Error when active this .htaccess

  • vrijvlindervrijvlinder Papillon-Sauvage MVP

    If your install is in the root just use /

    If the folder where you installed vanilla is called forum or something else, use /forum or /the name of folder where vanilla is installed.

  • TofTof
    edited January 2016

    ok,

    The folder of my installation is forum.

    Je dois mettre comme information :
    RewriteBase /forum

    If I put this information, the main page is accessible.

    By cons I can not go to the category because it causes an error 500

  • hgtonighthgtonight ∞ · New Moderator

    You should change the input values via your php ini file, not your htaccess file.

    Search first

    Check out the Documentation! We are always looking for new content and pull requests.

    Click on insightful, awesome, and funny reactions to thank community volunteers for their valuable posts.

Sign In or Register to comment.