Jump to content

Recommended Posts

Posted

config_templates.php (Correcta)

<?php

/* include class file */
include("/include/templateEngine/Savant3.php");

/* initiate new template class */
$tpl = new Savant3();

/* set default templates folder */
$tpl->setPath("template", $config['base_path'] . "/templates/" . $config['template'] . "/"); //deve estar aqui o erro    

?>

se tiver a  config_templates.php (Errada por exempo)

config_templates.php (Errada)

<?php

/* include class file */
include("/.............................../templateEngine/Savant3.php");

/* initiate new template class */
$tpl = new Savant3();

/* set default templates folder */
$tpl->setPath("template", $config['base_path'] . "/templates/" . $config['template'] . "/"); //deve estar aqui o erro    

?>

com erro config_templates.php (Errada) na pagina principal mostra isto:

( ! ) Warning: include(/inlude/templateEngine/Savant3.php) [function.include]: failed to open stream: No such file or directory in C:\wamp\www\include\configs\config_templates.php on line 4

Call Stack

# Time Memory Function Location

1 0.0012 668944 {main}( ) ..\index.php:0

2 0.0017 681016 include( 'C:\wamp\www\header.php' ) ..\index.php:4

3 0.0022 705536 include( 'C:\wamp\www\include\common.php' ) ..\header.php:4

4 0.0092 723680 include( 'C:\wamp\www\include\configs\config_templates.php' ) ..\common.php:9

( ! ) Warning: include() [function.include]: Failed opening '/inlude/templateEngine/Savant3.php' for inclusion (include_path='.;C:\php\pear') in C:\wamp\www\include\configs\config_templates.php on line 4

Call Stack

# Time Memory Function Location

1 0.0012 668944 {main}( ) ..\index.php:0

2 0.0017 681016 include( 'C:\wamp\www\header.php' ) ..\index.php:4

3 0.0022 705536 include( 'C:\wamp\www\include\common.php' ) ..\header.php:4

4 0.0092 723680 include( 'C:\wamp\www\include\configs\config_templates.php' ) ..\common.php:9

( ! ) Fatal error: Class 'Savant3' not found in C:\wamp\www\include\configs\config_templates.php on line 7

Call Stack

# Time Memory Function Location

1 0.0012 668944 {main}( ) ..\index.php:0

2 0.0017 681016 include( 'C:\wamp\www\header.php' ) ..\index.php:4

3 0.0022 705536 include( 'C:\wamp\www\include\common.php' ) ..\header.php:4

4 0.0092 723680 include( 'C:\wamp\www\include\configs\config_templates.php' ) ..\common.php:9

com config_templates.php (Correcta) na pagina inicial da o seguinte erro:

( ! ) Notice: Undefined variable: core in C:\wamp\www\footer.php on line 8

Call Stack

# Time Memory Function Location

1 0.0015 668576 {main}( ) ..\index.php:0

2 0.0397 1375216 include( 'C:\wamp\www\footer.php' ) ..\index.php:11

Template error: Unable to load "index.tpl.php"

O que tenho no footer.php

<?php

/* global template vars */
$tpl->config = $config;
$tpl->_CONFIG = $_CONFIG;
$tpl->user = $user;
$tpl->page = $page;
$tpl->core = $core;

/* display template file */
$tpl->display($page . ".tpl.php");

?>

 

Posted
Warning: include(/inlude/templateEngine/Savant3.php) [function.include]: failed to open stream: No such file or directory in C:\wamp\www\include\configs\config_templates.php on line 4

Aqui diz-te que o ficheiro Savant3.php não existe nessa pasta ou que tens o caminho errado.

Começa por resolver isto.

Abraços e beijinhos,Rui Costa

Posted

No tópico já tenho a corrigido  🙂 o problema e o erro que da depois disso

config_templates.php (Correcta)

<?php

/* include class file */
include("/include/templateEngine/Savant3.php");

/* initiate new template class */
$tpl = new Savant3();

/* set default templates folder */
$tpl->setPath("template", $config['base_path'] . "/templates/" . $config['template'] . "/"); //deve estar aqui o erro    

?>

( ! ) Notice: Undefined variable: core in C:\wamp\www\footer.php on line 8

Call Stack

#  Time  Memory  Function  Location

1  0.0015  668576  {main}( )  ..\index.php:0

2  0.0397  1375216  include( 'C:\wamp\www\footer.php' )  ..\index.php:11

Template error: Unable to load "index.tpl.php"

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.