CodeCanyon

fastAmazon

  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
Jorgico77 says
Purchased

I tried amazon.DE and it works. But when I use amazon.ES not work. I get a server error. I think it does not work with Amazon.ES

5 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
Jorgico77 says
Purchased

Hi! I’m waiting for an answer. I bought it because you ’ said that it was working with Amazon.es, but it is not true.

4 months ago
Author
freekrai freekrai replied

Last I checked it was working with amazon.es, have you verified your info?

4 months ago
  • Has been a member for 3-4 years
  • Bought between 100 and 499 items
jonathannelson says
Purchased

Great script. How can I exclude specific sub-categories within a defined category that I’ve already chosen?

Example: I have chosen ‘Computers & Accessories’ category, but do not want to show ‘Webcams’ sub-category on the navigation tree.

Thanks.

4 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
  • United States
CorpusCollosum says
Purchased

I’m getting this error on a fresh install: “Tue Feb 21 21:00:07 2012 [client 24.218.244.54] /home/core/public_html/.htaccess: Invalid command ‘php_flag’, perhaps misspelled or defined by a module not included in the server configuration” My .htaccess is blank and i’ve scanned the code for hours now. I dunno what’s up. Can you help me? :) Thanks

3 months ago
Author
freekrai freekrai replied

If it’s giving that message.. Then one, your host has turned off the ability to do any php settings in .htaccess..

Second.. If your .htacces is blank.. then nothing will work.. Open .htaccess.. first line should be php_flag to turn off errors.. Remove it

3 months ago
Purchased
CorpusCollosum CorpusCollosum replied

I’ve found out that my server is suPHP and does not use .htaccess. We commented out php_flag display_errors Off. the index file loads and is searchable but no other pages will load. How will not using an htaccess file effect the use of fastAmazon? Thanks

3 months ago
Author
freekrai freekrai replied

And it says on the product page that “mod_rewrite” is a requirement before you ask why I didn’t say it was required.. It was on the product details of this page..

Contact your host and see if they can use mod_rewrite or not.

3 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
  • United States
CorpusCollosum says
Purchased

Okay rewrites are enabled. I’ve learned over 24 hrs that SuPHP makes all PHP configuration rules in the .INI file and PHP rules must stay out of .htaccess. That’s where fastAmazon went wrong with php_flag. So now that php_flag is removed my .htaccess file looks like this:

php_flag display_errors Off

Options +FollowSymLinks Options +FollowSymlinks RewriteEngine on RewriteBase /mypages/ RewriteRule ^sitemap.xml$ /sitemap.php?target=google [L] RewriteRule ^urllist.txt$ /sitemap.php?target=yahoo [L] RewriteRule ^outgoing/(.)$ /out.php?url=$1&%{QUERY_STRING} [L] RewriteRule ^pages/(.)$ /page.php?page=$1&%{QUERY_STRING} [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* index.php?%{QUERY_STRING} [QSA]

and gives error;

Wed Feb 22 15:45:54 2012 [client 89.35.119.142] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use ‘LimitInternalRecursion’ to increase the limit if necessary. Use ‘LogLevel debug’ to get a backtrace.

the index loads but it’s outgoing pages are giving the error. @ http://coreaffordable.com

Please help? I’ll return the favor if I can at all. :)

-Ben

3 months ago
Author
freekrai freekrai replied

Sorry, when you gets to suPHP then your outside what I can help with.

I avoid servers that are configured to work that way as it is so non-standard from most other servers and generally causes trouble.

That particular message would be better served by asking your host again.

3 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
  • United States
CorpusCollosum says
Purchased

Yeah, I understand… they fixed that issue for me. I’ve been researching for 3 days straight now. I just ask that you meet me halfway and we can make FA work on SuPHP servers :) ! Like I said we removed php_flag and the site loads and works.
PHP.INI files aren’t that complicated so let me ask u…
Why is it that when I click on an item it won’t go to Amazon? Anything with /products/ won’t load.

Here is the site5 server admins last response after getting the index to load.

“If you need rewrites enabled try adding to the beginning and to the end of your rewrite rules in your .htaccess file. For example your .htaccess should probably appear like:
###############.htaccess
Options +FollowSymLinks
Options +FollowSymlinks
RewriteEngine on
RewriteBase /mypages/
RewriteRule ^sitemap.xml$ /sitemap.php?target=google [L]
RewriteRule ^urllist.txt$ /sitemap.php?target=yahoo [L]
RewriteRule ^outgoing/(.)$ /out.php?url=$1&%{QUERY_STRING} [L]
RewriteRule ^pages/(.
)$ /page.php?page=$1&%{QUERY_STRING} [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php?%{QUERY_STRING} [QSA]
###############.htaccess

Otherwise the error you’re receiving is due to a rewrite recursion that occurs ten times or more in a row. One of your rewrite rules is causing this recursion to occur when browsing to a subdirectory or page. I would recommend inspecting your rules and removing any you don’t need. You can change the line “RewriteEngine on” to “RewriteEngine off” to disable rewrites while developing your site. Your site developer should understand these rules and be capable of adjusting them to their needs. I hope this information helps you and your developer adjust your settings for your site to function. Thanks,
Charles H.
System Administrator, Site5.com”

3 months ago
Author
freekrai freekrai replied

Again, when it comes to servers compiled to run this way (suPHP), my experience has never been good, so I avoid them.

There is no meeting halfway on this. I included a .htaccess with rules that work as standard on every other server, and when it comes to servers not configured standard such as suPHP.. It’s outside what I can support.

I remember that you will have to look at different line endings than [L].. but that’s about it.

3 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
  • United States
CorpusCollosum says
Purchased

Okay then, would you answer my questions regarding how you wrote fastAmazon here? I will be attempting to get it working…

Simply, I’ve found out that removing php rules from htaccess and putting them inside the php.ini file is easy. What are the PHP rules I need that you wrote into the .htaccess that would be broken in this case? I will do my best to get them working within php.ini and I’ll post the answers here for all your SuPHP customers.

3 months ago
Author
freekrai freekrai replied

That’s just it.. The only PHP rules were for error reportng ad could have been just taken out altogether. Didn’t actually need t go in an ini file, you coud hav just removed them.

Everything else is handled by index.php and config.php… The product rule yu asked abut.. YOU control from config.php… That has absolutely nothing to do with suphp..

In fact, I tod you what you had to look for… Look to see what line endings you should be using as currently, it uses [L], and that is standard with other servers.

3 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
  • United States
CorpusCollosum says
Purchased

I got it! I commented out #RewriteBase /mypages/ and the product pages load now. The link to Amazon is giving me this at Amazon: “We’re sorry. The Web address you entered is not a functioning page on our site” Have you seen that? Hope this helps someone else out there.

3 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
  • United States
CorpusCollosum says
Purchased

On a product page if I hit the “Buy From Amazon” button it redirects the link to http://www.amazon.com/gp/product/pezdispens/
If I open in a new tab it loads the Amazon product page correctly. Would you have any ideas? I’ve come a long way and thanks.

-Ben

3 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
webmmt says
Purchased

Just bought the script and am having problems with it. I know I need to set it to com vs es but can’t find where to do that.

Also when I click on any category it goes to a broken page

I enabled errors and changed all the .inc files to .php so that they are easier on the eyes when I edit.

If you could point me in the right direction i’d appreciate it.

here is the site: www.oneyearoffood.com

Thanks

3 months ago
Author
freekrai freekrai replied

Have you uploaded the .htaccess file?

Also.. if you rename .inc files to .php files.. Then you have to make sure you change any references pointing to them in the files.. Otherwise.. Everything’s broken..

Most decent editors actually associate .inc files as PHP from their content.. so never been a problem

3 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
webmmt says
Purchased

Yes to the HTAccess and I have already changed all the links to point to the php so that’s not a problem.

3 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
adisakmai says
Purchased

Hi

I can’t install. There is Internal Server Error. It look like API not working. Could you go to my hosting and check. I will give FTP user and password.

2 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
adisakmai says
Purchased

Hi

I can’t install. There is Internal Server Error http://aaronlover.uni.me/

Could you kindly help me check. I will give FTP user and password to you.

2 months ago
  • Has been a member for 2-3 years
  • Bought between 10 and 49 items
freddie77 says
Purchased

I’ve just purchsed your script. I get an internal server error, I’ve look over your config file and compared it to your install instructions, it looks like you are missing important variables: admin, sql database info, cache time.. , I think you should look over your code.

1 month ago
Author
freekrai freekrai replied

There is no admin, SQL database or cache time…

So not missing anything

1 month ago
Author
freekrai freekrai replied

In fact.. http://kb.freekrai.net/products/fastamazon/fastamazon-installation-instructions doesn’t say anything about those variables either

1 month ago
  • Has been a member for 1-2 years
  • Bought between 50 and 99 items
wuteverx1972 says
Purchased

—DELETED

1 month ago
  • Has been a member for 1-2 years
  • Bought between 50 and 99 items
wuteverx1972 says
Purchased

Just purchased your script and there’s so many conflicts.

I had to comment out #php_flag display_errors Off -to get the site working otherwise i would get a 404 error

and

RewriteRule .* index.php?%{QUERY_STRING} [QSA]

-to get the css style to load.

Right now, I am able to search any product: http://bambooplant.org/amazon/search.php?search_query=bamboo&x=0&y=0

BUT whenever I click on a product I get a 404 error.

If I enable RewriteRule .* index.php?%{QUERY_STRING} [QSA] I am able to see the product, view larger image and purchase product through amazon.

BUT no css gets loaded and everything is striped down. AND the search feature will not work unless i comment out RewriteRule .* index.php?%{QUERY_STRING} [QSA]

Site: http://bambooplant.org/amazon/

Please help!

1 month ago
  • Has been a member for 2-3 years
  • Exclusive Author
  • Bought between 10 and 49 items
  • United Kingdom
theghost24 says

Does this script work ok for the Amazon UK , England

1 month ago
Author
freekrai freekrai replied

Yes, you just have to modify it to UK settings

1 month ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
  • Referred between 1 and 9 users
templatedesign says
Purchased

I’m unable to install it properly, it didn´t seem as difficult. :-(

I always retrieve an 500 error in a baby plan in hostgator even following the .htaccess error instructions in the knowledge base ¿is it a known issue?

25 days ago
Author
freekrai freekrai replied

what messages are you showing in your logs?

500 error means something in hostgator doesn’t agree with the script.

23 days ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
  • Referred between 1 and 9 users
templatedesign says
Purchased

Many thanks, It was the above mentioned php flag (I’m sorry for not reading before), but after removing it still does’t work and I get this message into the error log:

Thu May 03 16:53:58 2012 [client 00.000.00.00] find: `/home/user/public_html/domainname.net/comprar/_cache/*.txt’: No such file or directory

(Obviously I try to install it at domainname.net/comprar/)

I’ve opened a ticket at hostgator support also.

Many thanks in advance

23 days ago
Author
freekrai freekrai replied

Make sure you have made the _cache folder writeable..

22 days ago
by
by
by
by
by