-
Replied To a Post in Automatic Facebook Post Bumper
> but in WAMP it should have it worked right? [...] now both WAMP and the server leads to a blank page I haven't tested Josh's script, I replied only … -
Replied To a Post in Automatic Facebook Post Bumper
> do u have to change (the array thing) in all the script? Yes, from what I've seen you have to change line 13 and then from 60 to 62. -
Replied To a Post in Unable to display report based on quarter
I think Pritaeas was asking for the database table structure, so open a MySQL client and run: show create table `report`; And return the result here, then run an example … -
Replied To a Post in Automatic Facebook Post Bumper
Hi, if you're using an old version of PHP, lower than 5.4 then change the array syntax to: $posts = array(); Starting from [PHP 5.4](http://php.net/manual/en/migration54.new-features.php) you can use the short … -
Replied To a Post in Which Framework do you hate the least?
I have to say that I haven't tested Skeleton, I will try it. And about the others: none of those, I prefer Pure: http://purecss.io/ I ended writing my own, very … -
Stopped Watching Clear Briefing: Web Based Supplier Database for Design Agency
**What is the best way to build a simple & clear web based Suppliers database/list for my Design agency?** Has to: -Be accessable by all my collegue's (20) by webbrowser … -
Replied To a Post in Clear Briefing: Web Based Supplier Database for Design Agency
With *best way to build* you mean that it should be: * responsive * usable offline * provided with access control levels (ACL) * easy to develop * easy to … -
Began Watching Clear Briefing: Web Based Supplier Database for Design Agency
**What is the best way to build a simple & clear web based Suppliers database/list for my Design agency?** Has to: -Be accessable by all my collegue's (20) by webbrowser … -
Replied To a Post in Locked out of phpmyadmin
Try with: sudo service mysql stop Then the pid file should disappear. -
Replied To a Post in Locked out of phpmyadmin
Ok, then try to reset the root password as described here: * http://dev.mysql.com/doc/refman/5.7/en/resetting-permissions.html -
Replied To a Post in Prestashop 1.4 export database clients csv
Good for you :) -
Began Watching WP plugin isssue-Given URL is not allowed by the Application configuration
I have a Premium SEO Pack – Wordpress Plugin installed and with its Facebook planner, we are supposed to authorize app after providing the initial settings. I have provided all … -
Replied To a Post in information from form not echoing into file
By removing the [error control operator `@`](http://php.net/manual/en/language.operators.errorcontrol.php) from this line do you get an error? if(@mysql_num_rows($data)>0) And if affirmative, have you tried to get the error returned by the select … -
Replied To a Post in Locked out of phpmyadmin
Excuse me, it was late at night and I suggested an index key of an old version, the line it should not be: $cfg['Servers'][$i]['nopassword'] but: $cfg['Servers'][$i]['AllowNoPassword'] as defined in the … -
Replied To a Post in Locked out of phpmyadmin
> which one needs to have phpmyadmin installed on it, the web/php server or the machine I'm developing from. If the database is accessible from remote then you can install … -
Replied To a Post in Insert json data into mysql table
Ok, I see that the **data** index size depends on the **pagesize** value, if you don't set it you get 10 results, while, if the request is wrong you get … -
Gave Reputation to pixelsoul in video downloader software
Not really sure how stealing video content has anything to do with Web Development. -
Replied To a Post in Insert json data into mysql table
Could you show $result as json string? That way I can test it and be sure about my suggestion. > still the ERROR thier and the rows are empty What … -
Replied To a Post in Insert json data into mysql table
Hi, you can access the key by doing: $item['data'][0]['is_fav'] For the first array, then repeat the same for `$item['data'][1]...`. You should, also, use *prepared statements* with MySQLi or PDO, the … -
Replied To a Post in PHP 7 is comming
*/me `I can see flames of war coming o_o`* I would say because it's easy to use and, at the moment, it's easy to replace developers. -
Replied To a Post in getting url parameter value
You have to assign a value to `parameter`: <?php echo anchor('admin/pages?parameter=value', 'Click Here'); ?> Otherwise the **IF** condition fails, try: var_dump($this->input->get('parameter')); -
Replied To a Post in getting url parameter value
You can append the query string to the link and then access it through `$_GET` as in pure PHP or by using `$this->input->get('keyword')`. For example, you have controller **Blog** with … -
Replied To a Post in How can I make a web application (Please read the details)?
Hi, > What Languages/Frameworks to use? If your goal is to create an application rather than learning a new language/framework, then use what you know best. > where to start? … -
Replied To a Post in Prestashop 1.4 export database clients csv
Hi, so, I did a test by downloading the **1.4.1.0** version, setting it up and then upgrading to the latest stable version, i.e. **1.6.1.2** and it's working fine for me. … -
Replied To a Post in Time calculation in javascript
Hi, I've suggested you a solution some time ago: * https://www.daniweb.com/programming/web-development/threads/497916/diference-between-two-dates Have you tried that library? -
Replied To a Post in Wamp server (windows 10) - localhost/ phpmyadmin displays 'Access Denied' (
Hi, **can you access MySQL from command line client?** By running below you should be able to access it: mysql -uroot And if affirmative **can you run queries in database?** … -
Gave Reputation to Dani in Anyone Else Seeing DaniWeb Activity Dropping?
My apologies for not following up in this thread sooner. I've been away on vacation for the past 8 days, and just arrived home last night at midnight. I've gone … -
Gave Reputation to diafol in PHP PDO SUM a column value
I'd `var_dump( $g4 )` to see what you get. And as cereal says, hardcode the value into the SQL WHERE clause to see if you get anything returned. -
Replied To a Post in Prestashop 1.4 export database clients csv
The 1-Click Upgrade module requires write permissions: > Warning, this module requires write permission in your root directory. Your custom template will not be updated. source: http://addons.prestashop.com/en/administration-tools-prestashop-modules/5496-1-click-upgrade-autoupgrade.html Test the upgrade … -
Replied To a Post in Send reminder email 1 month before end of every quarter in php
> Should i put it at the login page or how? It depends, this will send an email only to those clients that are signing in that specific period, if … -
Replied To a Post in Uploading a file that isnt downloable
Hi, in PHP you could move the uploaded file to a directory outsite **public_html**, so that is not directly accessible by a remote client, the file then can be served … -
Replied To a Post in Send reminder email 1 month before end of every quarter in php
I'm referring at the IF/ELSEIF statements at lines 17 and 26. -
Replied To a Post in Send reminder email 1 month before end of every quarter in php
Hi, small note: in your IF statementes `if('$month'==2)` (and co.) you are comparing literally the word **$month**, not his value, against the integer. Single quotes will NOT parse the variable, … -
Replied To a Post in Prestashop 1.4 export database clients csv
If your final goal is to upgrade from 1.4.* to 1.6 then have you considered to use their automatic upgrade tool? Here are the links: * http://doc.prestashop.com/display/PS16/Automatic+update * http://doc.prestashop.com/display/PS16/Updating+PrestaShop Other … -
Replied To a Post in Setting cron job in codeigniter ??
Hola Luis, gracias pero la próxima vez, por favor, en Inglés. -
Gave Reputation to invisal in How does PHP know cookies set by JavaScript?
It is better to understand how the HTTP Cookie works. When your browser open a website, you send a HTTP request to the server. The HTTP request looks like this. … -
Replied To a Post in Prestashop 1.4 export database clients csv
To see which tables are involved check their database schema: * http://doc.prestashop.com/display/PS14/Fundamentals But the question is: you have to do this programmatically or not? If no, then you can use … -
Replied To a Post in attempting to change from mysql to mysqli
You have to invert the arguments: first the link to the resource, then the database name. Like this: mysqli_select_db($conn, DBNAME); -
Replied To a Post in MySql Query - First Order Date per customer
**@Florea** Hi, open your own thread with as much details as possible. -
Replied To a Post in Sorting (Order by) in SQL passed values?
> So I can not use prepared statements to bind column names correct? Exactly, you cannot. > I can bind the ASC/desc? No, the `bindParam()` will accept only the `PDO::PARAM_*` … -
Replied To a Post in Sorting (Order by) in SQL passed values?
> Is there anyway to replace the order by information with prepared statement attributes? Unfortunately this cannot be done with current drivers. You can use a whitelist approach, instead of … -
Began Watching Compress single large file
Hello, I am trying to develop VB.NET application which it will compress files one by one but the problem is the size of each file is too large in size … -
Stopped Watching Compress single large file
Hello, I am trying to develop VB.NET application which it will compress files one by one but the problem is the size of each file is too large in size … -
Began Watching Your opinions about an an architecture of providing web apps based in C / C
Hello , first of all I need to make clear that although I understand , and have done projects modifying code that is already there (and created my own minions) … -
Replied To a Post in PHP PDO SUM a column value
Ok, but the `$g4` value is sent to the query? And if you perform the original query directly into a mysql client, do you get results? -
Gave Reputation to diafol in show one output only
OK, quick question, what if the maximum number of checkboxes? If less than 32 - and always will be less than 32, we can use a bitwise trick. Example here: … -
Replied To a Post in PregMatch seems to skip entries it should hit.
> Line 30, $options = array(). Why did you need to declare $options as a parameter? The constructor works like a function, so you have to declare the expected parameters, … -
Replied To a Post in php redirect and callbacks
Hi, what is the error message? Have you tried by contacting their support service? From what I've seen you have to perform a curl request and get a response in … -
Replied To a Post in PregMatch seems to skip entries it should hit.
By changing line 50 with: return array_map('trim', $z); you avoid new lines in the **ParseVariables()** generated array and let the regular expression match the pattern. A problem I see is … -
Replied To a Post in preg_match, match non-alphanumeric characters
Check also: http://regexr.com/
The End.