the app install fine, but seems to have errors in the app. i need to be change all the code, form <?= to <?php echo , is this normal or can someone give me some advice.

Ian

the app install fine, but seems to have errors in the app. i need to be change all the code, form <?= to <?php echo , is this normal or can someone give me some advice.

Ian

Turn on short_tags. osTicket uses short tags at the moment (which will change in the future). A quick fix is to enable short tags by adding .htaccess to the root osTicket directory with:

php_value short_tags on.

12 days later

Turn on short_tags. osTicket uses short tags at the moment (which will change in the future). A quick fix is to enable short tags by adding .htaccess to the root osTicket directory with:

php_value short_tags on.

I use wamp 2c. I create abc.htaccess with that content (php_value short_tags on) in ..\wamp\www\osticket or ..\wamp\www\osticket\upload but haven't solved.

Help me

________

(iolite vaporizer)

I use wamp 2c. I create abc.htaccess with that content (php_value short_tags on) in ..\wamp\www\osticket or ..\wamp\www\osticket\upload but haven't solved.

Help me

I assume you have Windows as the OS? If this is the case, I am not sure if htaccess files are possible. One thing is for sure, abc.htaccess is not valid. An htaccess file can only be named ".htaccess" (without the quotes and nothing before the dot).

But perhaps you can try to add the following line to the main.inc.php file:

ini_set("short_open_tags", true);

Write a Reply...