Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
require_once('plog-load_config.php');
require_once('plog-load_config.php');
print_r($config); // should print out the configuration array
function some_function() {
print_r($config); // won't print anything
}
global $config = array();
require_once('plog-load_config.php');
print_r($config); // should print out the configuration array
function some_function() {
global $config;
print_r($config); // should print out the configuration array, too
}
<plogger name="Demo Gallery">
<config>
<thumb_num>8</thumb_num>
<date_format>F j, Y</date_format>
<compression>75</compression>
<default_sortby>date</default_sortby>
<default_sortdir>DESC</default_sortdir>
<gallery_name>Demo Gallery</gallery_name>
<allow_dl>1</allow_dl>
<allow_comments>0</allow_comments>
<allow_print>1</allow_print>
<truncate>12</truncate>
<feed_num_entries>15</feed_num_entries>
<feed_title>Plogger Photo Feed</feed_title>
<use_mod_rewrite>0</use_mod_rewrite>
<feed_language>en-us</feed_language>
<comments_notify>1</comments_notify>
<square_thumbs>1</square_thumbs>
<gallery_url>http://plogger.org/demo/</gallery_url>
<allow_fullpic>1</allow_fullpic>
<comments_moderate>0</comments_moderate>
<theme_dir>air</theme_dir>
<album_sortby>id</album_sortby>
<album_sortdir>DESC</album_sortdir>
<collection_sortby>id</collection_sortby>
<collection_sortdir>DESC</collection_sortdir>
<enable_thumb_nav>0</enable_thumb_nav>
<thumb_nav_range>0</thumb_nav_range>
<baseurl>/demo/plog-xml.php</baseurl>
<embedded>1</embedded>
<theme_url>http://plogger.org/demo/themes/air/</theme_url>
<charset>utf-8</charset>
<version>Version 3.0 Beta</version>
</config>
</plogger>
1 to 2 of 2