Facebook  Twitter 

SMFHacks.com

+-

SMFHacks.com

+- User Information

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Forum Stats

Members
Total Members: 4257
Latest: Alex998.
New This Month: 1
New This Week: 0
New Today: 0
Stats
Total Posts: 43295
Total Topics: 7523
Most Online Today: 175
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 0
Guests: 146
Total: 146

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - filipina

Pages: [1] 2 3 ... 6
1
Support / Re: intermittent gallery problem
« on: December 23, 2009, 09:28:37 am »
It seems to be happening with any blocks, recent comments, latest pictures, all the blocks. So should I disable them all? Just wondering what the long term solution might be. Thanks

2
Support / Re: intermittent gallery problem
« on: December 22, 2009, 09:35:11 pm »
Thanks hacks. I ran those and then about 10 minutes later noticed my forum was bogged down again. Load averages increasing due to this process. I appreciate your attempts to help me but not sure what to do now. I have about 5800 pictures in the gallery. Is it because of the size of the gallery, or is this not a factor? The problem seems to becoming more frequent.

Code: [Select]
Running processes
State Time Query
Copying to tmp table 178s


SELECT COUNT(*) as total FROM (smf_gallery_pic as p, smf_gallery_comment as com)   LEFT JOIN smf_members AS m  ON (m.ID_MEMBER = p.ID_MEMBER) LEFT JOIN smf_gallery_usersettings AS s ON (s.ID_MEMBER = m.ID_MEMBER) WHERE ((s.private =0 || s.private IS NULL ) AND (s.password = '' || s.password IS NULL ) AND p.USER_ID_CAT !=0 AND p.approved =1) || (p.approved =1 AND p.USER_ID_CAT =0)   AND com.ID_PICTURE = p.ID_PICTURE GROUP BY p.ID_PICTURE ]

3
Support / Re: intermittent gallery problem
« on: December 17, 2009, 08:55:27 pm »
Code: [Select]
Error

SQL query:

ALTER TABLE smf_gallery_usersettings ADD INDEX ( PASSWORD )

MySQL said: 

#1170 - BLOB/TEXT column 'password' used in key specification without a key length


4
Support / Re: intermittent gallery problem
« on: December 16, 2009, 10:20:35 pm »
ok sorry hacks columns info for the first one was

Code: [Select]
id  select_type  table  type  possible_keys  key  key_len  ref  rows  Extra 
1 SIMPLE p ALL PRIMARY,USER_ID_CAT NULL NULL NULL 5704 Using where; Using temporary; Using filesort
1 SIMPLE com ALL NULL NULL NULL NULL 4863 Using where
1 SIMPLE m eq_ref PRIMARY PRIMARY 3 melin4_stinky.p.ID_MEMBER 1 Using index
1 SIMPLE s eq_ref PRIMARY PRIMARY 3 melin4_stinky.m.ID_MEMBER 1 Using where

the next one gave me this

Code: [Select]
Table  Non_unique  Key_name  Seq_in_index  Column_name  Collation  Cardinality  Sub_part  Packed  Null  Index_type  Comment 
smf_gallery_usersettings 0 PRIMARY 1 ID_MEMBER A 184 NULL NULL   BTREE

and the last one this

Code: [Select]
Table  Non_unique  Key_name  Seq_in_index  Column_name  Collation  Cardinality  Sub_part  Packed  Null  Index_type  Comment 
smf_gallery_pic 0 PRIMARY 1 ID_PICTURE A 5704 NULL NULL   BTREE   
smf_gallery_pic 1 ID_CAT 1 ID_CAT A 13 NULL NULL   BTREE   
smf_gallery_pic 1 USER_ID_CAT 1 USER_ID_CAT A 124 NULL NULL   BTREE   
smf_gallery_pic 1 ID_MEMBER 1 ID_MEMBER A 1140 NULL NULL   BTREE   
smf_gallery_pic 1 rating 1 rating A 54 NULL NULL   BTREE   
smf_gallery_pic 1 views 1 views A 950 NULL NULL   BTREE   
smf_gallery_pic 1 commenttotal 1 commenttotal A 20 NULL NULL   BTREE   
smf_gallery_pic 1 totalratings 1 totalratings A 18 NULL NULL   BTREE

5
Support / Re: intermittent gallery problem
« on: December 16, 2009, 05:39:11 pm »
Hello sorry for the delay... this gallery is giving me fits... i got this result

Code: [Select]
EXPLAIN SELECT COUNT( * ) AS total
FROM (
smf_gallery_pic AS p, smf_gallery_comment AS com
)
LEFT JOIN smf_members AS m ON ( m.ID_MEMBER = p.ID_MEMBER )
LEFT JOIN smf_gallery_usersettings AS s ON ( s.ID_MEMBER = m.ID_MEMBER )
WHERE (
(
s.private =0 || s.private IS NULL
)
AND (
s.password = '' || s.password IS NULL
)
AND p.USER_ID_CAT !=0
AND p.approved =1
) || ( p.approved =1
AND p.USER_ID_CAT =0 )
AND com.ID_PICTURE = p.ID_PICTURE
GROUP BY p.ID_PICTURE

6
Support / Re: intermittent gallery problem
« on: December 11, 2009, 09:00:02 pm »
Hey hacks. I am back to the same problem the gallery is getting hung up and causing stress on my server. Is there anything else I can do?

Code: [Select]
copying to tmp table 411s SELECT COUNT(*) as total FROM (smf_gallery_pic as p, smf_gallery_comment as com)  LEFT JOIN smf_members AS m  ON (m.ID_MEMBER = p.ID_MEMBER) LEFT JOIN smf_gallery_usersettings AS s ON (s.ID_MEMBER = m.ID_MEMBER)WHERE ((s.private =0 || s.private IS NULL ) AND (s.password = '' || s.password IS NULL ) AND p.USER_ID_CAT !=0 AND p.approved =1) || (p.approved =1 AND p.USER_ID_CAT =0)   AND com.ID_PICTURE = p.ID_PICTURE GROUP BY p.ID_PICTURE

Copying to tmp table 328s SELECT COUNT(*) as total FROM (smf_gallery_pic as p, smf_gallery_comment as com) LEFT JOIN smf_members AS m  ON (m.ID_MEMBER = p.ID_MEMBER) LEFT JOIN smf_gallery_usersettings AS s ON (s.ID_MEMBER = m.ID_MEMBER) WHERE ((s.private =0 || s.private IS NULL ) AND (s.password = '' || s.password IS NULL ) AND p.USER_ID_CAT !=0 AND p.approved =1) || (p.approved =1 AND p.USER_ID_CAT =0)   AND com.ID_PICTURE = p.ID_PICTURE GROUP BY p.ID_PICTURE

7
Support / Re: intermittent gallery problem
« on: October 30, 2009, 11:47:56 pm »
Code: [Select]
Your SQL query has been executed successfully (Query took 1.0697 sec) 

Thank you hacks it appears to have worked!

8
Support / Re: intermittent gallery problem
« on: October 30, 2009, 08:31:49 pm »
sorry forgot after the crash.. i ran it and got this :)

Code: [Select]
Error
SQL query:

ALTER TABLE gallery_log_mark_view ADD INDEX ( id_picture )

MySQL said:  

#1146 - Table 'melin4_stinky.gallery_log_mark_view' doesn't exist]

9
Support / Re: intermittent gallery problem
« on: October 30, 2009, 08:50:34 am »
http://www.smfhacks.com/index.php/topic,3675.0.html

ok i found this thread.. first if I enable this feature is that all I do and it creates new folders for storage? Will this help with peformance issues?

If this is what I think can I then move some of my pictures to other folders or will this cause a problem with images already displayed in the gallery. Thanks

EDIT - Ok I see this function is already enabled in the gallery. So do create multiple folders because everything is going in the "gallery" folder.

10
Support / Re: intermittent gallery problem
« on: October 30, 2009, 08:45:43 am »
thanks hacks... It is running now. so I have about 5500 images in this gallery now.. Can I reach a point where my galleries become too big that everytime there is a request for that gallery, most recent, most commented, it becomes too demanding on the data base?

P.S. On a side note when I am in my cpanel and try and open the gallery folder it takes forever to open and sometimes I cannot open it at all so I then access it through filezilla..  I notice this multiple file option but not sure what it does, should i start storing these images in multiple files is this possible. Any insight would be appreciated :)

11
Support / Re: intermittent gallery problem
« on: October 29, 2009, 10:03:31 pm »
I cannot do anything at the moment my site has crashed... it is not even up  :'(

12
Support / Re: intermittent gallery problem
« on: October 29, 2009, 09:55:18 pm »
Ok but now I cannot open pictures from the gallery anymore, and my memcache crashed... I don't know what is going on.. my forum has crashed


13
Support / Re: intermittent gallery problem
« on: October 29, 2009, 09:08:09 pm »
Code: [Select]
EXPLAIN SELECT COUNT( * ) AS total
FROM smf_gallery_pic AS p
LEFT JOIN smf_gallery_catperm AS c ON ( c.ID_GROUP
IN ( 31, 50, 30, 56, 11, 55, 54, 20 )
AND c.ID_CAT = p.ID_CAT )
LEFT JOIN smf_gallery_log_mark_view AS v ON ( p.ID_PICTURE = v.ID_PICTURE
AND v.ID_MEMBER =1
AND v.user_id_cat = p.USER_ID_CAT )
LEFT JOIN smf_members AS m ON (
p.ID_MEMBER = m.ID_MEMBER
)
LEFT JOIN smf_gallery_usersettings AS s ON ( s.ID_MEMBER = m.ID_MEMBER )
WHERE v.ID_PICTURE IS NULL
AND (
s.private =0 || s.private IS NULL
)
AND (
c.view IS NULL || c.view =1
)
AND p.approved =1

1 SIMPLE p ALL NULL NULL NULL NULL 5556 Using where
1 SIMPLE c ref ID_GROUP,ID_CAT ID_CAT 3 melin4_xxxx.p.ID_CAT 5 Using where
1 SIMPLE v ref id_member,user_id_cat,id_member_2,user_id_cat_2,id... user_id_cat 5 melin4_xxxx.p.USER_ID_CAT 806 Using where; Not exists
1 SIMPLE m eq_ref PRIMARY PRIMARY 3 melin4_XXXX.p.ID_MEMBER 1 Using index
1 SIMPLE s eq_ref PRIMARY PRIMARY 3 melin4_xxxxx.m.ID_MEMBER 1 Using where


14
Support / Re: intermittent gallery problem
« on: October 29, 2009, 08:23:38 pm »
These processes are getting hung up and bringing my server to it's knees

15
Support / Re: intermittent gallery problem
« on: October 29, 2009, 07:56:09 pm »
Hey hacks sorry to bother you again but things are getting worse with the gallery... Besides the errors mentioned above I have this information... this seems to happen when people are trying to see most recent pics, recent commented, or trying to open any gallery

_____________________________________

Data Base and Running Processes

State        Time

Sending data 846s SELECT COUNT(*) as totalFROM smf_gallery_pic as p

SELECT    COUNT(*) as totalFROM smf_gallery_pic as pLEFT JOIN smf_gallery_catperm AS c ON (c.ID_GROUP IN (31,50,30,56,11,55,54,20) AND c.ID_CAT = p.ID_CAT)
LEFT JOIN smf_gallery_log_mark_view AS v ON (p.ID_PICTURE = v.ID_PICTURE AND v.ID_MEMBER = 1 AND v.user_id_cat = p.USER_ID_CAT)LEFT JOIN smf_members AS m ON
(p.ID_MEMBER = m.ID_MEMBER)LEFT JOIN smf_gallery_usersettings AS s ON (s.ID_MEMBER = m.ID_MEMBER)WHERE v.ID_PICTURE IS NULL AND (s.private =0 || s.private IS NULL )
AND  (c.view IS NULL || c.view =1) AND  p.approved = 1

______________________________________________

Unable to connect

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, webmaster@melindaspenpals.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

--------------------------------------------------------------------------------

Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.7a mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at www.melindaspenpals.com Port 80


Pages: [1] 2 3 ... 6

+- Recent Topics

Please Help! by SMFHacks
April 17, 2024, 08:04:55 am

Rate own images by fvlog19
April 11, 2024, 10:56:53 am

Tidy Child Boards on 2.1.4 by SMFHacks
April 04, 2024, 03:54:12 pm

Problems SMF 2.0.19 > 2.1.4 SMF Gallery Pro - Recents Images to overall header by Michel68
March 30, 2024, 12:41:08 pm

Can't DROP 'id_member'; check that column/key exists Datei: by SMFHacks
March 30, 2024, 11:58:20 am

No thumbnails on new uploads by Tonyvic
March 29, 2024, 06:26:18 am

Display the Contact Page for guests by SMFHacks
March 27, 2024, 10:55:43 am

is it possible to add support for odysee.com by fvlog19
March 21, 2024, 08:47:51 am

Request for admin notification by davejo
March 10, 2024, 01:31:59 am

I need help with torrent upload by Ineedsmfhelp
March 09, 2024, 10:01:13 pm

Powered by EzPortal