Search
If you want something that is marginally cheaper in some regards and doesn't have too much custom stuff to wrangle with (AWS has a lot of stuff like IAM, security groups etc. that can be annoying t...
After cloning qpixel (yesterday), I can't post anything. I was trying to setup database properly. rails db:create database already exists rails db:schema:load -- create_table("abiliti...
Here is an easy way to directly link CoDesign to QPixel. Clone QPixel and follow the instruction to run QPixel in your system. Then, make changes to /app/views/layouts/_head.html.erb. Clone CoDesi...
If I understand you correctly, you want to get the last_edited_at column for every child post, i.e. a list of last edit dates? For this you should use post.children.map(&:last_edited_at) w...
How to solve Can't connect to MySQL server on 'bimberspot.com:3306' (111)
Did you run the database seeds? (rails db:seed) That should have set up initial post types, help topics, and probably some other stuff. (Edit: but it didn't work for me either, so...) If you wa...
I provided the feedback linked in this question. I'd like to clarify, in no way would I want time estimates or similar. Just a list of features that have been discussed and agreed to be worth addin...
I don't know the correct way to do this, but I was looking at the commit that added donations, and I wonder, as a workaround until you get the correct answer (presumably from Art), it would work to...
I ran tests (bin/rails test) and got Error: AdvertisementControllerTest#test_image_paths_should_return_png: Magick::ImageMagickError: no decode delegate for this image format `' @ error/constitu...
I have this error in my local environment too, and I've not been able to figure it out yet. It's somehow related to ImageMagick being built (or not) with the right image libraries, but as far as I ...
I ran earlier into this in a slightly different way, now I redid the whole QPixel setup but the problem persists: I added a first category to a development instance and wanted to create a first po...
Following the set up guide I was able to start rails server and got my very first QPixel page served (see screenshot): Unfortunately it was a 500 Server Error, which I did not expect and which w...
The error is actually a ActiveSupport::MessageEncryptor::InvalidMessage, which means either the message you're trying to decrypt is corrupted (it isn't), or you have the wrong key. Since the creden...
Stripe setup is handled in config/initializers/stripe.rb, where the Stripe API key is set based on the values saved in the Rails credentials file. You should be able to run rails credentials:edit ...
Speaking to the comment, classes is better style attribute. But, if someone already have written something in CoDesign then how can I use class for that? e.g. I had used $tgt.addClass('has-border-...
When creating a new post in the Q&A Category, I'm asked whether I want to create a question or a wiki article. Are these both stored in the Q&A Category for historical reasons, perhaps due ...
after rails db:create Lost connection to MySQL server at 'reading initial communication packet', syste m error: 0 Couldn't create 'qpixel_dev' database. Please check your configuration....
On Ubuntu 20.04 (WSL) I wanted to provide an arbitrary, non-empty Stripe API key and following this answer by Art edit the credentials accordingly. export EDITOR=vim bin/rails credentials:edit ...
Title says it all. Need somebody with database access for it. Is needed for discussion in a Github issue.
How to get specific children's column? For questions, I can use @post.last_edited_at or, something just like this. But, I was thinking to fetch a single column for all child. <% post.children.l...
Use the following command for live server. said Luap (Discord) npx @11ty/eleventy --serve It is better than other answers.
It was a minor regression. Fixed in https://github.com/codidact/qpixel/commit/993562804a2843d1e96764ffe6d955f9f333389d
As a quick fix one can remove test should create PaymentIntent from DonationsControllerTest which may backfire later on, but gets you one step further for the time being.
I'm setting up a QPixel instance. I just created a new category and I realized in the rails s output a NameError in avatar_helper.rb: Started GET "/users/1/avatar/40.png" for 127.0.0.1 at 2022-01-...