Jump to content


Corporate Sponsors


Latest News: (loading..)

mcbsolutions

Member Since 13 May 2003
Offline Last Active May 12 2012, 17:13
-----

Posts I've Made

In Topic: The Feedmachine Solution

11 May 2012, 14:28

View PostSpongeMaximus, on 28 June 2011, 14:02, said:

Hi all,

I've set up a cron job to run feedmachine_auto.php once a night at 11:30pm, and I know the cron is working because I also set it to email me upon completion, and the e-mails are coming through. The problem is that feedmachine_auto.php isn't updating or uploading any feeds. This is the result I get, it's the same whether the cron job runs it or I run it manually from the shell:

-----------------------
Feedmachine Report
-----------------------

start time: 2011-06-28 09:53:52 EDT
end time: 2011-06-28 09:53:52 EDT
runtime: 0.024120807647705


GLOBAL UPDATE TRIGGERS
----------------------
(no global update triggers)

NOTICES
-------
(no notices)

						F   E   E   D   S

Google Product Search
------------
update status: feed not updated(0)
upload trigger status: feed upload not triggered(0)
upload status: feed was not uploaded(0)

(etc. all other feed results are the same, not updated and not uploaded)

Any idea what's going wrong? I made sure that the appropriate folders have execute and write permissions where applicable, so I don't think that's it. I even tried commenting out the part in feedmachine_auto.php that refuses to update the feeds if there's a catalog update in progress, etc.:

//check to see if the catalog is currently being updated
/*$last_updated_date = max(array($global_current_info['products_last_updated']['value'], $global_current_info['specials_last_updated']['value'], $global_current_info['categories_last_updated']['value']));
if( $last_updated_date > (time()-FM_AUTO_GRACE_PERIOD_MINUTES*60) && $last_updated_date < (time()+FM_AUTO_GRACE_PERIOD_MINUTES*60) && !$force_update ) {
  echo 'Catalog is currently being updated: not generating or sending feeds.';
tep_exit();*/
}
Still no go. I can still manually update/upload the feeds in the Feedmachine admin section of my site, just not with feedmachine_auto.php. Thoughts?

Hi, I'm having same issue running a cron job. The cron job runs but the report says
update status: feed not updated(0)
upload trigger status: feed upload not triggered(0)
upload status: feed was not uploaded(0)

I have to upload manually for time being. What am I missing here? I'm running the version for Osc 2.2 which is v 5.03 it appears. Thanks!!

In Topic: The Feedmachine Solution

28 November 2011, 19:07

Is this compatible with 2.3? This is a must have for me if i upgrade to 2.3. Thanks!

In Topic: [Contribution] Category Box as Nested Unordered List v1.0

27 November 2011, 09:41

Hi,

I'm using the OSC-CSS add on, and trying to implement some of Yahoo's YUI modules, etc. I'd like to get a YUI3 menu working with my store such as this one.

http://yuilibrary.com/yui/docs/node-menunav/menunav-leftnav.html

Anyone done this yet with YUI3? I'd be thankful for someone to help me out on getting this my categories menu talking to this. Thanks!!

Steve

In Topic: Official Dwolla Support Thread

16 November 2011, 02:37

Hi, installed the new version. Signed up for my business dwolla acct. Under payment mod config it asks for the The API hash value to verify transactions with. All I get from Dwolla is the API key and code which I entered. Is the API hash value necessary and if so where do i get it? Thanks!!

Steve

In Topic: OSC to CSS v2

07 November 2011, 04:27

View Postmcbsolutions, on 06 November 2011, 21:16, said:

I'm implementing this on a 1200 pixel grid. I updated my 960.css file accordingly. I'm having just an issue with my grid breaking down somewhere and can't figure out where. This is causing the footer to not display.
In my working test install I should be getting html like this.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en" dir="LTR">
<head>
<body>
<div class="container_24">
<div id="header" class="grid_24">
<div class="clear"></div>
<div id="column_left" class="grid_5">
<div id="content" class="grid_14">
<div id="column_right" class="grid_5">
<div class="clear"></div>
<div id="footer" class="grid_24">
<div class="clear"></div>
</div>
<div class="ui-dialog ui-widget ui-widget-content ui-corner-all " style="display: none; z-index: 1000; outline: 0px none;" tabindex="-1" role="dialog" aria-labelledby="ui-dialog-title-1">
</body>
</html>

But what I get is this below in a site I am converting to this new version of osc-css with a 1200 grid.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en" dir="LTR">
<head>
<body>
<div class="container_24">
<div id="header" class="grid_24">
<div class="clear"></div>
<div id="column_left" class="grid_5">
<div id="content" class="grid_14">
<div id="column_right" class="grid_5">
</div>
<div class="cart_status" style="display: none;"></div>
</body>
</html>

You might need to paste these into your favorite file comparison tool to see the difference. I'm also not sure why the div class for cart_status is not pulling in the correct results. I checked my working code vs. non working code in the relevant areas and all is the same. So I am missing something but not sure where the problem lies.
Thanks for any assistance.


Got it resolved, I just had something in a custom infobox in the right column that was the problem. Took awhile to figure that out. Maybe this helps someone if they have a similar issue.