I've installed drupal 4.7.3 and the ecommerce module successfully However whenI "create a page" for a product, nothing show on the screen. Same thing happens when other ecommerce-related functions are click. Other modules have no problem , just the ecommerce.
Most of my scripts running inside drupal run fine, but I have one that's giving me a huge headache...it times out every time. If I run it on it's own (outside drupal) it takes 5-6 minutes. I have set these in my php.ini:
max_execution_time = 1200 ; Maximum execution time of each script, in seconds
max_input_time = 1200 ; Maximum amount of time each script may spend parsing request data
memory_limit = 32M ; Maximum amount of memory a script may consume (8MB)
What is the easy way to add a thumbnail to a 'page' node?
Im going to have a view that will call all pages with a certain taxonomy listed. This view should show The node title and a thumbnail. This thumbnail does not necesarilly need to be shown in the node itself.
Can I do this with page or do I need to create a special CCK content type and add an image field?