Register Advertise with usHelp Desk Today's Posts Search

Showing results 1 to 46 of 46
Search took 0.05 seconds.
Search: Posts Made By: Manfred Ekblad
Forum: Programming 14th May 2012, 09:01 AM
Replies: 6
Views: 929
Posted By Manfred Ekblad
Re: Need Help With Aweber

It can be achieved using some AJAX, however I don't think the website you linked to is doing it in a good way.

I'm using Chrome and the page is jumping up and down when I click on next, although...
Forum: Main Internet Marketing Discussion Forum 14th May 2012, 08:49 AM
Replies: 102
Views: 43,514
Posted By Manfred Ekblad
Forum: Search Engine Optimization 14th June 2010, 10:13 AM
Replies: 1
Views: 819
Posted By Manfred Ekblad
Interview with SEOBook owner Aaron Wall - just published

My good friend Kevin Ohashi made an interview with THE Aaron Wall this weekend and it just got published.

Aaron Wall CEO of SEOBook.com | MO.com (http://www.mo.com/aaron-wall-ceo-of-seo-book)

...
Forum: Website Design 13th June 2010, 11:43 PM
Replies: 6
Views: 505
Posted By Manfred Ekblad
Re: Problems with local install of WP

I copy&pasted the wp-config-code you posted, can't find any line 77 in my editor. Try adding a closing php tag at the end of the file:

?>
Forum: Programming 12th June 2010, 10:24 AM
Replies: 2
Views: 584
Posted By Manfred Ekblad
Re: C# .net question

You can use this code in C#...

//Scroll to top left
this.AutoScrollPosition = new Point(0, 0);
Forum: Website Design 4th June 2010, 08:32 PM
Replies: 6
Views: 754
Posted By Manfred Ekblad
Re: Which Code Is Better?

This article (from 2003!) by the Joel on Software-guy explains a bit about character sets:

The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and...
Forum: Website Design 2nd June 2010, 09:46 PM
Replies: 5
Views: 416
Posted By Manfred Ekblad
Re: *{border:0;} problem

Not sure if I understood all of your problems, but that one is easy to fix:

WWW FAQs: How do I remove the blue border around my image? (http://www.boutell.com/newfaq/creating/border.html)
Forum: Programming 27th May 2010, 05:31 AM
Replies: 2
Views: 1,133
Posted By Manfred Ekblad
Re: using header.php while having original metatags on each page...?

Example:

$title = "My custom title";
$keywords = "custom keywords";

include("header.php");

...and in header.php, you echo $title and $keywords at the right places.

Another option is to...
Forum: Programming 27th May 2010, 04:37 AM
Replies: 4
Views: 613
Posted By Manfred Ekblad
Re: Microsoft .NET Framework Question

If the .NET Framework version 3.5 is corrupt, who knows what will happen when you install version 4.0? :)

If other programs are running, using the Framework 3.5 you already have installed, is it...
Forum: Programming 27th May 2010, 02:22 AM
Replies: 10
Views: 3,434
Posted By Manfred Ekblad
Re: HOw to cnvert SWF videos to WMV or MP4 ?

ffmpeg is great and you can run it on Windows as well. You can download the latest ffmpeg binaries for Windows here (http://www.videohelp.com/tools/ffmpeg).

There are GUI's for it, but if you do...
Forum: Programming 21st May 2010, 05:39 AM
Replies: 12
Views: 871
Posted By Manfred Ekblad
Re: Folks, is it possible to "protect" a script?

Yes and no...

You can use an obfuscator, it makes the code very complex to read...

or...

You can use an encoder/encrypter which makes the code impossible to read but if someone figure out...
Forum: Programming 18th May 2010, 07:53 AM
Replies: 8
Views: 989
Posted By Manfred Ekblad
Re: Anyone Familiar with Twitter API?

It depends on what you want to achieve. You can set up a couple of different accounts and then let the application switch between them when it does the API calls. It won't work for all the API-calls,...
Forum: Copywriting 16th May 2010, 08:40 AM
Replies: 36
Views: 4,608
Posted By Manfred Ekblad
Re: Your Favorite Books on Marketing Psychology

The Stuff of Thought, Steven Pinker
Buyology, Martin Lindstrom (neuroscience, brain scanning and more cool stuff)
The Emotional Brain, Joseph Ledaux
How The Mind Words, Steven Pinker

...and a...
Forum: Programming 15th May 2010, 01:52 PM
Replies: 8
Views: 719
Posted By Manfred Ekblad
Re: Baffles some of the best coders on the planet!

Yeah, sure :)

I'm guessing you are hosting your site on the Squarespace platform. Do you have access to customize the code? (PHP/html/javascript-code)
Forum: Programming 15th May 2010, 01:11 PM
Replies: 8
Views: 719
Posted By Manfred Ekblad
Re: Baffles some of the best coders on the planet!

Hmm...

So, the concept is like this, if I understand you correctly:

1. the visitor fills in the form
2. onsubmit then submitted=true
3. the target for the form is hidden_iframe
4. when...
Forum: Programming 14th May 2010, 02:26 PM
Replies: 5
Views: 518
Posted By Manfred Ekblad
Re: php help with thumbnails

Hmm... What does they do not "go" were I want them to mean?

Not the correct location on your servers file system and/or on the website?

...and what is wrong with the resizing? Is it random, or...
Forum: Programming 14th May 2010, 02:12 PM
Replies: 11
Views: 586
Posted By Manfred Ekblad
Re: Question about header( "Location:http://

Oh... I see :)

Yes, that's achievable but there are easier ways to do it than the one's suggessted above.

I'll just get some sleep first :D

Back in some hours...

PS. If you add me on...
Forum: Programming 12th May 2010, 10:41 PM
Replies: 11
Views: 586
Posted By Manfred Ekblad
Re: Question about header( "Location:http://

Ah...

Well, that won't work, simply because you are mixing php, html and javascript in a creative but incorrect way.

What you need to do is to create a php-file where you call the...
Forum: Programming 12th May 2010, 02:25 AM
Replies: 11
Views: 586
Posted By Manfred Ekblad
Re: Question about header( "Location:http://

Not really, I was thinking that perhaps you couldn't POST data using fopen, but then I remembered this: HTTP POST from PHP, without cURL - Evil, as in Dr....
Forum: Programming 12th May 2010, 12:15 AM
Replies: 11
Views: 586
Posted By Manfred Ekblad
Re: Question about header( "Location:http://

...and in case you don't have cURL installed, you can use:

<?php
$handle = fopen("http://www.google.com/", "rb");
$contents = stream_get_contents($handle);
fclose($handle);
?>
Forum: Programming 11th May 2010, 08:02 PM
Replies: 3
Views: 561
Posted By Manfred Ekblad
Re: Need Help w Feedburner

Let's not forget the good old Statcounter for real time tracking:

StatCounter Free invisible Web tracker, Hit counter and Web stats (http://www.statcounter.com/)
Forum: Programming 11th May 2010, 07:54 PM
Replies: 6
Views: 529
Posted By Manfred Ekblad
Re: Need Help with G Analytics Please

You could try one of the plugins to WP for google analytics: WordPress › WordPress Plugins (http://wordpress.org/extend/plugins/search.php?q=google+analytics&sort=)
Forum: Programming 11th May 2010, 07:23 PM
Replies: 2
Views: 448
Posted By Manfred Ekblad
Re: Ideas for Free Widgets to Give Away?

You've got a really nice website :)

Hmm... if its for local search, then how about... a google map widget where the user can enter their own address and get directions to the position of that...
Forum: Programming 5th May 2010, 11:20 PM
Replies: 57
Views: 3,172
Posted By Manfred Ekblad
Re: What free tools are you using for web development?

If you want to add some cool 3D to your headers, graphics and such then Blender is a great free, open-source 3D content creation suite. (http://www.blender.org/)

I'm not saying that 3D is easy,...
Forum: Programming 4th May 2010, 08:13 PM
Replies: 16
Views: 1,025
Posted By Manfred Ekblad
Re: Are PHP includes almost as good as having a CMS?

Well, Mister Peacefull Warrior... it wasn't a challenge for me. In your reply, you're already starting to outline some of the functionality in a CMS :p

The question still is "Are PHP includes...
Forum: Main Internet Marketing Discussion Forum 4th May 2010, 01:06 AM
Replies: 96
Views: 4,341
Posted By Manfred Ekblad
Re: Frustrated with Philippine outsourcers. Need advice.

Great case..!



If that was going well, why didn't you simply hire a project manager to handle your tasks?



When you hire someone on a more full-time basis, you can't just assume that...
Forum: Programming 3rd May 2010, 10:40 AM
Replies: 2
Views: 1,471
Posted By Manfred Ekblad
Re: PHP creating dynamic page breaks on a javascript alert box

Have you tried with double backslash? That should do the trick!
Forum: Main Internet Marketing Discussion Forum 3rd May 2010, 05:20 AM
Replies: 8
Views: 1,425
Posted By Manfred Ekblad
Re: Twitter+Facebook 'Pass this on' Viral method? Kern+ Reese style? - how to implement?

http://twitter.com/home?status=RT+%2210+different+ways+to+cook+chicken%22+http://www.10waystoCookChickenForWarriors.com


tested, it works...
Forum: Main Internet Marketing Discussion Forum 3rd May 2010, 04:56 AM
Replies: 8
Views: 1,425
Posted By Manfred Ekblad
Re: Twitter+Facebook 'Pass this on' Viral method? Kern+ Reese style? - how to implement?

It's much easier than you think :) ...assuming I understand your question :p

Just right click on the twitter picture and copy the URL. You'll see its something like this:
...
Forum: Main Internet Marketing Discussion Forum 2nd May 2010, 09:30 AM
Replies: 18
Views: 1,363
Posted By Manfred Ekblad
70,000+ Followers - One Way To Do It

Do you want tons of targeted followers? Or a huge truckload of free traffic? Or some other fun combination of hype words?

Some days ago there was this thread about...
Forum: Programming 30th April 2010, 07:41 PM
Replies: 7
Views: 1,158
Posted By Manfred Ekblad
Re: php to grab html attributes as well as hidden inputs

\b(([\w-]+://?|www[.])[^\s()<>]+(?:\([\w\d]+\)|([^[:punct:]\s]|/))) (http://daringfireball.net/2009/11/liberal_regex_for_matching_urls)

dont mind the smiley...

thats the regexp you need to get...
Forum: Main Internet Marketing Discussion Forum 27th April 2010, 10:26 PM
Replies: 12
Views: 506
Posted By Manfred Ekblad
Re: Looking for a "niche" for software

Perhaps you just need some inspiration... here is what I can offer you as input for your own brainstorming:


Yahoo answers - what are people asking questions about
Freelance sites like...
Forum: Main Internet Marketing Discussion Forum 26th April 2010, 05:15 AM
Replies: 48
Views: 1,576
Posted By Manfred Ekblad
Re: twitter marketing

Yes, it's a simple process, a bit like "wow, is it that easy". Anyone can use it and it's free. But I doubt there is any general interest.

I do share it, last night I coached (no charge) on of the...
Forum: Copywriting 26th April 2010, 01:45 AM
Replies: 21
Views: 13,815
Posted By Manfred Ekblad
Re: I NEED a slogan for my retail store

Pets were born to be happy

Healthy pets are happy pets
Happy pets are healthy pets

Happy pets - happy owners
Forum: Mind Warriors 26th April 2010, 01:36 AM
Replies: 14
Views: 994
Posted By Manfred Ekblad
Re: Life is just about PERSISTENCE

Hi my friend,

You are right. Success is for fools who don't know when to stop :p

...or as Confucius put it:

"It does not matter how slowly you go so long as you do not stop."

I know I...
Forum: Programming 24th April 2010, 08:46 PM
Replies: 4
Views: 643
Posted By Manfred Ekblad
Re: Can Someone Help Me Write This Loop?

date("j",time())

that will get you the "Day of the month without leading zeros"

PHP date function (http://php.net/manual/en/function.date.php)

so... something like:

$dayofmonth =...
Forum: Website Design 21st April 2010, 07:12 PM
Replies: 10
Views: 732
Posted By Manfred Ekblad
Re: Squeeze Page Critique: Please Help me Out Warriors!

I had a look at your original squeeze page a couple of days ago, it was really a mess :P

Your latest update is much more easy to read, with a nice flow. I'm not even a golfer, but I still "just...
Forum: Programming 21st April 2010, 06:40 PM
Replies: 5
Views: 660
Posted By Manfred Ekblad
Re: I need a free message board

Free message board...

I like phpBB (http://www.phpbb.com/) (easy to set up, easy to manage) as well as Phorum (http://www.phorum.org/) (great features).

Both are free. You can see a list of...
Forum: Programming 21st April 2010, 10:37 AM
Replies: 57
Views: 3,172
Posted By Manfred Ekblad
Re: What free tools are you using for web development?

Nice list of great tools!

I would like to add the debugger for PHP, Xdebug (http://xdebug.org/index.php).

Not to mention a system to handle version control, such as subversion...
Forum: Main Internet Marketing Discussion Forum 27th December 2009, 01:49 PM
Replies: 16
Views: 1,042
Posted By Manfred Ekblad
Re: Who's Teaching This Separate Email for Spammers Tactic?

Spammers (as well as everyone else) can send emails to any other email address, whether it exists or not.

Examples...

firstname.lastname@domain.com, lastname_firstname@domain.com,...
Forum: Programming 27th December 2009, 01:37 PM
Replies: 14
Views: 638
Posted By Manfred Ekblad
Re: Php and Mysql help needed

The database data is stored in files which occupies a bit of disk space. In your case, the web host has set your limit to 9MB. So, you are allowed to store data up to the limit of 9MB.

How much...
Forum: Copywriting 25th December 2009, 11:13 AM
Replies: 14
Views: 1,056
Posted By Manfred Ekblad
Re: Why You (Probably) Shouldn't Be "Just" A Copywriter.

(I'm not a copywriter...)

Merry Christmas Scott, and thank you very VERY much for the inspiration and feedback you gave me some weeks ago! I didn't sleep for 48 hours...

I don't know why...
Forum: Internet Marketing Product Reviews & Ratings 25th December 2009, 09:13 AM
Replies: 60
Views: 6,239
Posted By Manfred Ekblad
Re: Best Article Spinner?

I guess you meant the 'Magic Article Rewriter' based on your link (some problem with your link so here it is again Magic Article Rewriter (http://www.article-rewriter.info))

So far I've only tried...
Forum: Main Internet Marketing Discussion Forum 21st August 2009, 10:25 AM
Replies: 0
Views: 1,000
Posted By Manfred Ekblad
How are you searching on google?

This is a couple of my favorite google search queries:

Free PDF reports
filetype:pdf +intitle:"how to make money"
just replace the intitle-keywords with anything of interest

filetype:pdf...
Forum: Search Engine Optimization 28th July 2009, 02:25 PM
Replies: 12
Views: 675
Posted By Manfred Ekblad
Re: Check your SEO?

You can get your site graded and a receive a nice report about some of the SEO components over at www grader com.

I tested it with your "super tight abs" web site, it got a grade of 4 while...
Forum: Copywriting 1st July 2009, 05:32 AM
Replies: 5
Views: 729
Posted By Manfred Ekblad
Re: Prices Effect Conversion

Yesterday I mentioned the post over at Copyblogger. I can't link to it yet, just search on google for:

site:copyblogger.com How to Use Copywriting Anchors for Smooth-Sailing Sales

Here is...
Showing results 1 to 46 of 46

 
Forum Jump


All times are GMT -6. The time now is 11:29 AM.