524 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
213
views
React tailwindcss and catalyst dark mode toggle not changing
I'm using Tailwind, the latest version, and some Catalyst UI kit for the components.
I see that the catalyst has already dark: included in the classes.
I've created a context and a component for a ...
1
vote
0
answers
40
views
Working with Pre-orders in bigCommerce Catalyst
PreOrders with Catalyst
Hello, I am trying to integrate Pre-order functionalities to my catalyst application but I don't get any of the "ProductPreOrder" fields in my GraphQL query. Can ...
0
votes
1
answer
106
views
Catalyst app UTF-8 encoding doesn't seem to be working
I've noticed that my Catalyst app doesn't seem to be handling non-standard characters correctly - I first noticed this when the RTF text editor app I was using replaced " characters with the "...
2
votes
0
answers
63
views
I couldn't able to insert a record in Catalyst table through Catalyst API
I am facing "INVALID OAUTH TOKEN" while inserting a new record into a Catalyst Datastore table using Catalyst API.
{
"status": "failure",
"data": {
"...
0
votes
1
answer
562
views
How to get saved file name from UIDocumentPickerViewController on export
I'm saving a file using UIDocumentPickerViewController, by having it move and rename a file from a temp location:
UIDocumentPickerViewController* documentPicker = [[UIDocumentPickerViewController ...
1
vote
1
answer
56
views
Catalyst FormFu DBIC error - using dot notation in a resultset [closed]
I've inherited a Perl Catalyst application that I'm trying to port to a new server. The application uses FormFu with the HTML::FormFu::Model::DBIC module used to load data from a result set.
I have a ...
2
votes
1
answer
127
views
Perl/Catalyst $c->uri_for() issue in Windows IIS10/FastCGI
I have a Perl/Catalyst WebAapp running on Windows IIS with FastCGI.
I am trying to move the application from Windows 2012R2/IIS8.5 to 2019/IIS10
Old: Windows 2012R2/IIS 8.5(Perl:5.20.2(x64)/Catalyst: ...
2
votes
0
answers
61
views
Catalyst-Plugin-Authentication how do I check a history of encrypted passwords
we are using Catalyst-Plugin-Authentication for storing hashed passwords and it's working great.
Now we have a requirement to keep an X number of hashed password history and check new password against ...
2
votes
1
answer
286
views
Return or detach from Catalyst controller action?
Let's assume I have the following action in a Catalyst::Controller that requires the parameter bar to be present. If this parameter is not given in the query I want to show an error message:
sub foo : ...
2
votes
0
answers
117
views
HTML filter on Template Toolkit. perl [closed]
Can someone tell me why in others code I saw expression like: [% variable | html | html %]. What is the reason to use two html filters? For example in perl catalyst controller:
sub index :Path Args(0) ...
0
votes
1
answer
73
views
Catalyst Template-Toolkit failures when AUTHOR_TESTING or RELEASE_TESTING variables are set
I have a Catalyst application that uses Template Toolkit.
We recently decided to reorganise some of the tests so that some are skipped unless AUTHOR_TESTING or RELEASE_TESTING variables are set (which ...
1
vote
0
answers
263
views
How to import `State` from `catalyst` version 22.2.1?
I tried to run an old code on my local machine, but running:
from catalyst.dl import State
results into
ImportError: cannot import name 'State' from 'catalyst.dl'
I also tried
from catalyst.core....
2
votes
1
answer
67
views
Adding CatalystX::I18N::Maketext to my DBIC schema
sorry, I thought I had got there after my last post, however I only got as far as accessing from a separate PL file. I'm now trying to ensure I can load the lexicon with the schema load and not ...
1
vote
1
answer
122
views
Perl and Catalyst: accessing maketext from a model
Edited to clarify / reflect what I've been trying:
I'm using CatalystX::I18N::* in order to be able to internationalise my site. I have that working nicely, and my site text is coming from $c->...
2
votes
1
answer
172
views
Serving ionic vue build through perl server is not working
I have a perl application and want to change parts of it to an ionic app.
I'm building my ionic vue app with ionic build and redirect in a perl controller to the index.html file in the generated dist ...