To import an Excel file into MySQL, first export it as a CSV file. Remove the CSV headers from the generated CSV file along with empty data that Excel may have put at the end of the CSV file.
You can then import it into a MySQL table by running:
<?php $block = module_invoke('views', 'block', 'view', 'Feaured_Content_Block-block_1'); print $block['content']; ?>
Or
<?php print views_embed_view('home_page_rotor'); ?>
Modify: uc_catalog.module
NOTE! This was done in Drupal 5.x, be sure you know what you're doing! :)
if (empty($_REQUEST['order'])) { $order = 'p.ordering, n.title, n.nid'; }
to
if (empty($_REQUEST['order'])) { $order = 'tn.weight_in_tid, p.ordering, n.title, n.nid'; }
<?php variable_get('site_mail'); ?>
require_once "../../../../../filemanager.config.php";
<?php $block = module_invoke('block' ,'block', 'view', 18); print $block['content']; ?>
find . -name '*.tar.gz' -exec tar -zxf {} \; rm *.tar.gz;
The following commands reset all your files and directories back to the server defaults of 755 and 644.
find . -type f -exec chmod 644 {} \; find . -type d -exec chmod 755 {} \;
ln -s {target-filename} {symbolic-filename}