Search results

  1. S

    Workaround juser form plugin: cannot add new user with Allow User Registration set to No

    I've had a quick look at the Changelogs for J!5.2.2 and 5.2.3 but can't see anything obvious. There's one mention of users but relates to Password Reset. Happy to close this and change the Prefix to "Workaround" (but I can't do that, only "Solved"!)
  2. S

    Workaround juser form plugin: cannot add new user with Allow User Registration set to No

    I upgraded both at the same time, so probably J!5.2.2 and F4.4.1. It could have been earlier but probably not. I tested creating a user in Joomla back end (i.e. not using Fabrik) and it worked fine. Strange.
  3. S

    Workaround juser form plugin: cannot add new user with Allow User Registration set to No

    Hi Has something changed with the juser form plugin since F4.5/J!5.2.3? Having upgraded to both the above, when I try to add a new user from the front end using a Fabrik form and the juser plugin, I get an error message "Access Forbidden - Registration not enabled". (The Joomla User setting...
  4. S

    Form: New rows load very slowly

    Thanks @troester I haven't enabled BIG SELECTS. Wiki says you should only do this if you see an appropriate error message. Is it OK to try? "All indexes are there?" Sorry, how do I check this? I shall try your suggestion of taking out the troublesome group. Thank you.
  5. S

    Form: New rows load very slowly

    J! 5.2.2 F 4.4.1 I have a Fabrik app where the main list has 7 groups, 5 of which are repeatable. When I first started entering data, I did not notice any speed problems. However, now I have loaded over 200 records in the main list, there is a significant slowdown in the time take to load each...
  6. S

    SQL Error 1064: how to locate the problem statement?

    Thanks @troester Yes, the fileupload element has ajax upload enabled which has created the relevant child table in the database. HOWEVER, there is no join to the slideshow repeat table in the main list. You might think this is the problem, yet the fileupload element works fine uploading...
  7. S

    SQL Error 1064: how to locate the problem statement?

    Thanks @tghounsell I've already tried unpublishing some, but I'll keep trying.
  8. S

    SQL Error 1064: how to locate the problem statement?

    I'm getting an error 1064 when I try to display an item in a list (either detail or edit view). Here's what I'm getting: ERROR 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'WHERE parent_id =...
  9. S

    FixMe Front end addition not saving label for dropdown element

    Hi @troester. I've just tried using front end addition for a dropdown element in a non-repeating group and it's not working properly here either. Front end additions Enable = Yes, Only add label = No, Save new additions = Yes Result: new addition correctly appears in front end details for that...
  10. S

    Databasejoin: can label appear differently in Form and Details?

    Joomla 5.2.1 Fabrik 4.4.1 PHP 8.2.25 I have a databasejoin element to insert a person's name from another table. In the form, I would like the dropdown label to be styled lastname, firstname but on the details page I want the name to display as firstname lastname. But if I set the Concat label...
  11. S

    Solved Is it possible to copy fileupload image from one list to another?

    JPATH_SITE worked!! Thank you so much! I've learned lots of new stuff from this one post. :D
  12. S

    Solved Is it possible to copy fileupload image from one list to another?

    No errors and nothing with debug enabled. OK, thank you, I’ll try those.
  13. S

    Solved Is it possible to copy fileupload image from one list to another?

    Thanks so much! That corrects the code above and creates the new file path for list2. It's correctly placed in the database for list2 as well. However, the copy($artwork,$event_image); command which I've placed immediately after the above doesn't copy the image from the original directory to...
  14. S

    Solved Is it possible to copy fileupload image from one list to another?

    OK, my code is now: $artwork = '{listname___elementname}'; //$artwork is the fileupload image $image_name = pathinfo($artwork,PATHINFO_BASENAME); $event_image = "/images/Events/".$image_name; But var_dump shows me an empty string! Even var_dump on the variable $artwork shows me an empty string...
  15. S

    Solved Is it possible to copy fileupload image from one list to another?

    I originally had the third line of the code as $image = $image_name[3]; but this produced no result at all in the database. I created a calc element in list1 to test the code by echoing out the result and it showed the second "/folder/" bit so I changed it to [4] and it displayed the correct...
  16. S

    Solved Is it possible to copy fileupload image from one list to another?

    $artwork = '{listname___elementname}'; $image_name = explode("/",$artwork); $image = $image_name[4]; $event_image = "/images/Events/".$image; copy($artwork,$event_image); the file path in the first element is /images/folder/folder/image.jpg This is then followed by the code to insert the...
  17. S

    Solved Is it possible to copy fileupload image from one list to another?

    Nope! I'm having difficulty with this. First hurdle: how do I get to the thumbnail image? I've only got a placeholder for the fileupload? I've written some code into the form php plugin to isolate the image name from the list1 path, then add the path for list 2 to the start of this. I know...
  18. S

    Solved Is it possible to copy fileupload image from one list to another?

    Thank you! Hopefully should be able to manage it now! :rolleyes:
Back
Top