-
Posts
68 -
Joined
-
Last visited
Everything posted by Tiberium
-
[SOLVED] RockPageBuilder .block class collides with tailwind
Tiberium replied to dotnetic's topic in RockPageBuilder
I edit my response above, you are scary ? -
[SOLVED] RockPageBuilder .block class collides with tailwind
Tiberium replied to dotnetic's topic in RockPageBuilder
yeah it is scary ^^ -
RockShell - a ProcessWire Commandline Companion ⌨️
Tiberium replied to bernhard's topic in Modules/Plugins
Ho, is it possible to config that (for example) the db:pull command will use a ssh-key file and the place would be configurable via the $config options? I mean, i know it can't use my ssh-agent on the host, but it would help in a team env, where you add the keys of the dev's in the authorization file on the server. Never mind, the answer is to load the .ssh in the ddev container... (from the ddev manual) If you use SSH inside the container and want to use your .ssh/config, consider mkdir -p ~/.ddev/homeadditions/.ssh && ln -s ~/.ssh/config ~/.ddev/homeadditions/.ssh/config. Some people will be able to symlink their entire .ssh directory, ln -s ~/.ssh ~/.ddev/homeadditions/.ssh. If you provide your own .ssh/config though, please make sure it includes these lines: UserKnownHostsFile=/home/.ssh-agent/known_hosts StrictHostKeyChecking=accept-new The option can set global, like above in ~/.ddev or per project projectFolder/.ddev -
Hi, when I use the frontend editing, I have the problem that the editor menu-/symbol-bar are not on top of the text above. When I try to use the symbols over the text above, it will frontend edit the text above. Also, changing the text field to "normal" editor do not change that behavior - because in frontend edit, it always seems "inline". The solution for me was to add .tox-tinymce { z-index: 99; } to solve the issue. But this css come from the core and not from the module RockPageBuilder. So for the moment, I put this rule in my _main.php via the <style>-tag in the <head>, with an if statement (only render when user with edit access are on the frontend). Is it something that has to be "corrected" on upstream (the core inputfield), by the module, or did my frontend dev something that mess about it in the first place? PS: Also, I'm little unsure if this post belongs more in RockFrontend Forum?
-
yes. Without problems. On which Processwire version are you?
-
It has nothing "direct" to do with ProcessWire. You never see it before, because a 404 (page not found) should hit relative rare from a user visit on your Website. Here it was a bot (or a script from someone) who visit your site and tried to find a leak in WordPress and other common Web-Apps. It stopped because the bot/script was finish "scanning".
-
A Bot tried to access your - not having - WordPress installation. Most likely to hack it in. The 404 message in the admin should come from a 3rd-party module. In a standard ProcessWire installation, you don't get this error "bomb". It even tried some Plugins... so it is a attack. If a bot or a script kid is hard to tell for me.
-
module SnipWire - Snipcart integration for ProcessWire
Tiberium replied to Gadgetto's topic in Modules/Plugins
After 4 years, it should be okay in my opinion. All my E-Commerce are on 8.x. I personal see no reason for 7.4. Since SnipCart self is again awake in developing, maybe a major version bump on the module side for a chance to cut old branches?- 233 replies
-
- 2
-
-
- shopping cart
- snipcart
-
(and 2 more)
Tagged with:
-
How to send Success 200 response to sender in webhook?
Tiberium replied to psy's topic in General Support
yep. You set the header of the return package. The next line is from my snippet... -
How to send Success 200 response to sender in webhook?
Tiberium replied to psy's topic in General Support
This is how i do it: // Return a valid status code such as 200 OK. header('HTTP/1.1 200 OK'); // By most Webhooks,i also want to give a json return header('Content-Type: application/json'); -
New post – Implementing and using TinyMCE 6 in ProcessWire
Tiberium replied to ryan's topic in News & Announcements
@csaggo.com I personally add the three classes in my frontend css on every processwire project. The rules are also for the old editor. .align_left { text-align: left; } .align_center { text-align: center; } .align_right { text-align: right; } When i know, there will be a conflict with other align rules, i set also !important. For uikit, you can add this rule in the site.scss, like here explained: https://getuikit.com/docs/sass#how-to-build the "// 1. Your custom variables and variable overwrites." section in the example code. -
Hi Ryan, as i read the first lines, i thought it would be a nice add-on for FormBuilder. Special in Combination with Page Break on larger Forms. Why it stick for you better in ProDevTools instead?