Jump to content

Tiberium

Members
  • Posts

    68
  • Joined

  • Last visited

Everything posted by Tiberium

  1. I don't know if it belongs here, but i installed .5 and get some log with markup error in the log view, where the html notation gets showed in the url col (and the link is also broken): Aside from that, everything is smooth. I was too slow for testing with .4 and your check ?
  2. I had it on two installation in the past (Nov/Dez timeframe). But then not more. Both had RockMigrations, one had RockFronted - but they didn't had/have RockPageBuilder.
  3. I had the same issue and fixed it in the same way last year - i thought i changed the setting and was responsive for it - so i didn't report it.
  4. I edit my response above, you are scary ?
  5. 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
  6. 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?
  7. yes. Without problems. On which Processwire version are you?
  8. 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".
  9. 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.
  10. 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?
  11. yep. You set the header of the return package. The next line is from my snippet...
  12. 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');
  13. @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.
  14. 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?
×
×
  • Create New...