• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

No action possible...

sebii87

Chevereto Member
Hi.

I have uploaded all the script on my server. When I come to test directly on my website, I cannot make any action anywhere. When I click on Button there's no action like everything is freezed.

Please check here : http://fileserve.128pro.net/

Where is my problem ?

Thanks.
 
I have tested and it works fine. What browser are you using?
 
Just to notice, It was working fine with the 1.9 version and with the new one, I stuck with no action possible on page...
 
As I said before... Is working for me. Try to use another browser because is likely that this is caused because a plugin or config on your browser.
 
Yes, it's working with Firefox but not with Chrome or IE8. I've made the test with my computer at job and it's still the same issue. Is there someone to test with Chrome ?
 
1. Open Chrome,
2. press F12
3. Go to console
4. Load your site

Code:
Uncaught SyntaxError: Unexpected token <
You can't use <noscript> inside a .js file! you need to place the noscript code on your HTML
 
Oh ok but what I need to do ? I didn't make any change on the script. I uploaded the script when I was done downloading it...
 
That's not true. You add this on peafowl.php
Code:
<!-- www.Host1Free.com Counter Code -->
<noscript>
<a href="http://www.host1free.com/" title="Free Hosting">Free Hosting</a>
<a href="http://www.host1free.com/web-hosting/" title="Free Web Hosting Service">Free Hosting</a>
<a href="http://www.host1plus.com/" title="Web Hosting">Web Hosting</a>
<a href="http://www.host1plus.com/vps-hosting/" title="VPS Hosting">VPS Hosting</a>
</noscript>
<!-- End of www.Host1Free.com Counter Code -->

And that is HTML, you can't add HTML directly on a .js file
Remove that thing, and then place that code on the HTML, like in header.php
 
I'm not sure at all if it will works, but try this:

Open peaflow.php

find:
Code:
<?php

add after
Code:
header('content-type: application/x-javascript');
 
Another solution would be to rename peaflow.php to peaflow.js and add this your your root .htaccess

Code:
AddType application/x-httpd-php .js

Also make sure your change the path to .js in your theme header file.
 
Is weird that your hosting company injects html on a php file.
 
Well it is probably because they think you have closed your php tag and your are now outputing html...

Anyway it is a free hosting, they do what ever they want...
 
Back
Top