-
Replied To a Post in Can't include latest Wordpress posts on external page
The path should be the directory wherein the wordpress is installed. I believe that is an strict rule given by the wordpress codex. Looking at your site, the reason it … -
Replied To a Post in Can't include latest Wordpress posts on external page
correction: update the $posts variable. $posts = get_posts('numberposts='.$number_of_post.'&order='.$order.'&orderby='.$order_by); -
Replied To a Post in multiple shared photo album
change private column to privacy_setting. "private is a reserved word and MUST not be use.. sorry about that.. that really slipped away :). -
Replied To a Post in multiple shared photo album
Simple CMS logic design. 1. Create page for public viewing with links. 2. Create registration page, login page, members only page. 3. Create page for latest album, top rated album, … -
Replied To a Post in Can't include latest Wordpress posts on external page
Hi, I thought it should be like this <?php require('Your_Wordpress_directory/wp-blog-header.php'); ?> If you want to show your article, it can be written like this <?php require('Your_Wordpress_directory/wp-blog-header.php'); ?> <?php $number_of_post = … -
Replied To a Post in compare two audio wav files by their voice
I addition to Cereal's recommendations, there were few voice (of course converted to audio) recognition applications written in PHP. I'm not sure if they still exist today. 1. Voice PHP … -
Replied To a Post in Ten favourite movies
1. Pirates of the Caribbean (all) 2. Ironman ( All) 3. Spiderman ( All) 4. Superman ( 1 and 2 only) 5. Django Unchained 6. Kill Bill (all) 7. The … -
Replied To a Post in how to show urls
Honestly, the last time I have seen plesk parallel was 5 years ago. I can't even recall what is the httpd.conf and vhost equivalent for it. However, I am pretty … -
Replied To a Post in .htaccess rewrite for www.abc.com and www.abc.com/pagename
Hi, Never tested, but it is more likely something like this will work for you. RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^([^/]+)/$ $1.php or can be something … -
Replied To a Post in how to show urls
I just noticed that you are on plesk. Holy Macaroni. My proposed solution may not even work. -
Replied To a Post in What is your favorite English word?
I find "boondockers" to be pretty cool for a field shoes. My Dad used tell me grab your "boondockers" and let's go. -
Replied To a Post in how to show urls
let me try this.. I must warn you before hand that the 2014.html must be changed to 2014.php else, it is not going to work. What we are trying to … -
Replied To a Post in 2 forms in one page (porblem)
it is also working on my side. -
Replied To a Post in How to check if Pan Card no. is valid for a user in php
Hi, I am not familiar with Pan card, but this [site](http://creativecoders.blogspot.com/2013/12/pan-card-validation-using-jquery.html) might help you. -
Replied To a Post in apache http server has stopped working xampp
To be very honest with you, Windows 7 and XAMPP cannot co-exist. They just hate each other. There are many alternatives out there for your OS. There are WAMPP, Uniform … -
Replied To a Post in Watermarking Picture Problem
try changing this $spix = $row[spix]; to this $spix = $row['spix']; -
Replied To a Post in CodeIgniter security
There is one for PDO modification for CI [here](http://www.codebyjeff.com/blog/2013/03/codeigniter-with-pdo). You can also take the user input by simply $this->input->get('user_input', true); $this->input->post('user_input',true); the second parameter tells the input class that we … -
Replied To a Post in Watermarking Picture Problem
when you say > I have query the picture from the database and store it to $pix you mean the image is stored as blob or binary? -
Replied To a Post in Autoload with different directory
What kind of error are you getting? -
Replied To a Post in automated FTP of .csv file to server
@Douglas You can pretty much add a column on your dbtable to accomodate the processed status. for example, if we have a database table called **prod_enroll**, having the following columns. … -
Replied To a Post in How write a comments using Php
Have you written any codes yet? Do you mind posting them here, so that we can take a look? If you have not done anything yet, search google for comment … -
Replied To a Post in automated FTP of .csv file to server
May I know which one do you have Unix or Linux? Is phpsuExec or suExec installed? After generating the CSV file, what is the permission given to this file? **Simple … -
Replied To a Post in automated FTP of .csv file to server
0755 is the recommended directory permission for linux servers. However, this can change depending on the server's server API. When you run a simple **php info()** script anywhere in your … -
Replied To a Post in Extract a file from mysql database
Can we see at least ONE of those script samples? Maybe it just need minor tweakings. Normally, if the query is successful, we can decode the row document like this … -
Replied To a Post in Hello there world
Hello and Welcome to Daniweb. -
Replied To a Post in Best first lines of a song
*I met a devil woman She took my heart away She said, "I had it coming to me But I wanted it that way"* Bachman - Turner Overdrive - You … -
Replied To a Post in Self Introduction
Hi, welcome to Daniweb and good luck to your studies. -
Replied To a Post in Search #2
davy_yg, There is a sure shot in checking if the query is indeed valid. All you have to do is get on to your phpMyAdmin page, click on the database … -
Replied To a Post in Rasmus Lerdorf : "All PHP Frameworks Suck"
That's very true of Symfony 2. Even worse with the Zend framework, because I have to starved myself in college just to be able to pay for my Zend Framework … -
Created Rasmus Lerdorf : "All PHP Frameworks Suck"
For years, I have been waiting to hear Rasmus Lerdorf to share his words and opinions about many things around PHP, especially the security issues, PHP frameworks, future versions, and … -
Replied To a Post in Image Commenting, Liking and following
Search google for Colorbox. Not exactly sure about the name, but it should give you some jquery results. -
Gave Reputation to diafol in how to add new font in the richtext editor
My crystal ball says, wysiwyg->addFont("clueless.ttf"); -
Gave Reputation to diafol in how to add new font in the richtext editor
My crystal ball says, wysiwyg->addFont("clueless.ttf"); -
Replied To a Post in automated FTP of .csv file to server
Hi, This is pretty easy task in PHP. First, get yourself acquainted with the [ftp_login PHP function](http://www.php.net/manual/en/function.ftp-login.php). Second, test that function in a more meaningful application utilizing the ftp_put PHP … -
Replied To a Post in Divs problem (php script in between)
Notepad++ will not be able to detect it, but not all the time. A good IDE like NetBeans is capable of detecting those embedded <div> tags. Notepad++ can surely detect … -
Replied To a Post in generating maps using php
Hi, Here is a really nice implementation guidelines from [google maps api](https://developers.google.com/maps/articles/phpsqlajax_v3). I don't see any level of difficulties in implementing this. It is pretty much straight forward. -
Replied To a Post in Error access a text file from a other web server location
Create a new PHP file and upload to the server where you are running the script above. <?php echo (ini_get('allow_url_fopen')? 'It is On' : 'It is off'); Direct your browser … -
Replied To a Post in php error
Hi, can you try reading [this](http://ellislab.com/forums/viewthread/93710/)? If it fails to solve your problem let us know. The answer you are looking for is located near the bottom of the page. … -
Replied To a Post in PHP & MySql Framework
Doctrine, propel, fuel, Agile toolkit (API class), and kohana ORM. Pick the one you think you can immerse as quickly as possible. Personally and outside the framework environment, I prefer … -
Replied To a Post in Server for my PHP
Vista is known to create problems with xampp. There are other options out there when it comes to windows apache mysql php server. One is a lightweight application called [Uniform … -
Replied To a Post in String Width in PHP
I posted an example, but after calculating it, there is no way it can be valid. Sorry, I have to remove it. It will not do any help to your … -
Replied To a Post in String Width in PHP
Edit: I added an example. There is a PHP function called [ps_stringwidth](http://www.php.net/manual/en/function.ps-stringwidth.php). It looks promising 'BUT', it needs **Adobe font metrics file** to calculate the width. Another one is called … -
Replied To a Post in Upload files into different folders using Code Igniter.
I thought this question was just posted some 20+ hours ago, and then I just realized it was awaken from the bone files of two years ago. :). -
Replied To a Post in i need code for insert multiple rows into database
Hi, It would help, if you can show us your codes. It does not matter if it is working or not. -
Replied To a Post in If [defined variable] = [defined variable]
hi, I don't understand this <?php $tcode="$_POST[teamID]"; ?> If my suspicion is correct, then it should be coded as something like this. <?php $tcode = $_POST['teamID']; ?> -
Replied To a Post in Search
hi, this if ($searching =="yes") don't make sense at all. Even-after looking at the original codes at about.com, Angela Bradley did not make her points very clear. How can she …
The End.