• Member Avatar for cereal
    cereal

    Replied To a Post in Deleting a single record by id

    The code seems to be okay, are you sure opcache is disabled? If you are using PHP 7.0 then it's enabled by default, so if you ran the delete.php script …
  • Member Avatar for cereal
    cereal

    Began Watching Deleting a single record by id

    I have a list.php which displays all the records that is in the database with 2 options Edit or Delete. When clicked its suppose to delete by id but instead …
  • Member Avatar for cereal
    cereal

    Gave Reputation to pty in Cross-Posting

    > Unfortunately I am as much in the dark as everyone else here as to how to adapt. Have a quick look at what's replaced forums in this area. Take …
  • Member Avatar for cereal
    cereal

    Replied To a Post in AutoGenerator For Names

    Also look at [declension](https://en.wikipedia.org/wiki/Declension) rules to apply specific syllables and make names look more natural.
  • Member Avatar for cereal
    cereal

    Began Watching AutoGenerator For Names

    Hello everyone hope you are doing well, i was busy these days i was having problem with the police in my country, they catch me smoking weed and now i …
  • Member Avatar for cereal
    cereal

    Replied To a Post in Use modulus operator to convert time

    Hi Fabiana_1, if you have a question then, please, start a new thread by clicking on **Contribute**.
  • Member Avatar for cereal
    cereal

    Began Watching Use modulus operator to convert time

    I need to convert hours into weeks, days, and hours. My professor was hinting that there might be a way to do this using the modulus operator but I can't …
  • Member Avatar for cereal
    cereal

    Began Watching Looking for a running app partner 50/50

    Hello, I am running a social app called Fakenamez. You can download in App Store or check www.fakenamez.com. I am currently looking for a business partner who is good at …
  • Member Avatar for cereal
    cereal

    Replied To a Post in Cross-Posting

    diafol! Why delete? Keep the account and allow us to keep a contact with you, I cannot imagine this forum without your posts :(
  • Member Avatar for cereal
    cereal

    Began Watching Cross-Posting

    Is cross-posting against the rules? I believe it is not. I also believe that everyone here agrees with me that it's rude behavior. This thread, among others, causes me to …
  • Member Avatar for cereal
    cereal

    Replied To a Post in PUP.Optional.ASK

    Hi, try to follow the other suggested steps on their site: * https://malwarefixes.com/threats/pup-optional-ask-a/
  • Member Avatar for cereal
    cereal

    Began Watching PUP.Optional.ASK

    Hello, this morning my desktop was completely different. I used Malware Bytes and it found PUP.Optional.ASK. I removed the two files, restarted the computer and it's still there. Any ideas …
  • Member Avatar for cereal
    cereal

    Replied To a Post in The Best Way to Store ipv4 & ipv6?

    > Right now I would focus much on the storage size issue. Right now I would NOT focus much on the storage size issue. Pardon :p
  • Member Avatar for cereal
    cereal

    Replied To a Post in The Best Way to Store ipv4 & ipv6?

    You can use `varbinary(16)` to store IPV4 (4bytes) and IPV6 (16bytes), MySQL has some functions to convert the IP from a string representation to a blob and reverse, see for …
  • Member Avatar for cereal
    cereal

    Began Watching The Best Way to Store ipv4 & ipv6?

    I've been reseraching the best way(s) to store both ipv4 & ipv6 ip addresses. Simply put, so far there seems to be much debate as to how to do so …
  • Member Avatar for cereal
    cereal

    Replied To a Post in XAMMP - PHP not Displaying When Running File

    The above would not be an inline code, which is defined by backticks. Here you should use a code block, when you want to do such and you have other …
  • Member Avatar for cereal
    cereal

    Began Watching XAMMP - PHP not Displaying When Running File

    I have recently been using XAMPP for dev. Although I'm new to XAMPP, the recent issue sprung up surprisingly, the simple script running a day before. The script is just …
  • Member Avatar for cereal
    cereal

    Replied To a Post in password storage security

    Hi, see the recommendations made by the SANS Institute, pdf: * https://www.sans.org/security-resources/policies/server-security/pdf/database-credentials-policy it could help you, bye!
  • Member Avatar for cereal
    cereal

    Began Watching password storage security

    Hello Everyone, I have developed a DBMS and I want to store the credentials for server, and user name securely so that the users don't have to enter the password …
  • Member Avatar for cereal
    cereal

    Replied To a Post in Windows 10 Fall Creator's Update Fails to Install

    Hilarious & exhausting :) Do you think it would possible to log the offending entry through Process Monitor, while running the update instance? https://docs.microsoft.com/en-us/sysinternals/downloads/procmon
  • Member Avatar for cereal
    cereal

    Began Watching Windows 10 Fall Creator's Update Fails to Install

    Today I tried to install the Windows 10 Fall Creator's Update. It failed with the message ![2017-10-18_161217.png](/attachments/large/3/837de23baab769b190bf69bbceed71ee.png "align-center") I found this peculiar because I don't have that application installed. I …
  • Member Avatar for cereal
    cereal

    Gave Reputation to Reverend Jim in Windows 10 Fall Creator's Update Fails to Install

    So I tried downloading the in-place upgrade. That got me the same error as the first time but in purple. ![2017-10-18_214805.png](/attachments/large/3/fab374313fefa0c362db123ed6f6b6b9.png "align-center") So it's back to chat once again tonight.
  • Member Avatar for cereal
    cereal

    Replied To a Post in How to query a fingerprint template to return data/row in mysql

    You can add parameters to the selectCommand property, see these examples: * https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqldataadapter.selectcommand(v=vs.110).aspx * https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.parameters.aspx In your case, in pseudo code, try something like: sqlCommand.CommandText = "select StudentID from student …
  • Member Avatar for cereal
    cereal

    Replied To a Post in PHP: Array_count_values is way too slow, better ideas?

    Hi, in addition, have you tried with SplFixedArray? It should be faster than standard arrays. Also if you want to open files from the script, than use `fopen()` instead of …
  • Member Avatar for cereal
    cereal

    Began Watching PHP: Array_count_values is way too slow, better ideas?

    My script merges 18 files and returns all numbers that occur >=13 times within the merger. I timed my script and array_count_values is so slow it accounts for 80% of …
  • Member Avatar for cereal
    cereal

    Replied To a Post in How to query a fingerprint template to return data/row in mysql

    The error says: > Additional information: There is no row at position 0. So the query is not returning results, I read that [da.Fill() can return the number of rows …
  • Member Avatar for cereal
    cereal

    Replied To a Post in How to query a fingerprint template to return data/row in mysql

    Hi, `%bytes%` must be surrounded by quotes, because it's a string search, so change this: sqlCommand.CommandText = " select CaseFileNumber from ecms.fingerprint where FingerP like %bytes% " to: sqlCommand.CommandText = …
  • Member Avatar for cereal
    cereal

    Began Watching How to query a fingerprint template to return data/row in mysql

    Here is a sample of my code where I retrieve a fingerprint template stored in mysql database. I have stored the fingerprint template as BLOB type. I have a table …
  • Member Avatar for cereal
    cereal

    Replied To a Post in [Solr] dataImport handler encrypted pwd final block not properly padded

    Hmm, no, here I'm not accepting passwords from users. It's a server side configuration step to connect Solr with MySQL. Solr is a search engine service developed by Apache. Here …
  • Member Avatar for cereal
    cereal

    Created [Solr] dataImport handler encrypted pwd final block not properly padded

    Hello, I hope not to scare you with this long post. I'm testing [Solr](https://lucene.apache.org/solr/) (read solar) and it works fine. I have an issue with the **DataImport** handler, it's set …
  • Member Avatar for cereal
    cereal

    Began Watching [Solr] dataImport handler encrypted pwd final block not properly padded

    Hello, I hope not to scare you with this long post. I'm testing [Solr](https://lucene.apache.org/solr/) (read solar) and it works fine. I have an issue with the **DataImport** handler, it's set …
  • Member Avatar for cereal
    cereal

    Gave Reputation to pty in Github and Gitlab

    Github and Gitlab are both companies that do more or less the same thing; they provide a hosted Git service. The main difference is that Gitlab is open source and …
  • Member Avatar for cereal
    cereal

    Replied To a Post in What is the difference between 127.0.0.1 and 0.0.0.0

    Just to support rproffitt's, on Ubuntu 16.04 it redirects to 127::1: ยป ping -c 3 0.0.0.0 PING 0.0.0.0 (127.0.0.1) 56(84) bytes of data. 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.055 …
  • Member Avatar for cereal
    cereal

    Began Watching What is the difference between 127.0.0.1 and 0.0.0.0

    I have been using my HOSTS file for years to dummy out ad sites by adding entries like 127.0.0.1 www.ukbanners.com A while back I installed [Unchecky](https://unchecky.com/), a program which automatically …
  • Member Avatar for cereal
    cereal

    Replied To a Post in Run a loop with a spesific pattern

    Ah, no. Okay for that you need *variable variables:* * http://php.net/manual/en/language.variables.variable.php For example: <?php $start_balance = 2; $stop = 5; $roi = 5; $sum = 0; for($i = 1; $i …
  • Member Avatar for cereal
    cereal

    Replied To a Post in Run a loop with a spesific pattern

    Hi, you can use a `for()` loop and the assignment operator `*=`, for example: <?php function _sum($start_balance = 0, $stop = 1, $roi = 1) { for($i = 0, $sum …
  • Member Avatar for cereal
    cereal

    Began Watching Run a loop with a spesific pattern

    Hello, I have been strugling with this for a while. Is it possible to create a loop that will make this function run automaticly. I want to type in how …
  • Member Avatar for cereal
    cereal

    Replied To a Post in php

    Hi, usually you define which column (or columns) mark a row as a duplicate and set a unique key index, so you have to alter your table schema. Once this …
  • Member Avatar for cereal
    cereal

    Began Watching php

    hi i want to know how to delete duplicate rows in imported csv files in phpmyadmin in php..below is my code to import csv file in php,i want to delete …
  • Member Avatar for cereal
    cereal

    Replied To a Post in How to setup Laravel Cron jobs for subdomains

    Hi, in practice, your goal is to dynamically alter the crontab file? Or you're talking about something else?
  • Member Avatar for cereal
    cereal

    Began Watching How to setup Laravel Cron jobs for subdomains

    I have developed Laravel application which allows dynamic subdomains. I mean single code for all tenants.each tenant will have separate database. But how can I setup crons for each subdomain?
  • Member Avatar for cereal
    cereal

    Began Watching Creating an shell script

    Hello everyone, I'm a linux beginer and just got GNURoot Debian in my tablet. There are two commands necessary to make it run which is export DISPLAY=:0 PULSE_SERVER=tcp:127.0.0.1:4712 startlxde & …
  • Member Avatar for cereal
    cereal

    Began Watching How to create binary code to store in memory and then execute?

    gerard4143 explained 6 years ago how to store binary code in memory and then execute it. See https://www.daniweb.com/programming/software-development/threads/353077/store-binary-code-in-memory-then-execute-it#post1500738. In the example, we create an array of unsigned char containing these …
  • Member Avatar for cereal
    cereal

    Replied To a Post in Comparing Codes

    Also try Meld, it should work also on Windows: http://meldmerge.org/
  • Member Avatar for cereal
    cereal

    Began Watching Comparing Codes

    Hello, I have two files with slightly different codes from two different programmer. Me and the other guy. And I would like to move part of the working feature from …
  • Member Avatar for cereal
    cereal

    Replied To a Post in jQuery inspired parameter-dependent get or set behaviour for PHP

    If implemented, IMO, it should be consistent through all code as jQuery does. Using mutators and accessors, as described by jkon, can simplify because the naming suggests what to expect: …
  • Member Avatar for cereal
    cereal

    Gave Reputation to Nicht in Creating a div with other divs and elements inside it when pressing button

    Ok i solved it now i didnt wrote the script part at the bottom of the html. it couldnt find a button because it didnt existed yet
  • Member Avatar for cereal
    cereal

    Replied To a Post in Creating a div with other divs and elements inside it when pressing button

    **@Nicht** can you share your code? thank you :)
  • Member Avatar for cereal
    cereal

    Gave Reputation to RobinR in Creating a div with other divs and elements inside it when pressing button

    I'm not sure what you're doing wrong, but when I checked fiddle code in the console that 'cereal' wrote for you, it totally works. I can't attach a screenshot, but …
  • Member Avatar for cereal
    cereal

    Replied To a Post in jQuery inspired parameter-dependent get or set behaviour for PHP

    Hi all! In addition: the aim is to be able to chain the methods while setting?

The End.