My problem is I got classes that I want to use in my different websites. Lets assume I have a class called "CreateTable" in a file called "CreateTable.php". Other then adding new features to that...
I have an IIS host that has many websites (+10). I then have a global share PHP directory. Each of those 10 sites can include/require my classes/functions/etc from the global PHP shared directory.
...
My fix to make it a max limit of 50 users per page made the query even a tad slower (as it required yet another 'inner query', but at least it takes less then 2s to...
I got over 400 users and 10 fields. That means I got over 4000 records in 'entries' table. Getting all clients data on a single page takes over 10 seconds. Im...
I decided to implement it anyway. I figure if we get hacked or audited it will be a lot better then nothing. I also used two servers for the key. I am using an IIS site on our domain controller to...
Lets assume you have sensitive files that are being uploaded with PHP and you are using a 'secure' encryption method that cannot be decrypted without the key. But here is the issue I have:
1# On your first page you are passing the username and password right into a query. Even with sql safe quotes enabled in php ini I still would not do that (sql injection protection)
2# You only need...
How would I look into that? This server has more than enough space and im not aware of anything that puts a constraint on the temp folder or anything. That also would not explain how it never happens...
I noticed this error both when from going from page to page and when my ajax checks to see if a user is still valid. Once again this might only happen 1 in 100 times.
The apache website deserves a golden star for frustration (sort of ironic really). But I cant seem to find the apache 2.4 download for windows. Is there any? The latest download i see on their...
I want to make an instance of my class as global variable. Is this possible without having to always declare it was a global variable inside each individual function that use that variable?
I do re-use code a lot... I got 49 files in my classes and functions folder (then I also have other global classes/functions/includes that I re-use). This is just a massive project, biggest ive ever...
the original author replied to my post. He said I was out of luck since he was using windows tab API or something. But to reply to some of the questions:
I have a PHP page called adminConnect.php, it has a session start as its first line, some includes and some functions. One of those functions is "ValidateLogin()", it will auto redirect the user to...