X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Dev Questions (https://forum.x-cart.com/forumdisplay.php?f=20)
-   -   Froogle Google (https://forum.x-cart.com/showthread.php?t=2286)

kpayne 12-03-2003 03:57 AM

That looks like you've got 2 versions of PHP. There's your mod_php, which has MySQL compiled in, and then there's your php executable, which doesn't.

You can either recompile php, or you can run your froogle dump over the web like so:
Code:

lynx --dump http://www.yoursite.com/shop/froogle.php 2>&1 > /dev/null

[edit]Just a note, the last part of that line, "2>&1 >/dev/null" throws away any output from the command. I'd recommend testing without it, but putting it back in if you run it in cron.[/edit]

Hope that helps!

firecompanies 12-03-2003 04:13 AM

THANKS! Only problem with running from the browser is the fact that the user needs to authenticate as an administrator. I'd prefer not to comment out the authentication lines for obvious reasons.

Should my host be able to take care of the PHP issue?

Craig Elliott

kpayne 12-03-2003 04:20 AM

You can add "-auth=id:password" to the lynx command to make it work.

Your host *could* take care of the PHP problem, but I doubt they will. Recompiling PHP is a tricky thing, it could take down web services for everyone, and they might not be able to do it if they're using some control panel software.

finestshops 12-06-2003 07:56 PM

Hi guys,

Looks like Froogle has a problem with images loaded as php script. Lots of people reported drop of listings. Any ideas how to fix it? Or why this can happen?

groovico 12-08-2003 01:49 AM

Our firetank froogle add on does image support via URL in the next version (due for release with marketing manager 2.0), it'll be available as a stand alone module too, might save you some hassle as it allows you to control what is outputted for the feed a little more.

nfc5382 12-25-2003 07:28 PM

Quote:

Originally Posted by 27stars
Hi guys,

Looks like Froogle has a problem with images loaded as php script. Lots of people reported drop of listings. Any ideas how to fix it? Or why this can happen?


I am seeing the same prob; but it seems to work for some but not all.

Courage 12-28-2003 10:49 AM

X-cart 3.5.1
Installed froogle_update.php in /provider directory

I get this error:

Code:

Can't to find template engine!

finestshops 12-29-2003 09:04 PM

90% of all products was dropped from froogle. Got email from froogle - they need url to large images (not thumbnail) in the file. Any ideas on how to change froogle_update.php to get url to first detailed image for every product?

escott 01-02-2004 05:41 PM

Quote:

Originally Posted by Courage
X-cart 3.5.1
Installed froogle_update.php in /provider directory

I get this error:

Code:

Can't to find template engine!


Did anyone come up with a solution to this problem? I get it too.

finestshops 01-02-2004 06:33 PM

Quote:

Originally Posted by escott
Quote:

Originally Posted by Courage
X-cart 3.5.1
Installed froogle_update.php in /provider directory

I get this error:

Code:

Can't to find template engine!


Did anyone come up with a solution to this problem? I get it too.


Try to change

Code:

require "../smarty.php";
require "../config.php";
require "./auth.php";
require "../include/security.php";


to

Code:

require "./auth.php";
require $xcart_dir."/include/security.php";



All times are GMT -8. The time now is 07:57 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.