Hi All,
Im tring to migrate a local copy to a production server but I enconter that the content blocks are not showing in the Front End. Only the Home page content is shown. I have {content} in my template, Im pretty sure the paths in config.php are ok also. Please Check. Could be a .htaccess issue? But even happens when URL Rewriting is OFF
I can see the data stored in the date base.....
The web site is http://www.altearte.com
Really Confused. Below are config.php, debug & .htaccess & System Info
Content Not Showing
Re: Content Not Showing
Config. php
Code: Select all
<?php
#CMS Made Simple Configuration File
#Please clear the cache (Site Admin->Global Settings in the admin panel)
#after making any changes to path or url related options
#-----------------
#Behaviour Settings
#-----------------
# These settings will effect the overall behaviour of the CMS application, please
# use extreme caution when editing these. Additionally, some settings may have
# no effect on servers with significantly restricted configurability.
# If you are experiencing propblems with php memory limit errors, then you may
# want to try enabling and/or adjusting this setting.
# Note: Your server may not allow the application to override memory limits.
$config['php_memory_limit'] = '';
# In versions of CMS Made Simple prior to version 1.4, the page template was processed
# in it's entirety. This behaviour was later changed to process the head portion of the
# page template after the body. If you are working with a highly configured site that
# relies significantly on the old order of smarty processing, you may want to try
# setting this parameter to false.
$config['process_whole_template'] = false;
# CMSMS Debug Mode? Turn it on to get a better error when you
# see {nocache} errors, or to allow seeing php notices, warnings, and errors in the html output.
# This setting will also disable browser css caching.
$config['debug'] = false;
# Output compression?
# Turn this on to allow CMS to do output compression
# this is not needed for apache servers that have mod_deflate enabled
# and possibly other servers. But may provide significant performance
# increases on some sites. Use caution when using this as there have
# been reports of incompatibilities with some browsers.
$config['output_compression'] = false;
#-----------------
#Database Settings
#-----------------
#This is your database connection information. Name of the server,
#username, password and a database with proper permissions should
#all be setup before CMS Made Simple is installed.
$config['dbms'] = 'mysql';
$config['db_hostname'] = 'hl94.dinaserver.com';
$config['db_username'] = 'removed';
$config['db_password'] = 'removed';
$config['db_name'] = 'altearte';
#Change this param only if you know what you are doing
$config["db_port"] = '';
#If app needs to coexist with other tables in the same db,
#put a prefix here. e.g. "cms_"
$config['db_prefix'] = 'cms_';
#Use persistent connections? They're generally faster, but not all hosts
#allow them.
$config['persistent_db_conn'] = false;
#Use ADODB Lite? This should be true in almost all cases. Note, slight
#tweaks might have to be made to date handling in a "regular" adodb
#install before it can be used.
$config['use_adodb_lite'] = true;
#-------------
#Path Settings
#-------------
#Document root as seen from the webserver. No slash at the end
#If page is requested with https use https as root url
#e.g. http://blah.com
$config['root_url'] = 'http://www.altearte.com';
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']=='on')
{
$config['root_url'] = str_replace('http','https',$config['root_url']);
}
#Path to document root. This should be the directory this file is in.
#e.g. /var/www/localhost
$config['root_path'] = '/home/altearte/www';
#Name of the admin directory
$config['admin_dir'] = 'Administraci0n';
#Where do previews get stored temporarily? It defaults to tmp/cache.
$config['previews_path'] = '/home/altearte/www/tmp/cache';
#Where are uploaded files put? This defaults to uploads.
$config['uploads_path'] = '/home/altearte/www/uploads';
#Where is the url to this uploads directory?
$config['uploads_url'] = $config['root_url'] . 'http://www.altearte.com/uploads';
#---------------
#Upload Settings
#---------------
#Maxium upload size (in bytes)?
$config['max_upload_size'] = 2000000;
#Permissions for uploaded files. This only really needs changing if your
#host has a weird permissions scheme.
$config['default_upload_permission'] = '664';
#------------------
#Usability Settings
#------------------
#Allow smarty {php} tags? These could be dangerous if you don't trust your users.
$config['use_smarty_php_tags'] = false;
#Automatically assign alias based on page title?
$config['auto_alias_content'] = true;
#------------
#URL Settings
#------------
#What type of URL rewriting should we be using for pretty URLs? Valid options are:
#'none', 'internal', and 'mod_rewrite'. 'internal' will not work with IIS some CGI
#configurations. 'mod_rewrite' requires proper apache configuration, a valid
#.htaccess file and most likely {metadata} in your page templates. For more
#information, see:
#http://wiki.cmsmadesimple.org/index.php/FAQ/Installation/Pretty_URLs#Pretty_URL.27s
$config['url_rewriting'] = 'none';
#Extension to use if you're using mod_rewrite for pretty URLs.
$config['page_extension'] = '.html';
#If you're using the internal pretty url mechanism or mod_rewrite, would you like to
#show urls in their hierarchy? (ex. http://www.mysite.com/parent/parent/childpage)
$config['use_hierarchy'] = true;
#If using none of the above options, what should we be using for the query string
#variable? (ex. http://www.mysite.com/index.php?page=somecontent)
$config['query_var'] = 'page';
#--------------
#Image Settings
#--------------
#Which program should be used for handling thumbnails in the image manager.
#See http://wiki.cmsmadesimple.org/index.php/User_Handbook/Admin_Panel/Content/Image_Manager for more
#info on what this all means
$config['image_manipulation_prog'] = 'GD';
$config['image_transform_lib_path'] = '/usr/bin/ImageMagick/';
#Default path and URL for uploaded images in the image manager
$config['image_uploads_path'] = '/home/altearte/www/uploads/images';
$config['image_uploads_url'] = $config['root_url'] . 'http://www.altearte.com/uploads/images';
#------------------------
#Locale/Encoding Settings
#------------------------
#Locale to use for various default date handling functions, etc. Leaving
#this blank will use the server's default. This might not be good if the
#site is hosted in a different country than it's intended audience.
$config['locale'] = '';
#In almost all cases, default_encoding should be empty (which defaults to utf-8)
#and admin_encoding should be utf-8. If you'd like this to be different, change
#both. Keep in mind, however, that the admin interface translations are all in
#utf-8, and will be converted on the fly to match the admin_encoding. This
#could seriously slow down the admin interfaces for users.
$config['default_encoding'] = 'utf-8';
$config['admin_encoding'] = 'utf-8';
#This is a mysql specific option that is generally defaulted to true. Only
#disable this for backwards compatibility or the use of non utf-8 databases.
$config['set_names'] = true;
# URL of the Admin Panel section of the User Handbook
# Set none if you want hide the link from Error
$config['wiki_url'] = 'http://wiki.cmsmadesimple.org/index.php/User_Handbook/Admin_Panel';
?>
Last edited by calguy1000 on Thu Apr 08, 2010 9:28 pm, edited 1 time in total.
Re: Content Not Showing
Debug:
Cms Version: 1.6.2
Installed Modules:
* CMSMailer: 1.73.14
* FileManager: 1.0
* MenuManager: 1.6.1
* ModuleManager: 1.3.1
* News: 2.10.2
* nuSOAP: 1.0.1
* Printing: 1.0
* Search: 1.6.1
* ThemeManager: 1.1.1
* TinyMCE: 2.5.1
* CGExtensions: 1.16.2
* NMS: 2.2.2
* CGSimpleSmarty: 1.4.3
* CGBlog: 1.3.1
* Thumbnails: 0.1.1
* NeoGallery: 0.2.0-svn
* FrontEndUsers: 1.6.9
* CGFeedback: 1.0
* FormBuilder: 0.5.11
* SimpleGoogleMap: 1.1
* Captcha: 0.4
* Guestbook: 1.1.12
* VisitorStats: 0.1.3
* SiteMapMadeSimple: 1.1.4
Config Information:
* php_memory_limit:
* process_whole_template: false
* max_upload_size: 2000000
* default_upload_permission: 664
* assume_mod_rewrite: false
* page_extension: .html
* internal_pretty_urls: false
* use_hierarchy: true
Php Information:
* phpversion: 5.2.11
* md5_function: Encendido (Verdadero)
* gd_version: 2
* tempnam_function: Encendido (Verdadero)
* magic_quotes_runtime: Apagado (Falso)
* memory_limit: 96M
* max_execution_time: 30
* safe_mode: Apagado (Falso)
* session_save_path: /tmp (1777)
Server Information:
* Server Api: cgi-fcgi
* Server Db Type: MySQL (mysql)
* Server Db Version: 5.1.38
Code: Select all
Generated in 0.26268 seconds by CMS Made Simple using 67 SQL queries and 20115688 bytes of memory (peak memory usage was 20703192)
Debug: (0.007403) - (1258160)
loading smarty
Debug: (0.010925) - (1759648)
loading adodb
Debug: (0.012114) - (1921832)
loading page functions
Debug: (0.014475) - (2233784)
loading content functions
Debug: (0.016603) - (2595304)
loading pageinfo functions
Debug: (0.017195) - (2679280)
loading translation functions
Debug: (0.017555) - (2711672)
loading events functions
Debug: (0.018569) - (2860256)
loading php4 entity decode functions
Debug: (0.019983) - (3191352)
done loading files
Debug: (0.02698) - (4473448)
<br>
(mysql): SET NAMES 'utf8'<br>
Error (0): <br>
Debug: (0.027452) - (4514416)
<br>
(mysql): SELECT sitepref_name, sitepref_value from cms_siteprefs<br>
Error (0): <br>
Debug: (0.030778) - (4746528)
<br>
(mysql): SELECT * FROM cms_userplugins<br>
Error (0): <br>
Debug: (0.03582) - (5555136)
<br>
(mysql): SELECT * FROM cms_modules WHERE admin_only = 0 AND active = 1 ORDER by module_name<br>
Error (0): <br>
Debug display of 'Load Content Operations':(0.04385) - (7068568)
Debug display of 'End Load Content Operations':(0.050121) - (8113928)
Debug: (0.050328) - (8118480)
<br>
(mysql): SELECT content_id FROM cms_content WHERE default_content = 1<br>
Error (0): <br>
Debug display of 'End of include':(0.113258) - (17123144)
Debug: (0.114026) - (17043280)
<br>
(mysql): SELECT c.content_name, c.menu_text, c.titleattribute, c.metadata, c.content_id, c.content_alias, c.hierarchy, c.id_hierarchy, c.prop_names, c.create_date AS c_create_date, c.modified_date AS c_date, c.cachable, c.last_modified_by,t.template_id, t.encoding, t.modified_date AS t_date FROM cms_templates t INNER JOIN cms_content c ON c.template_id = t.template_id WHERE c.content_alias = 'blog' AND c.active = 1<br>
Error (0): <br>
Debug: (0.11426) - (17050112)
<br>
(mysql): SELECT MAX(modified_date) AS thedate FROM cms_content c<br>
Error (0): <br>
Debug display of 'Start Loading Hierarchy Manager':(0.114581) - (17044912)
Debug display of 'starting tree':(0.114617) - (17046280)
Debug: (0.116448) - (17301360)
file needs loading
Debug display of 'ending tree':(0.116645) - (17352176)
Debug display of 'End Loading Hierarchy Manager':(0.116678) - (17346104)
Debug: (0.116708) - (17346840)
start findNodeByTag
Debug: (0.116756) - (17347440)
end findNodeByTag
Debug: (0.116956) - (17356088)
<br>
(mysql): SELECT * FROM cms_content WHERE content_id = '56'<br>
Error (0): <br>
Debug: (0.118648) - (17640920)
load from data is loading properties
Debug: (0.118689) - (17641384)
load properties called
Debug: (0.118872) - (17649032)
<br>
(mysql): SELECT * FROM cms_content_props WHERE content_id = '56'<br>
Error (0): <br>
Debug: (0.120694) - (17855240)
<br>
(mysql): SELECT template_id, template_name, template_content, stylesheet, encoding, active, default_template, modified_date FROM cms_templates WHERE template_id = '32'<br>
Error (0): <br>
Debug: (0.127867) - (19027576)
<br>
(mysql): SELECT eh.tag_name, eh.module_name, e.originator, e.event_name, eh.handler_order, eh.handler_id, eh.removable FROM cms_event_handlers eh
INNER JOIN cms_events e ON e.event_id = eh.event_id
ORDER BY eh.handler_order ASC<br>
Error (0): <br>
Debug: (0.139313) - (19119768)
start findNodeByTag
Debug: (0.139373) - (19120480)
end findNodeByTag
Debug display of 'Start of Menu Manager Display':(0.166541) - (19348120)
Debug: (0.166862) - (19363776)
<br>
(mysql): SELECT * FROM cms_content WHERE content_id = '15'<br>
Error (0): <br>
Debug: (0.167156) - (19416936)
load from data is loading properties
Debug: (0.167193) - (19417400)
load properties called
Debug: (0.167378) - (19425136)
<br>
(mysql): SELECT * FROM cms_content_props WHERE content_id = '15'<br>
Error (0): <br>
Debug: (0.16829) - (19442264)
<br>
(mysql): SELECT * FROM cms_content WHERE content_id = '57'<br>
Error (0): <br>
Debug: (0.168555) - (19491008)
load from data is loading properties
Debug: (0.168593) - (19491472)
load properties called
Debug: (0.168769) - (19498912)
<br>
(mysql): SELECT * FROM cms_content_props WHERE content_id = '57'<br>
Error (0): <br>
Debug: (0.169228) - (19502424)
<br>
(mysql): SELECT * FROM cms_content WHERE parent_id = '57' AND active = 1 ORDER BY hierarchy<br>
Error (0): <br>
Debug: (0.170397) - (19684976)
load properties called
Debug: (0.170581) - (19692352)
<br>
(mysql): SELECT * FROM cms_content_props WHERE content_id = '58'<br>
Error (0): <br>
Debug: (0.170972) - (19695288)
load properties called
Debug: (0.171149) - (19702720)
<br>
(mysql): SELECT * FROM cms_content_props WHERE content_id = '59'<br>
Error (0): <br>
Debug: (0.171546) - (19705416)
load properties called
Debug: (0.171728) - (19712848)
<br>
(mysql): SELECT * FROM cms_content_props WHERE content_id = '60'<br>
Error (0): <br>
Debug: (0.172122) - (19715544)
load properties called
Debug: (0.172309) - (19722976)
<br>
(mysql): SELECT * FROM cms_content_props WHERE content_id = '61'<br>
Error (0): <br>
Debug: (0.172774) - (19725040)
<br>
(mysql): SELECT * FROM cms_content WHERE content_id = '63'<br>
Error (0): <br>
Debug: (0.173063) - (19773480)
load from data is loading properties
Debug: (0.173104) - (19773944)
load properties called
Debug: (0.173281) - (19781384)
<br>
(mysql): SELECT * FROM cms_content_props WHERE content_id = '63'<br>
Error (0): <br>
Debug: (0.173825) - (19782408)
<br>
(mysql): SELECT * FROM cms_content WHERE content_id = '64'<br>
Error (0): <br>
Debug: (0.174118) - (19829096)
load from data is loading properties
Debug: (0.17416) - (19829560)
load properties called
Debug: (0.174334) - (19837000)
<br>
(mysql): SELECT * FROM cms_content_props WHERE content_id = '64'<br>
Error (0): <br>
Debug: (0.174812) - (19833968)
<br>
(mysql): SELECT * FROM cms_content WHERE content_id = '66'<br>
Error (0): <br>
Debug: (0.1751) - (19880776)
load from data is loading properties
Debug: (0.175139) - (19881240)
load properties called
Debug: (0.175318) - (19888680)
<br>
(mysql): SELECT * FROM cms_content_props WHERE content_id = '66'<br>
Error (0): <br>
Debug: (0.175796) - (19885936)
<br>
(mysql): SELECT * FROM cms_content WHERE content_id = '62'<br>
Error (0): <br>
Debug: (0.176094) - (19934952)
load from data is loading properties
Debug: (0.176133) - (19935416)
load properties called
Debug: (0.176309) - (19942856)
<br>
(mysql): SELECT * FROM cms_content_props WHERE content_id = '62'<br>
Error (0): <br>
Debug: (0.17686) - (19943352)
<br>
(mysql): SELECT * FROM cms_content WHERE content_id = '65'<br>
Error (0): <br>
Debug: (0.177145) - (19990048)
load from data is loading properties
Debug: (0.177185) - (19990512)
load properties called
Debug: (0.17736) - (19997952)
<br>
(mysql): SELECT * FROM cms_content_props WHERE content_id = '65'<br>
Error (0): <br>
Debug: (0.178648) - (20142488)
<br>
(mysql): SELECT content from cms_module_templates WHERE module_name = 'MenuManager' and template_name = 'solitude'<br>
Error (0): <br>
Debug: (0.178878) - (20141688)
<br>
(mysql): SELECT module_name,template_name,modified_date
FROM cms_module_templates<br>
Error (0): <br>
Debug display of 'End of Menu Manager Display':(0.207716) - (20105744)
Debug: (0.210626) - (20332736)
<br>
(mysql): SELECT * FROM cms_module_nms_list
WHERE active = 1
AND public = 1 ORDER BY listid<br>
Error (0): <br>
Debug: (0.211905) - (20447768)
<br>
(mysql): SELECT content from cms_module_templates WHERE module_name = 'NMS' and template_name = 'nms_subscribeform'<br>
Error (0): <br>
Debug: (0.215897) - (20323776)
start findNodeByTag
Debug: (0.215952) - (20324232)
end findNodeByTag
Debug: (0.21816) - (20398344)
<br>
(mysql): SELECT * FROM cms_module_neogallery<br>
Error (0): <br>
Debug: (0.21837) - (20407816)
<br>
(mysql): SELECT propname,propvalue FROM cms_module_neogallery_props WHERE gallery='1'<br>
Error (0): <br>
Debug: (0.218616) - (20412056)
<br>
(mysql): SELECT propname,propvalue FROM cms_module_neogallery_props WHERE gallery='2'<br>
Error (0): <br>
Debug: (0.218893) - (20414872)
<br>
(mysql): SELECT propname,propvalue FROM cms_module_neogallery_props WHERE gallery='3'<br>
Error (0): <br>
Debug: (0.219222) - (20417864)
<br>
(mysql): SELECT propname,propvalue FROM cms_module_neogallery_props WHERE gallery='4'<br>
Error (0): <br>
Debug: (0.219466) - (20420840)
<br>
(mysql): SELECT propname,propvalue FROM cms_module_neogallery_props WHERE gallery='5'<br>
Error (0): <br>
Debug: (0.219849) - (20423008)
<br>
(mysql): SELECT propname,propvalue FROM cms_module_neogallery_props WHERE gallery='6'<br>
Error (0): <br>
Debug: (0.220098) - (20404408)
<br>
(mysql): SELECT * FROM cms_module_neogallery WHERE id='1'<br>
Error (0): <br>
Debug: (0.220292) - (20409832)
<br>
(mysql): SELECT propname,propvalue FROM cms_module_neogallery_props WHERE gallery='1'<br>
Error (0): <br>
Debug: (0.221992) - (20422848)
<br>
(mysql): SELECT * FROM cms_module_neogallery WHERE id='1'<br>
Error (0): <br>
Debug: (0.222188) - (20428232)
<br>
(mysql): SELECT propname,propvalue FROM cms_module_neogallery_props WHERE gallery='1'<br>
Error (0): <br>
Debug: (0.222511) - (20432128)
<br>
(mysql): SELECT propvalue FROM cms_module_neogallery_imgprops WHERE propname='hidden' AND filename='interior_1.jpg' AND gallery='1'<br>
Error (0): <br>
Debug: (0.222752) - (20433088)
<br>
(mysql): SELECT propvalue FROM cms_module_neogallery_imgprops WHERE propname='hidden' AND filename='interior2.jpg' AND gallery='1'<br>
Error (0): <br>
Debug: (0.223006) - (20433560)
<br>
(mysql): SELECT propvalue FROM cms_module_neogallery_imgprops WHERE propname='hidden' AND filename='P6270130.JPG' AND gallery='1'<br>
Error (0): <br>
Debug: (0.223241) - (20434040)
<br>
(mysql): SELECT propvalue FROM cms_module_neogallery_imgprops WHERE propname='hidden' AND filename='P6270137.JPG' AND gallery='1'<br>
Error (0): <br>
Debug: (0.223476) - (20434520)
<br>
(mysql): SELECT propvalue FROM cms_module_neogallery_imgprops WHERE propname='hidden' AND filename='exterior1.jpg' AND gallery='1'<br>
Error (0): <br>
Debug: (0.224543) - (20431024)
<br>
(mysql): SELECT * FROM cms_module_neogallery WHERE id='1'<br>
Error (0): <br>
Debug: (0.22474) - (20436352)
<br>
(mysql): SELECT propname,propvalue FROM cms_module_neogallery_props WHERE gallery='1'<br>
Error (0): <br>
Debug: (0.225272) - (20447536)
<br>
(mysql): SELECT propvalue FROM cms_module_neogallery_imgprops WHERE propname='description' AND filename='interior_1.jpg' AND gallery='1'<br>
Error (0): <br>
Debug: (0.225487) - (20448320)
<br>
(mysql): SELECT propvalue FROM cms_module_neogallery_imgprops WHERE propname='hidden' AND filename='interior_1.jpg' AND gallery='1'<br>
Error (0): <br>
Debug: (0.22606) - (20452576)
<br>
(mysql): SELECT propvalue FROM cms_module_neogallery_imgprops WHERE propname='description' AND filename='interior2.jpg' AND gallery='1'<br>
Error (0): <br>
Debug: (0.226269) - (20453312)
<br>
(mysql): SELECT propvalue FROM cms_module_neogallery_imgprops WHERE propname='hidden' AND filename='interior2.jpg' AND gallery='1'<br>
Error (0): <br>
Debug: (0.226727) - (20457568)
<br>
(mysql): SELECT propvalue FROM cms_module_neogallery_imgprops WHERE propname='description' AND filename='P6270130.JPG' AND gallery='1'<br>
Error (0): <br>
Debug: (0.226941) - (20458360)
<br>
(mysql): SELECT propvalue FROM cms_module_neogallery_imgprops WHERE propname='hidden' AND filename='P6270130.JPG' AND gallery='1'<br>
Error (0): <br>
Debug: (0.227374) - (20462616)
<br>
(mysql): SELECT propvalue FROM cms_module_neogallery_imgprops WHERE propname='description' AND filename='P6270137.JPG' AND gallery='1'<br>
Error (0): <br>
Debug: (0.227587) - (20463400)
<br>
(mysql): SELECT propvalue FROM cms_module_neogallery_imgprops WHERE propname='hidden' AND filename='P6270137.JPG' AND gallery='1'<br>
Error (0): <br>
Debug: (0.228021) - (20467656)
<br>
(mysql): SELECT propvalue FROM cms_module_neogallery_imgprops WHERE propname='description' AND filename='exterior1.jpg' AND gallery='1'<br>
Error (0): <br>
Debug: (0.228229) - (20468392)
<br>
(mysql): SELECT propvalue FROM cms_module_neogallery_imgprops WHERE propname='hidden' AND filename='exterior1.jpg' AND gallery='1'<br>
Error (0): <br>
Debug: (0.234829) - (20463160)
<br>
(mysql): SELECT content from cms_module_templates WHERE module_name = 'Search' and template_name = 'displaysearch'<br>
Error (0): <br>
Debug: (0.23989) - (20385520)
<br>
(mysql): update cms_module_visitorstats_seq set id=LAST_INSERT_ID(id+1);<br>
Error (0): <br>
Debug: (0.240438) - (20393008)
<br>
(mysql): INSERT INTO cms_module_visitorstats VALUES (2587,'2010-04-06 17:17:40','81.39.96.99','/index.php?page=blog&hl=es_ES','http://www.altearte.com/index.php?page=home&hl=es_ES','99.Red-81-39-96.dynamicIP.rima-tde.net','Mozilla/5.0 (Windows; U; Windows NT 5.1; es-ES; rv:1.9.1.9) Gecko/20100315 Firefox/3.5.9 (.NET CLR 3.5.30729)','0')<br>
Error (0): <br>
Debug: (0.260436) - (20425440)
start findNodeByTag
Debug: (0.260505) - (20425896)
end findNodeByTag
Debug: (0.261744) - (20437840)
<br>
(mysql): SELECT b.word
FROM cms_module_search_items a,
cms_module_search_index b
WHERE a.content_id = '56'
AND a.module_name = 'Search'
AND a.extra_attr = 'content'
AND a.id = b.item_id
AND length(b.word) >= 5
AND b.count >= 4
ORDER BY b.count DESC LIMIT 0, 10<br>
Error (0): <br>
Debug: (0.262059) - (20433104)
<br>
(mysql): SELECT DISTINCT A.css_id,A.media_type,B.assoc_order
FROM cms_css A, cms_css_assoc B
WHERE A.css_id = B.assoc_css_id
AND B.assoc_type = 'template'
AND B.assoc_to_id = '32'
ORDER BY B.assoc_order<br>
Error (0): <br>
Code: Select all
# Attempt to override some php settings, these settings may be helpful on some hosts if your
# default configuration does not meet CMS's minimum requirements, and your host
# has given your account appropriate permissions
#php_value upload_max_filesize "10M"
#php_value session_save_path "tmp/cache"
#php_flag magic_quotes_gpc Off
#php_flag register_globals Off
#php_flag session.use_trans_sid Off
# (this is important, so uncomment if your host permit)
Options -Indexes
ServerSignature Off
#
Options +FollowSymLinks
#
<IfModule mod_rewrite.c>
RewriteEngine on
#
#Sub-dir e.g: /cmsms
RewriteBase /
#
# 301 Redirect all requests that don't contain a dot or trailing slash to
# include a trailing slash
#RewriteCond %{REQUEST_URI} !/$
#RewriteCond %{REQUEST_URI} !\.
#RewriteRule ^(.*) %{REQUEST_URI}/ [R=301,L]
# Rewrites urls in the form of /parent/child/
# but only rewrites if the requested URL is not a file or directory
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/(.*)$ index.php?page=$2&hl=$1 [QSA]
</IfModule>
Cms Version: 1.6.2
Installed Modules:
* CMSMailer: 1.73.14
* FileManager: 1.0
* MenuManager: 1.6.1
* ModuleManager: 1.3.1
* News: 2.10.2
* nuSOAP: 1.0.1
* Printing: 1.0
* Search: 1.6.1
* ThemeManager: 1.1.1
* TinyMCE: 2.5.1
* CGExtensions: 1.16.2
* NMS: 2.2.2
* CGSimpleSmarty: 1.4.3
* CGBlog: 1.3.1
* Thumbnails: 0.1.1
* NeoGallery: 0.2.0-svn
* FrontEndUsers: 1.6.9
* CGFeedback: 1.0
* FormBuilder: 0.5.11
* SimpleGoogleMap: 1.1
* Captcha: 0.4
* Guestbook: 1.1.12
* VisitorStats: 0.1.3
* SiteMapMadeSimple: 1.1.4
Config Information:
* php_memory_limit:
* process_whole_template: false
* max_upload_size: 2000000
* default_upload_permission: 664
* assume_mod_rewrite: false
* page_extension: .html
* internal_pretty_urls: false
* use_hierarchy: true
Php Information:
* phpversion: 5.2.11
* md5_function: Encendido (Verdadero)
* gd_version: 2
* tempnam_function: Encendido (Verdadero)
* magic_quotes_runtime: Apagado (Falso)
* memory_limit: 96M
* max_execution_time: 30
* safe_mode: Apagado (Falso)
* session_save_path: /tmp (1777)
Server Information:
* Server Api: cgi-fcgi
* Server Db Type: MySQL (mysql)
* Server Db Version: 5.1.38
Last edited by Anonymous on Fri Apr 09, 2010 6:08 pm, edited 1 time in total.
Re: Content Not Showing
FYI: Preview in admin doesnt work... And when adding a new page in admin I get the error: No Content Given! Whan I am adding a simple text...
?¿? Any Ideas?
?¿? Any Ideas?
Last edited by bunker on Tue Apr 06, 2010 4:44 pm, edited 1 time in total.
Re: Content Not Showing
Your template definitely has {content} tag in it, not {content block=''}, all templates must have the default {content} tag in them to work...