Register Advertise with usHelp Desk Today's Posts Search

Showing results 1 to 45 of 45
Search took 0.03 seconds.
Search: Posts Made By: Earnie Boyd
Forum: Programming 1st May 2012, 10:36 AM
Replies: 6
Views: 987
Posted By Earnie Boyd
Re: Best Classifieds Software

I'm not recommending any of these but for your enjoyment:

Ad server solution for publishers, advertisers & networks | OpenX (http://www.openx.com/)
OASIS (http://oasis.sourceforge.net/)...
Forum: Programming 30th April 2012, 12:46 PM
Replies: 7
Views: 2,056
Posted By Earnie Boyd
Re: IP restriction using htaccess

Except for xx.x.xxx.xxx a user accessing the server in a browser would see a 403 Forbidden error. See HTTP 403 - Wikipedia, the free encyclopedia (http://en.wikipedia.org/wiki/HTTP_403) for more.
Forum: Programming 30th April 2012, 11:56 AM
Replies: 6
Views: 552
Posted By Earnie Boyd
Re: session help

Everyone so far has missed the lowercase $_session instead of the uppercase $_SESSION used to output the user name. $_session isn't a global variable while $_SESSION is. Also if...
Forum: Programming 26th April 2012, 06:37 AM
Replies: 4
Views: 673
Posted By Earnie Boyd
Re: Tell me what I need in hosting for WP BuddyPress/Multisite online community

No need for SSL to secure the email addresses. I'm using shared hosting with a dedicated IP on my host provider.
Forum: Programming 25th April 2012, 01:15 PM
Replies: 5
Views: 748
Posted By Earnie Boyd
Re: Smart Forms

Solidsoul, what you are asking about can be referred to as a multistep form. You can use PHP combined with javascript to code the form. I found jquery - retain show / hide div on multistep form -...
Forum: Programming 24th April 2012, 09:05 AM
Replies: 20
Views: 1,364
Posted By Earnie Boyd
Re: Looking for a list of online programmers

odesk.com is another. Then there is fiverr which you may be cautious about but could find what you need.
Forum: Programming 21st April 2012, 12:02 PM
Replies: 6
Views: 615
Posted By Earnie Boyd
Re: please Please help how to get my tables data file from server?

If you have access to the server just use mysqldump.

mysqldump -umyuser -pmypass myDB > myDB.sqldump

Then to import the data into another DB.

mysql -umyuser -pmypass myNewDB
mysql> source...
Forum: Programming 20th April 2012, 07:38 AM
Replies: 9
Views: 511
Posted By Earnie Boyd
Re: Help Please

And if you have an older version of WP you should upgrade. Keep up with the upgrades for security reasons. Change you passwords on your site. Make sure you use the Wordpress security modules to...
Forum: Programming 19th April 2012, 07:21 AM
Replies: 11
Views: 3,159
Posted By Earnie Boyd
Re: xmlrpc.php file problems with Hostgator

XMLRPC is Remote Procedure Call using XML as the data transfer over HTTP. A feed is what is used to share blogs, stories, posts with other sites. I can access your feed by...
Forum: Programming 17th April 2012, 01:18 PM
Replies: 9
Views: 752
Posted By Earnie Boyd
Re: Best way to email a free audio download link to sign ups?

So the track is just a file, yes a certain type of file but it is just a file. You can encrypt the file and give your client the key to decrypt the file. Then if someone downloads the file, they...
Forum: Main Internet Marketing Discussion Forum 14th April 2012, 05:50 PM
Replies: 7
Views: 487
Posted By Earnie Boyd
Re: How The F#@^ Do I Do This??

The simple answer is yes but you'll have to program for it which is what takes the simple out of the answer. :cool: I would use the Mike Tucker's suggestion. You can put a "bookmark this page" on...
Forum: Programming 13th April 2012, 08:50 AM
Replies: 10
Views: 1,343
Posted By Earnie Boyd
Re: Making tinyMCE Work With File Thingie

I changed the ft_make_scripts function. I removed js/ from src='{$c}' and prepended js/ to the values being added to $scripts[] array.
Forum: Programming 12th April 2012, 09:00 AM
Replies: 3
Views: 980
Posted By Earnie Boyd
Re: Google flagged my server IP as a bot

The problem with most captcha is that it displays in graphics form to prevent bots from scraping the text and applying it to the input form. Usually there is a link to speak the text but I've never...
Forum: Programming 11th April 2012, 10:30 AM
Replies: 2
Views: 506
Posted By Earnie Boyd
Re: Search Engine Redirection Issue in my site

My guess you've been hacked. You need to check your server to ensure your application is as you expect. CAUTION: The jaqaga link is a malicious attack.
Forum: Programming 11th April 2012, 10:22 AM
Replies: 10
Views: 1,343
Posted By Earnie Boyd
Re: Making tinyMCE Work With File Thingie

It's loading the tiny_mce.js file in the wrong location.

Change directory to the js directory in your filethingy package and create a symbolic link to the tinymce directory.

On *NIX do:
ln -s...
Forum: Programming 10th April 2012, 08:56 AM
Replies: 3
Views: 706
Posted By Earnie Boyd
Re: how to work with api google adword with asp.net

Google's API is documented. Have you looked at their examples?
Forum: Website Design 9th April 2012, 02:38 PM
Replies: 4
Views: 443
Posted By Earnie Boyd
Re: Drupal HOTorNOT Theme?

B. Yameen, have you looked at the themes provided by drupal.org/project/themes? There are many that are a base to help you start your own theme but the HOTorNot theme I see as 6 blocks of data. You...
Forum: Website Design 9th April 2012, 02:20 PM
Replies: 5
Views: 550
Posted By Earnie Boyd
Re: Need help with WP Weaver II coding cleanup

The site has two meta description and meta keywords tags. One from All-in-One SEO and one from the Weaver II sub-theme. The one from All-in-One is correct. The one from Weaver II sub-theme is...
Forum: Programming 3rd April 2012, 06:16 AM
Replies: 19
Views: 1,075
Posted By Earnie Boyd
Re: PHP/Joomla Website?

Oh, good grief! Joomla is a PHP framework CMS. You need to know PHP if you are programming extensions, modules and perhaps themes to enhance your Joomla experience. Other similar options are...
Forum: Programming 2nd April 2012, 03:27 PM
Replies: 18
Views: 1,938
Posted By Earnie Boyd
Re: PHP Session data not passing!!!

Make sure you're not outputting any data before the session_start. Note that any blank lines before <?php is considered output to the browser. Also you might want to use session_id() function to...
Forum: Programming 2nd April 2012, 02:49 PM
Replies: 18
Views: 1,938
Posted By Earnie Boyd
Re: PHP Session data not passing!!!

A session is a relationship between the user browser and the server. The data in the session is stored in a cookie in the browser. If cookies are disabled in the browser you will not have the...
Forum: Programming 2nd April 2012, 11:55 AM
Replies: 10
Views: 512
Posted By Earnie Boyd
Re: Speed Of Multi Threaded Non Socket Application

You could use something like rsync to modify one site and have the rsync script push the change to the other servers. Even something like 1 master server serves to X servers that in turn serve...
Forum: Programming 2nd April 2012, 10:08 AM
Replies: 4
Views: 469
Posted By Earnie Boyd
Re: How do you use value of variable as variable name?

Except that the code given isn't PHP it is javascript and your example will fail since $12 isn't a valid variable name.
Forum: Programming 2nd April 2012, 09:23 AM
Replies: 54
Views: 1,929
Posted By Earnie Boyd
Re: which one is better ?

If you go with Java, IBM has an MVC application called WebSphere with free development tools and instances. Check out the IBM web site.

That said, do not limit yourself to one set of tools. ...
Forum: Programming 30th March 2012, 12:12 PM
Replies: 8
Views: 589
Posted By Earnie Boyd
Re: way to discount paypal price if user tweets/shares?

How proficient are you at coding? I found this javascript - Add discount code to paypal button on wordpress - WordPress - Stack Exchange...
Forum: Programming 29th March 2012, 08:40 AM
Replies: 12
Views: 2,592
Posted By Earnie Boyd
Re: .EXE license system software

You could create the key on your server if the thank you page redirects to your server. Store the key in the DB for the user to register the product for use and then store the key in the users...
Forum: Programming 29th March 2012, 08:12 AM
Replies: 11
Views: 589
Posted By Earnie Boyd
Re: php query question

Surround the text data with ' not `. Surround the tables and columns with ` and not '.

Here is your query fully delimited as MySQL likes it. Fully delimiting the tables and columns ensures that...
Forum: Programming 28th March 2012, 09:51 AM
Replies: 8
Views: 27,374
Posted By Earnie Boyd
Re: Turn Windows 7 machine into a proxy server?

I wish there was a button that indicated LIKE or DISLIKE on each post. I'll agree with jhr57 on this.
Forum: Search Engine Optimization 27th March 2012, 09:20 AM
Replies: 37
Views: 1,392
Posted By Earnie Boyd
Re: JCPenny gets slapped by google for blackhat seo...lol

Old - something with age, e.g.: A baby is 1 day old.
stuff you already know - I don't have a definition of "stuff you already know" only you know what you know. :D

News - stuff I didn't know even...
Forum: Website Design 26th March 2012, 08:42 AM
Replies: 7
Views: 473
Posted By Earnie Boyd
Re: Why does this YouTube video show up on this Wordpress post?

I see it in Chrome but it is part of the ad block with the word "ADVERTISEMENT" above the video. You probably need to go to the ad provider and set your account to not receive video ads or something...
Forum: Programming 26th March 2012, 08:12 AM
Replies: 14
Views: 598
Posted By Earnie Boyd
Re: Another php issue

You are setting $selstatus with variables that have not been set so when you echo $selstatus it doesn't contain the values you expect. You need to move the setting of $selstatus to below the if($i...
Forum: Programming 24th March 2012, 04:25 PM
Replies: 14
Views: 598
Posted By Earnie Boyd
Re: Another php issue

Working your post backword, as I understand you, you want this



to be a clickable link, is that correct? Can an input form value contain a clickable link? I think you just need to do this...
Forum: Programming 23rd March 2012, 07:54 AM
Replies: 2
Views: 755
Posted By Earnie Boyd
Re: How do you define an empty array for objects?

It should be

<?php
$myarray = array(array data);
$myobj = new stdClass;
foreach ($myarray as $key => $data) {
$myobj->$key = $data;
}
?>
Forum: Programming 23rd March 2012, 07:47 AM
Replies: 26
Views: 825
Posted By Earnie Boyd
Re: WordPress Site Live, Backend Inaccessible

Could be browser cache, could be hacked, could be read permissions on the folder, could be ...

Hard to diagnose without more information. Do you have access to the web error logs? Do they help...
Forum: Programming 23rd March 2012, 07:42 AM
Replies: 27
Views: 1,864
Posted By Earnie Boyd
Re: Best eCommerce Plugins for WordPress?

Here's a couple of free ones WordPress Ecommerce a WordPress Shopping Cart Plugin - getShopped.org (http://getshopped.org/) and WordPress › WP e-Commerce « WordPress Plugins...
Forum: Programming 22nd March 2012, 09:02 AM
Replies: 42
Views: 6,298
Posted By Earnie Boyd
Re: Butterfly Marketing Software Open Source - Why Do I Need It?

I ditto this.



A good open source community has a few paid workers who keep the project on task. I've never seen one where I have to pay to contribute to the code. That's just nonsense.


...
Forum: Programming 19th March 2012, 02:17 PM
Replies: 6
Views: 474
Posted By Earnie Boyd
Re: PHP & MySQL syntax problem.

Change it to

$query = "SELECT * FROM curr_vacs WHERE job_location = '{$_POST[location]}'";


The string data in the query is bounded by single quote ' character and not double quote. When...
Forum: Programming 19th March 2012, 06:59 AM
Replies: 5
Views: 513
Posted By Earnie Boyd
Re: Need help with WP installation in Host Gator Domain Hosting Account

Or easier, update your hosts file. On Windows XP 32bit it is %WINDIR%/system32/drivers/etc/hosts. Don't have anything newer to check for 64bit yet but it should be something similar. In Linux it...
Forum: Programming 13th March 2012, 11:44 AM
Replies: 9
Views: 4,318
Posted By Earnie Boyd
Re: Notepad++ Equivalent for Mac

Give download : vim online (http://www.vim.org/download.php) a try.
Forum: Programming 12th March 2012, 11:40 AM
Replies: 7
Views: 450
Posted By Earnie Boyd
Tip Re: PHP Question

If you use " you can combine variable and text data.

$who = 'John';

echo "I am writing to $who to let him know I have received his letter.";

becomes

I am writing John to let him know I...
Forum: Programming 12th March 2012, 09:25 AM
Replies: 83
Views: 3,098
Posted By Earnie Boyd
Re: Help me to learn HTML

It's more like

<HTML>
<HEAD>
<TITLE>My title</TITLE>
</HEAD>
<BODY>
My content
</BODY>
</HTML>
Forum: Programming 12th March 2012, 07:41 AM
Replies: 9
Views: 1,563
Posted By Earnie Boyd
Re: Best way to handle software licensing system? Which is the best and most affordable?

It might depend on your license requirements. Do you want it to expire in X months or days, do you want it as a one time use forever product unlock, etc? The key generation can be done with...
Forum: Programming 12th March 2012, 07:11 AM
Replies: 22
Views: 2,183
Posted By Earnie Boyd
Re: I need to learn PHP need some tutorials

I would suggest grabbing an Open Source library or application and see what they do. Delve into it beginning with index.php to learn the ins and outs of the language. PHP can be both procedural...
Forum: Programming 12th March 2012, 06:53 AM
Replies: 2
Views: 630
Posted By Earnie Boyd
Re: Cgi & Noncgi Sites

The term CGI (Common Gateway Interface) means that the generated page isn't a script controlled by the HTTP daemon such as apache but is generated externally by the scripting language and then given...
Forum: Programming 9th March 2012, 02:38 PM
Replies: 566
Views: 23,935
Posted By Earnie Boyd
Re: Why PHP is best

:eek: Yea but .NET is a Open Specification and has an open source series as well, see the mono-project.com site. And .ASP can be embedded into Apache with the appropriate modules even on Linux.
Showing results 1 to 45 of 45

 
Forum Jump


All times are GMT -6. The time now is 12:25 AM.