-
Replied To a Post in RSS Reader in iOS
I'm not sure it still supports ATOM, this is why I suggested to load an atom feed from some website and see if it works. I suppose Apple, Google & … -
Replied To a Post in RSS Reader in iOS
It seems the Apple News app does not support RSS format anymore since last summer, try to load an ATOM feed or follow their format: https://developer.apple.com/news-publisher/ -
Replied To a Post in Decrypting VB.Net (14) System.Security.Cryptography salted password in PHP
Hi, the recommended way to hash passwords in PHP is through `password_hash()`, see the examples in the documentation page: * http://php.net/password-hash The example #3 seems similar to your request. If … -
Replied To a Post in Correct image size for Facebook Share
Hello, I just saw your question, so according to FB best practises: > Use images that are at least 1200 x 630 pixels for the best display on high resolution … -
Replied To a Post in Shut Down a PHP Script
The sponsor badge appears also if you have received positive reputation points. From the green banner here in the page: > Questions asked by members who have earned a lot … -
Replied To a Post in How to combine product API feeds from different e-commerce websites to a we
So, something like this extension: https://www.opencart.com/index.php?route=marketplace/extension/info&extension_id=29709&sort=date_added correct? -
Replied To a Post in The Walking Dead
Also, try *The Expanse*, not zombiesque but worth to see: * https://www.wired.com/2017/01/geeks-guide-the-expanse-season-2/ -
Replied To a Post in New search functionality
> they require that we "noindex" the majority of our content. what?! o_o -
Replied To a Post in Reduce excess code
> I've googled a bit for you, but it seems you're out of luck. You should've forked your first pen. I can confirm is not supported, people use Gists on … -
Replied To a Post in Is there any problem with Mozilla Thunderbird?
It seems spam. The Mozilla support forum is this: * https://support.mozilla.org/en-US/kb/get-community-support not the one linked by Remote_1. -
Replied To a Post in How to insert data into wp db tables from form
What rproffitt said. The support form for the plugin is: * https://translate.wordpress.org/projects/wp-plugins/tablepress An answer by the plugin's author to your same request: * https://wordpress.org/support/topic/is-it-possible-to-create-an-input-form-that-updates-the-table/ -
Replied To a Post in New search functionality
Thank you Dani, it works really fine. -
Gave Reputation to Dani in New search functionality
I've changed our search functionality to be controlled in-house again and no longer use the Google search API. Let me know your thoughts. -
Replied To a Post in Contact Email Error
The reason is this: 554 delivery error: dd This user doesn't have a yahoo.com account (deacleodor@yahoo.com) In other words the email address does not exists. -
Replied To a Post in RESTFul API actions
@Dani > ... And regarding Nginx, if you were able to get Nginx to work with PUT and PATCH, please let me know how! Whenever I try, Nginx short circuits … -
Replied To a Post in Insert Delayed
Here are the reasons: * https://dev.mysql.com/worklog/task/?id=6073 Mainly because the new default engine in 5.7 is InnoDB. -
Replied To a Post in Admin account problem
Hi, just a side note: back in Windows XP days by pressing `CTRL ALT DEL` for two times, in the login screen, made the admin account visible. I do not … -
Began Watching PayPal IPN error
Hi Everyone - I keep getting the following error messages in my log file [19-Jan-2017 22:16:46 UTC] PHP Notice: Use of undefined constant CURLOPT_httpsHEADER - assumed 'CURLOPT_httpsHEADER' on line 22 … -
Replied To a Post in XML file for Italian "FATTURA PA"
Hi, as the error states the format of the invoice is not recognized by their system, you are showing only the namespaces in the header of the XML document. The … -
Gave Reputation to Daniel_69 in Issues with Zend Composer command and loading map in middle of the article
Was stuck on the same problem as well for a day and found that upgrading from php 5.5.9 to 5.6 fixed the issue. Thanks :) -
Replied To a Post in RESTFul API actions
Hi! I think jkon refers to this https://www.w3.org/TR/wsdl20/ i.e. a document that describes the features of the API endpoints. This is widely used in SOAP. See also: * http://www.ibm.com/developerworks/webservices/library/ws-restwsdl/ -
Replied To a Post in CI error
Davy, I think you are able to solve this error, look it carefully. -
Replied To a Post in CI error
> like how? Download this file: * https://github.com/bcit-ci/CodeIgniter/archive/3.1.3.zip or download the version you are using. Extract, browse up to `application/views/` and copy the **errors** directory, with all the contents, into … -
Replied To a Post in inserting multiple value
Hi Jailani, in your code you are using: $value = $_GET['change']; which will not work if the form set the method to POST: <form method="post"> if you perform a POST … -
Replied To a Post in CI error
Then add all the tree from the official download. -
Replied To a Post in Current PHP version: 5.6.27
The current latest stable PHP version is 7.* from which `ext/mysql`was removed. If you are using PHP 5.6 then the query should still work, as `ext/mysql` is only deprecated. Can … -
Replied To a Post in CI error
> C:\Program Files (x86)\EasyPHP-DevServer-14.1VC9\data\localweb\masterlinkci2\application\site\views\errors\html\error_php.php Can you reach the **error_php.php** file by following the path described in the warning? -
Replied To a Post in Programatically retrieve MAC and IP addresses from my local network
Check `arp-scan -ln` it outputs something like this: > arp-scan -ln Interface: wls1, datalink type: EN10MB (Ethernet) Starting arp-scan 1.8.1 with 256 hosts (http://www.nta-monitor.com/tools/arp-scan/) 192.168.0.1 00:c0:9f:09:b8:db QUANTA COMPUTER, INC. 192.168.0.5 … -
Replied To a Post in CI error: Invalid argument supplied for foreach()
Can you show the method controller? -
Replied To a Post in CI error
> Well, I redirect application_folder value to application/site since I divided application folders into two folders admin and site. admin for backend and site for frontend. > [...] > and … -
Replied To a Post in hacking
> i am just curious how to access social media accounts like facebook, watspp etc. with the users' permission in order to help them prevent unethical hackers from breaking into … -
Replied To a Post in CI error
Ok, so you changed the `$application_folder` value to `application/site`, is this correct? Are you creating an application folder named `site` inside the `application` folder? I mean, do you have something … -
Replied To a Post in CI error
Hi, are you loading the database library? You can do that in the `application/config/autoload.php` file, to make it available in all controllers and models: $autoload['libraries'] = array('database'); Instead, if you … -
Replied To a Post in PHP - SEO Friendly Links
Hi, if this is for WordPress then follow these directives: * https://codex.wordpress.org/Using_Permalinks otherwise search for *apache and url rewriting.* -
Gave Reputation to AssertNull in hacking
I keep falling for these threads. I'm like Charlie Brown with Lucy and the football. For some reason, despite all my life experience that tells me that the OP is … -
Replied To a Post in Mysql Select Join Query
Ok, it does not work because you are not accessing to the returned row when you call `$stmt->otdq_ordernum`. Use: $row = $stmt->fetch(); And then: $row->otdq_ordernum; Or use a MySQL variable. … -
Replied To a Post in Can't connect with database.
In this very specific case, because $ID is expected to be an integer, you could use `exec()` which returns the number of affected rows by the statement or something that … -
Replied To a Post in Can't connect with database.
Hi, it happens because getDB() is using PDO and in the script you are using MySQLi. Fix it and it should work. -
Replied To a Post in Compare POST Array with SQL Output
I was supposing the `$_POST['Net']` arrays to hold float values, not file names. Anyway you could write: $files = []; $products = []; while($rowProduct = mysql_fetch_array($productSQL)) { $products[] = $rowProduct['POProductNet']; … -
Replied To a Post in Compare POST Array with SQL Output
Hi, you could use [`array_diff_assoc()`:](http://php.net/array-diff-assoc) <?php $sql = [25.00, 25.00, 50.00, 82.00, 120.00, 205.00]; $post = [25.00, 50.00, 50.00, 80.00, 120.00, 205.00]; print_r(array_diff_assoc($post, $sql)); Returns: Array ( [1] => 50 … -
Replied To a Post in pdf link in CI
Check the PHP error log, it can be a permission issue. -
Replied To a Post in pdf link in CI
> I also wonder if I could upload pdf through Roxy Filemanager? It seems possible. This is defined by the `ALLOWED_UPLOADS` and `FORBIDDEN_UPLOADS` of the conf.json file (see previous link). … -
Replied To a Post in pdf link in CI
That could be something else, like the rewriting rules of the server. Did you verified if the link appears different in the HTML source code? **And:** > Are you able … -
Replied To a Post in pdf link in CI
Oh, ok, there is a configuration option `FILES_ROOT` in the conf.json file of the Roxyfileman, used to define the path in which upload the files. According to the documentation the … -
Replied To a Post in pdf link in CI
Could you show the code used to build these links? -
Replied To a Post in pdf link in CI
Hi, the first link redirects with 302 to the home page, when instead should show a 404 error page. Look here: * http://www.gsa-constructionspecialist.com/assets/upload/artikel/2007TugasLPJKke5.pdf And go to the first folder: * … -
Endorsed pty
-
Replied To a Post in PHP interception of executing the code (Man In The Middle)
**@AssertNull** Hi, just to add something: the first step to avoid spam filters is to setup SPF and DKIM in the TXT records of the domain. That way Google, Hotmail … -
Replied To a Post in Login issues?
> how does this page look to you? https://www.dazah.com/audiences Looks fine here with Chromium 55.* and no login issues. Besides... Happy New Year! -
Replied To a Post in PHP interception of executing the code (Man In The Middle)
Hi, the PHPMailer hack would probably fail if submitting filtered data to the library, i.e.: * sanitizing through `filter_input()` * and by using SMTP, because it will not use sendmail, …
The End.