test
Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • anoldboy Friend
    #178062

    Hello,

    I know that the thread exists but nobody replied me when I posted there. So I have made new thread.

    Joomla 2.5, template JA_Kranos.

    I have installed the package with the demo content like the template of showcase in joomlart.
    When I try to make changes to JA Slide Show Module and push the save button nothing happens.

    Could you please provide me some solution about this issue?

    Regards

    Stork11 Friend
    #457145

    <em>@anoldboy 324921 wrote:</em><blockquote>Hello,

    I know that the thread exists but nobody replied me when I posted there. So I have made new thread.

    Joomla 2.5, template JA_Kranos.

    I have installed the package with the demo content like the template of showcase in joomlart.
    When I try to make changes to JA Slide Show Module and push the save button nothing happens.

    Could you please provide me some solution about this issue?

    Regards</blockquote>
    Hello,

    Can you send PM to me with your site information (your site URL, your site admin account) and your FTP account? So I can diagnose this problem.

    BTW, please include this forum thread URL in your PM, so I can follow it.

    Best regards.

    anoldboy Friend
    #457213

    I have send you pm. Please inform me that you have receive it.

    Stork11 Friend
    #457380

    Hello anoldboy,

    Your .htaccess file restricts to access “http://your-domain/modules/mod_jaslideshow/admin/helper.php?japaramaction=saveProfile&profile=kranos”. Please edit yours to allow the access to that file.

    Regards.

    anoldboy Friend
    #457396

    <em>@Stork11 325342 wrote:</em><blockquote>Hello anoldboy,

    Your .htaccess file restricts to access “http://your-domain/modules/mod_jaslideshow/admin/helper.php?japaramaction=saveProfile&profile=kranos”. Please edit yours to allow the access to that file.

    Regards.</blockquote>

    Thank you Stork11. I have change the .htaccess and now its fine.

    How did you find out that the problem is caused from .htaccess permissions?

    Regards

    Stork11 Friend
    #457397

    <em>@anoldboy 325360 wrote:</em><blockquote>Thank you Stork11. I have change the .htaccess and now its fine.

    How did you find out that the problem is caused from .htaccess permissions?

    Regards</blockquote>
    I use Firebug on FireFox and see the error with this file “http://your-domain/modules/mod_jaslideshow/admin/helper.php?japaramaction=saveProfile&profile=kranos”. And this error usually comes from .htaccess permission.

    Regards.

    salvol Friend
    #457453

    <em>@Stork11 325361 wrote:</em><blockquote>I use Firebug on FireFox and see the error with this file “http://your-domain/modules/mod_jaslideshow/admin/helper.php?japaramaction=saveProfile&profile=kranos”. And this error usually comes from .htaccess permission.

    Regards.</blockquote>

    I have the same problem. How can I edit it?

    Here is what I have in my htaccess file:

    ##
    # @package Joomla
    # @copyright Copyright (C) 2005 – 2012 Open Source Matters. All rights reserved.
    # @license GNU General Public License version 2 or later; see LICENSE.txt
    ##

    ##
    # READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
    #
    # The line just below this section: ‘Options +FollowSymLinks’ may cause problems
    # with some server configurations. It is required for use of mod_rewrite, but may already
    # be set by your server administrator in a way that dissallows changing it in
    # your .htaccess file. If using it causes your server to error out, comment it out (add # to
    # beginning of line), reload your site in your browser and test your sef url’s. If they work,
    # it has been set by your server administrator and you do not need it set here.
    ##

    ## Can be commented out if causes errors, see notes above.
    #Options +FollowSymLinks

    ## Mod_rewrite in use.

    RewriteEngine On

    ## Begin – Rewrite rules to block out some common exploits.
    # If you experience problems on your site block out the operations listed below
    # This attempts to block the most common type of exploit `attempts` to Joomla!
    #
    # Block out any script trying to base64_encode data within the URL.
    RewriteCond %{QUERY_STRING} base64_encode[^(]*([^)]*)
    # Block out any script that includes a <script> tag in URL.
    RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
    # Block out any script trying to set a PHP GLOBALS variable via URL.
    RewriteCond %{QUERY_STRING} GLOBALS(=|{0,2})
    # Block out any script trying to modify a _REQUEST variable via URL.
    RewriteCond %{QUERY_STRING} _REQUEST(=|{0,2})
    # Return 403 Forbidden header and show the content of the root homepage
    RewriteRule .* index.php [F]
    #
    ## End – Rewrite rules to block out some common exploits.

    ## Begin – Custom redirects
    #
    # If you need to redirect some pages, or set a canonical non-www to
    # www redirect (or vice versa), place that code here. Ensure those
    # redirects use the correct RewriteRule syntax and the [R=301,L] flags.
    #
    ## End – Custom redirects

    ##
    # Uncomment following line if your webserver’s URL
    # is not directly related to physical file paths.
    # Update Your Joomla! Directory (just / for root).
    ##

    # RewriteBase /

    ## Begin – Joomla! core SEF Section.
    #
    RewriteRule .* –
    #
    # If the requested path and file is not /index.php and the request
    # has not already been internally rewritten to the index.php script
    RewriteCond %{REQUEST_URI} !^/index.php
    # and the request is for something within the component folder,
    # or for the site root, or for an extensionless URL, or the
    # requested URL ends with one of the listed extensions
    RewriteCond %{REQUEST_URI} /component/|(/[^.]*|.(php|html?|feed|pdf|vcf|raw))$ [NC]
    # and the requested path and file doesn’t directly match a physical file
    RewriteCond %{REQUEST_FILENAME} !-f
    # and the requested path and file doesn’t directly match a physical folder
    RewriteCond %{REQUEST_FILENAME} !-d
    # internally rewrite the request to the index.php script
    RewriteRule .* index.php [L]
    #
    ## End – Joomla! core SEF Section.

    Stork11 Friend
    #457465

    <em>@salvol 325436 wrote:</em><blockquote>I have the same problem. How can I edit it?

    Here is what I have in my htaccess file:

    ##
    # @package Joomla
    # @copyright Copyright (C) 2005 – 2012 Open Source Matters. All rights reserved.
    # @license GNU General Public License version 2 or later; see LICENSE.txt
    ##

    ##
    # READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
    #
    # The line just below this section: ‘Options +FollowSymLinks’ may cause problems
    # with some server configurations. It is required for use of mod_rewrite, but may already
    # be set by your server administrator in a way that dissallows changing it in
    # your .htaccess file. If using it causes your server to error out, comment it out (add # to
    # beginning of line), reload your site in your browser and test your sef url’s. If they work,
    # it has been set by your server administrator and you do not need it set here.
    ##

    ## Can be commented out if causes errors, see notes above.
    #Options +FollowSymLinks

    ## Mod_rewrite in use.

    RewriteEngine On

    ## Begin – Rewrite rules to block out some common exploits.
    # If you experience problems on your site block out the operations listed below
    # This attempts to block the most common type of exploit `attempts` to Joomla!
    #
    # Block out any script trying to base64_encode data within the URL.
    RewriteCond %{QUERY_STRING} base64_encode[^(]*([^)]*)
    # Block out any script that includes a <script> tag in URL.
    RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
    # Block out any script trying to set a PHP GLOBALS variable via URL.
    RewriteCond %{QUERY_STRING} GLOBALS(=|{0,2})
    # Block out any script trying to modify a _REQUEST variable via URL.
    RewriteCond %{QUERY_STRING} _REQUEST(=|{0,2})
    # Return 403 Forbidden header and show the content of the root homepage
    RewriteRule .* index.php [F]
    #
    ## End – Rewrite rules to block out some common exploits.

    ## Begin – Custom redirects
    #
    # If you need to redirect some pages, or set a canonical non-www to
    # www redirect (or vice versa), place that code here. Ensure those
    # redirects use the correct RewriteRule syntax and the [R=301,L] flags.
    #
    ## End – Custom redirects

    ##
    # Uncomment following line if your webserver’s URL
    # is not directly related to physical file paths.
    # Update Your Joomla! Directory (just / for root).
    ##

    # RewriteBase /

    ## Begin – Joomla! core SEF Section.
    #
    RewriteRule .* –
    #
    # If the requested path and file is not /index.php and the request
    # has not already been internally rewritten to the index.php script
    RewriteCond %{REQUEST_URI} !^/index.php
    # and the request is for something within the component folder,
    # or for the site root, or for an extensionless URL, or the
    # requested URL ends with one of the listed extensions
    RewriteCond %{REQUEST_URI} /component/|(/[^.]*|.(php|html?|feed|pdf|vcf|raw))$ [NC]
    # and the requested path and file doesn’t directly match a physical file
    RewriteCond %{REQUEST_FILENAME} !-f
    # and the requested path and file doesn’t directly match a physical folder
    RewriteCond %{REQUEST_FILENAME} !-d
    # internally rewrite the request to the index.php script
    RewriteRule .* index.php [L]
    #
    ## End – Joomla! core SEF Section.</blockquote>
    Hello salvol,

    Please try to rename all your .htaccess files (at root and in administrator folder) to “htaccess.txt”. If it doesn’t resolve your problem, please send PM to me with your site information (your site URL, your site admin account) and your FTP account? So I can diagnose this problem.

    BTW, please include this forum thread URL in your PM, so I can follow it.

    Best regards.

    pontus Friend
    #458330

    Hi,
    I have the same problems that you, can not save when I press the buttons. Are interested in taking part of the solution to the problem of change in htacces file.

    Regards

    Stork11 Friend
    #458411

    Hello salvol,

    I accessed directly “/modules/mod_jaslideshow/admin/helper.php” file and got 500 (Internal server error). Please request your hosting administrator to add permission to enable directly access this file.

    Regards.

    pontus Friend
    #458726

    Hi!
    I have two identical installations of Kronos and Joomla on two different addresses with the same webhost. On one Slideshow module works while it does not work on the other. The only differences as far as I know is that on one joomla platform, so have I chosen not to enable URL rewriting, and on that page slidshow module works . Can I give permission to helper.php via the php.ini file? Or is it something the hostcompany must do?

    Regards

    Stork11 Friend
    #458863

    <em>@pontus 327099 wrote:</em><blockquote>Hi!
    I have two identical installations of Kronos and Joomla on two different addresses with the same webhost. On one Slideshow module works while it does not work on the other. The only differences as far as I know is that on one joomla platform, so have I chosen not to enable URL rewriting, and on that page slidshow module works . Can I give permission to helper.php via the php.ini file? Or is it something the hostcompany must do?

    Regards</blockquote>
    Hello pontus,

    Please ask your hosting company to set permission on “helper.php”, so that you can access directly to this file.

    I mean as you run this URL (http://your-domain/modules/mod_jaslideshow/admin/helper.php?japaramaction=saveProfile&profile=kranos), you mustn’t got Error 500 (Internal server error)

    Regards.

Viewing 12 posts - 1 through 12 (of 12 total)

This topic contains 12 replies, has 4 voices, and was last updated by  Stork11 12 years, 5 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum