Skip to content
  • 0 Votes
    2 Posts
    0 Views
    J
    Mine was the first report of the user? "the debugger doesn't tell me anything because this code compiles just fine" - random QA comment "Facebook is where you tell lies to your friends. Twitter is where you tell the truth to strangers." - chriselst "I don't drink any more... then again, I don't drink any less." - Mike Mullikins uncle
  • 0 Votes
    2 Posts
    0 Views
    N
    Kent Sharkey wrote: WordPress deemed hazardous If only WordPress... :sigh: M.D.V. ;) If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about? Help me to understand what I'm saying, and I'll explain it better to you Rating helpful answers is nice, but saying thanks can be even nicer.
  • 0 Votes
    6 Posts
    0 Views
    A
    The choice between storing files in a filesystem or as blobs in a database depends on various factors, where both approaches have their own pros and cons to consider. Filesystem - Pros- Considered generally faster for read and write operations compared to databases. Much easier to scale horizontally by adding more servers with shared access to the file system. Cons- Handling backups and recovery might be more complex especially if it grows over time. Keeping file data and related metadata consistent can be challenging. Database - Pros- Easier to maintain consistency between file data and metadata in a transactional database. Database backups usually cover both file data and metadata. Cons- Retrieving and storing large files can impact database performance. You may face scalability challenges when dealing with a large number of files.
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • Anyone looked at HTMX?

    The Lounge javascript csharp php html linux
    15
    0 Votes
    15 Posts
    0 Views
    J
    I'm old at heart. Reached the I've seen it all phase... just need that front porch and cane to make it legit. :laugh: Jeremy Falcon
  • 0 Votes
    2 Posts
    5 Views
    J
    This forum is for regex in general. So specifics to fail2ban are not likely to succeed. Googling I found other posts about this although I did not look into it deeply. fail2ban ah01264 Based on that seems possible at least. But in general "error messages" across all applications are seldom well regulated. Thus attempts to capture them either lead to too few or too many. Until one has enough actual examples to code to. Even then updates might change that. For this forum you can post a regex and examples and we can correct the regex from that.
  • OST File Recovery

    Database php com security
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • 0 Votes
    2 Posts
    0 Views
    D
    ...and that's why my company blocked all connections to ChatGPT and derivatives in all the countries it operates in. We actually do innovation and leaks will not be tolerated. We have enough issues of internal corruption and sales of IP as it is, at least let's a clamp on accidental breaches. GCS/GE d--(d) s-/+ a C+++ U+++ P-- L+@ E-- W+++ N+ o+ K- w+++ O? M-- V? PS+ PE Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++*      Weapons extension: ma- k++ F+2 X The shortest horror story: On Error Resume Next
  • 0 Votes
    14 Posts
    0 Views
    OriginalGriffO
    That's OK - I did, and had a "Thank you" email from the organisers. :-D I do dislike cheats ... "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt AntiTwitter: @DalekDave is now a follower!
  • 0 Votes
    4 Posts
    0 Views
    J
    I ended up with this, a compromise between using a hammer to nail it through with no more console errors, and fixing several security issues for the better. By hammering it, I can get the app running for the owner to evaluate and test, and then consider more security fixes and upgrades. Font-Awesome or the FortAwesome free version I removed all the Font-Awesome errors, but removing the all.min.js JavaScript file from the header elements. Turns out I don't need that JavaScript, and what it does is this.. Instead of using the fonts from Node_Modules, it fetches the latest version of the fonts and other stuff, to replace what Node_Modules has, and does things like monitor the use of the product, and causes licensing issues where it's no longer the free version. Well, the files it fetched were the free version files at least, so I got something right that I tossed in the trash. Diagnostics I used Mozilla FireFox at first, but it gave me generic information back, that never changed. I assume the headers I was inspecting was for public consumption. I ended up having to use Chrome in Developer mode, to see the real headers being returned from the response of the web page loading. ECMA Script Modules I used this to solve that issue in CSP. The use of a nonce. Declaring a master module that references child modules on a web page. script type="module" src="/assets/scripts/core/core.module.js" nonce=""> Inline scripts I used this in the CSP rule below, to solve script within a element, calling onclick or onchange script-src-elem 'self' 'unsafe-inline' 'unsafe-hashes'; onclick="core.setProjectType('', 'landscape')" SVG like spinners and things you embed on the web page img-src 'self' data: w3.org/svg/2000; Warning This is not my best work, and not completed yet, but gets the project back up and running so I can finish it and be done with it. This work does leave me with a little more work to beef up the security some more, but on my terms and not the web server or browsers terms. If your clueless about this subject, then you can use this as a reference to model something for yourself. Remember I'm not an expert on this subject, but do understand the point. And I spent many hours doing research and reading, plus testing. It doesn't matter that this is PHP, because the principals are the same with most w
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • WordPress for Windows

    Web Development php sysadmin question
    6
    0 Votes
    6 Posts
    0 Views
    T
    If you're looking for a server-side web framework similar to WordPress but built on Microsoft technologies, consider using ASP.NET with Umbraco or DotNetNuke (DNN). These frameworks offer robust content management features and are built on the .NET platform. For expert guidance on setting up and optimizing these frameworks, you can reach out to Trisync Solutions. They specialize in web development using Microsoft technologies and can help you achieve your goals efficiently. "The difficult we do right away... the impossible takes slightly longer."
  • Get List Of Physical & Logical Drives

    C# php mobile com hardware help
    3
    0 Votes
    3 Posts
    0 Views
    K
    Great thanks. I'll take a look In theory, theory and practice are the same. But in practice, they never are.” If it's not broken, fix it until it is. Everything makes sense in someone's mind.
  • Semantic Versioning is a terrible mistake

    The Insider News php com question
    4
    0 Votes
    4 Posts
    0 Views
    R
    Even worse if you depend on libraries A and B, which both depend on C, but each depends on a different and incompatible version of C. X| "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
  • how PHP works

    Web Development php tools help question
    8
    0 Votes
    8 Posts
    0 Views
    U
    PHP is a scripting language, which basically means there is an "exe" somewhere reading the php script every time there is a request. For php that will be Zend Engine.
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    2 Posts
    0 Views
    L
    Please read my reply to the poster of the question below: Re: WordPress database error: [You have an error in your SQL syntax;[^].
  • php

    Linux, Apache, MySQL, PHP php tutorial
    2
    0 Votes
    2 Posts
    11 Views
    L
    www.google.com[^]
  • 0 Votes
    2 Posts
    0 Views
    L
    This forum is for issues with the CodeProject website, and is the wrong place for your question. Please use https://www.codeproject.com/Questions/ask.aspx[^] for general questions. However, as you can see, you are missing a parameter value after "ID = " in your SQL statement.