Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length

JoomlaTune Support Forum    JComments component    Bug-reports    Topic: Comments do not post
Pages: [1] 2   Go Down
  Print  
Author Topic: Comments do not post  (Read 4958 times)
0 Members and 1 Guest are viewing this topic.
TigreBlanc84
Newbie
*

Karma: 0
Offline Offline

Posts: 5


« on: July 30, 2010, 00:32:49 »

I've been trying the whole day, the post comment screen is there but whenever i press on send button, a simple loading image comes for like 3 seconds then nothing happen, you can try it, my website is: www.gilimag.com

I've tried adding the javascripts in the index.php of the template, but in vain, nothing happens either...

Hope you can tell me where the problem is!

Thanks a lot in advance
Logged
BBC
Full Member
***

Karma: 4
Offline Offline

Posts: 146



« Reply #1 on: July 30, 2010, 01:55:37 »

You have "status 404 not found" for mootools.js, caption.js and Jcomments ajax.js. They are not loading at all.
Logged
BBC
Full Member
***

Karma: 4
Offline Offline

Posts: 146



« Reply #2 on: July 30, 2010, 01:56:54 »

jcomments-v2.1.js also....
Logged
TigreBlanc84
Newbie
*

Karma: 0
Offline Offline

Posts: 5


« Reply #3 on: July 30, 2010, 03:33:25 »

Thank you, i have fixed their position in loading, but it's still not working, what could that be?
Logged
BBC
Full Member
***

Karma: 4
Offline Offline

Posts: 146



« Reply #4 on: July 30, 2010, 04:44:21 »

caption.js is still missing. Don´t know it is something important for comments.
Logged
BBC
Full Member
***

Karma: 4
Offline Offline

Posts: 146



« Reply #5 on: July 30, 2010, 04:46:51 »

Now I see.

http://www.gilimag.com/gilimag/components/

Is Joomla root in subfolder right configured in your .htaccess ? If you have one.
Logged
BBC
Full Member
***

Karma: 4
Offline Offline

Posts: 146



« Reply #6 on: July 30, 2010, 04:56:44 »

Don´t change things manually in PHP files. Problems with Jcomments are mostly some naive miss overlookings.
You won´t fix things by excluding core JS scripts.

Here you missed one slash and you get as you do wrong:

http://www.gilimag.com/gilimagmedia/system/js/caption.js (status: 404)
« Last Edit: July 30, 2010, 04:59:44 by BBC » Logged
BBC
Full Member
***

Karma: 4
Offline Offline

Posts: 146



« Reply #7 on: July 30, 2010, 05:04:46 »

You managed to duplicate call of jcaption.js. Once that above and once correct. It wont help you fix Jcomments.
« Last Edit: July 30, 2010, 05:08:44 by BBC » Logged
BBC
Full Member
***

Karma: 4
Offline Offline

Posts: 146



« Reply #8 on: July 30, 2010, 05:08:05 »

I beleive you have .htacess configured wrong. It should redirect from Joomla subfolder to http://www.gilimag.com/

Not from http://www.gilimag.com/ to http://www.gilimag.com/gilimag/.
Logged
TigreBlanc84
Newbie
*

Karma: 0
Offline Offline

Posts: 5


« Reply #9 on: July 30, 2010, 19:50:34 »

Thanks a lot for your help, now all the files are right relocated, but I'm still having a problem and i'm unable to make www.gilimag.com instead of www.gilimag.com/gilimag/, how is that possible since it's set up on a folder alone called gilimag? Is it sure it to be like that to work perfectly?
Logged
TigreBlanc84
Newbie
*

Karma: 0
Offline Offline

Posts: 5


« Reply #10 on: July 30, 2010, 20:07:41 »

this is how my htaccess.txt file looks like:

Code:
##
# @version $Id: htaccess.txt 9975 2008-01-30 17:02:11Z ircmaxell $
# @package Joomla
# @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
# @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
# Joomla! is Free Software
##


#####################################################
#  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


#  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
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$  [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
########## End - Joomla! core SEF Section


########## 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 set a mosConfig value through the URL
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via URL
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]
#
########## End - Rewrite rules to block out some common exploits
Logged
BBC
Full Member
***

Karma: 4
Offline Offline

Posts: 146



« Reply #11 on: July 30, 2010, 22:04:23 »

I am sorry man, i see now you are using Microsoft IIS Server at Go Daddy.
I never configured htacces for MS IIS server. Don´t even now if it is .htacces or htaccess.txt.

I read that Go Daddy´s IIS servers accept .htacces, but be aware that they maybe have up to one hour to accept those changes.

Try to ask at Go Daddy forum. I saw they have some big community. Someone would help you quickly. If you changed something in Go Daddy hosting panel (redirect) say about it at GD forum.

Here is mine .htaccess (on Apache server). Notice bolded parts. (I have also Joomla in subfolder as you and works without problems)


##
# @version $Id: htaccess.txt 13415 2009-11-03 15:53:25Z ian $
# @package Joomla
# @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
# @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
# Joomla! is Free Software
##


#####################################################
#  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

# Change yourdomain.com to be your main domain.
RewriteCond %{HTTP_HOST} ^(www.)?nameofmysite.com$ [NC]

# Change 'subfolder' to be the folder you will use for your main domain.
RewriteCond %{REQUEST_URI} !^/nameofjoomlafolder/

# Don't change these lines.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# Change 'subfolder' to be the folder you will use for your main domain.
RewriteRule ^(.*)$ /nameofjoomlafolder/$1 [L]

# Change yourdomain.com to be your main domain again.
# Change 'subfolder' to be the folder you will use for your main domain
# followed by / then the main file for your site, index.php, index.html, etc.
RewriteCond %{HTTP_HOST} ^(www.)?nameofmysite.com$ [NC]
RewriteRule ^(/)?$ nameofjoomlafolder/index.php [L]


########## 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!
#
## Deny access to extension xml files (uncomment out to activate)
<Files ~ "\.xml$">
Order allow,deny
Deny from all
Satisfy all
</Files>
## End of deny access to extension xml files
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via URL
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]
#
########## End - Rewrite rules to block out some common exploits

#  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
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$  [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
########## End - Joomla! core SEF Section

########## Begin - 3rd Party SEF Section ###########
## Use this section if you are using a 3rd party (Non Joomla! core)
##SEF extension - e.g. OpenSEF, 404_SEF, 404SEFx, SEF Advance, etc
RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
RewriteCond %{REQUEST_URI} (/|.htm|.php|.html|/[^.]*)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php
# ########## End - 3rd Party SEF Section
Logged
BBC
Full Member
***

Karma: 4
Offline Offline

Posts: 146



« Reply #12 on: July 30, 2010, 22:34:36 »

I forgott here, remove that in bold. It is important for your configuration.

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

# RewriteBase /
Logged
TigreBlanc84
Newbie
*

Karma: 0
Offline Offline

Posts: 5


« Reply #13 on: July 31, 2010, 01:24:27 »

I've done all the fixes you told me about except things related to Go Daddy, i've bought the domain through Go Daddy but mu host is Lunar Pages, i'm using windows servers...

I think this problem is not gonna be solved   Angry Sad
Logged
BBC
Full Member
***

Karma: 4
Offline Offline

Posts: 146



« Reply #14 on: July 31, 2010, 01:37:36 »

What is making your redirect when you go to http://www.gilimag.com ?
Did you change something in your hosting panel ?

It may be or not reason for your problem with Jcomments but fix it to get better SEO links.
Logged
Pages: [1] 2   Go Up
  Print  
JoomlaTune Support Forum    JComments component    Bug-reports    Topic: Comments do not post
 
Jump to: