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: 236
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 0
Guests: 225
Total: 225

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.


Topics - dan42101

Pages: [1]
1
Site Discussion / message editor pro
« on: October 14, 2018, 03:34:48 pm »
Hi Hackers,
I don't find a support category for editor pro, so I am posting here.  I currently have SCEditor4Smf installed, and find it is no longer on the SMF mod site.

I wonder if the recent big changes in SMF have something to do with this (responsive curve for instance).

Anyway I have just noticed that certain areas in admin give the WSOD.  I have no idea how long this have been going on because the areas I go to often work still (members, SP blocks, package manager, etc).

I have upped my php memory which shows in php.info, but see a curious error in the log.


  Reverse chronological order of list Today at 03:20:10 PM
Apply Filter: Only show the error messages of this session 1d7ed65b6279667b324817a70f6a5198
Apply Filter: Only show the errors of this type Type of error: General
Apply Filter: Only show the error messages of this URL
https://www.eaglersnest.com/forum/index.php?action=admin;area=logs;f967933e=1d7ed65b6279667b324817a70f6a5198
Apply Filter: Only show the errors with the same message
8192: Non-static method SCEditor::sceditor_admin_areas() should not be called statically
Apply Filter: Only show the errors from this file
File: /home/XXXXXX/public_html/forum/Sources/Subs.php
Line: 4423
Any idea if Message editor Pro will fix this problem..?

TIA


The preview function is wonky here.  I hope it is the theme here and not MEP...

I use the latest FF browser.

2
Presales for Products / downloads system caput
« on: March 15, 2016, 02:43:34 pm »
Hello,
I am not able to upload anything to anywhere in the downloads area.  I have another admin who is able to however from another state.

On the 2 browsers I have tried, it gives me a connection reset.  Also the error log is full... and they seem to all point to /sources/downloads2.php.  Errors are in lines 1408, 9,10 regarding undefined indexes.  (description, keyword, cat, title, fileURL ETC.)

I ran repair settings, and the only change I made was take the www out of the http://www.XXXXXXXXX URLs.

It recommended I change the cookie, so I did.  All that did was kill everyone's login...

3
Support / Import
« on: March 12, 2016, 12:41:50 am »
Is there a way to import folders that I have ftp'd in to the import folder..?

I have many photos I'd like to put in the Gallery but they are all in individual folders already.

-Thanks

4
Support / Member groups are not responding to permissions setting
« on: January 15, 2014, 08:34:21 am »
Hello,
I must be missing something obvious... (of course I am ::))  The ads (adsense) are working fine, in all the places I want for now.  I have some paid subscribers come on board that I want to:
  • Turn off some ad locations at a certain donation amount
  • Turn off more ad locations at a higher donation amount
I have a member group that changes nothing but display a special "star.gif" for donors, and I have 2 other groups named for the donation levels.

The problem is the permission area of Ad seller pro, does not respond to unchecking the box to display the ad locations, apparently for any member group I have except the Admin group.  I have read everything I can find on it, but there just does not seem to be much about this.

BTW the other 2 groups are hidden, IDK if that has anything to do with it...  I could certainly make them all visible and make more star.gifs

TIA..!

5
Support / can't get ad to display
« on: December 30, 2013, 04:53:18 pm »
Hello,
I am trying to get an ad to show on the right.  I have adsense ads showing at top and bottom.  I think I may have installed Simple Portal after I got the top and bottom ads going.  With SP installed will I have to enable a block..?  I don't want a title to show for the ad...

I have re-read the instructions and can't get it to show still...

Thanks.

6
Support / A/V embed 2.1.1 update to 2.3
« on: December 13, 2013, 12:27:41 pm »
I am trying to update this but get errors when trying to uninstall. 

What keeps causing this problem with SMF mods?

Should I uninstall with the errors and install the newest version? 

What damage do these errors do to the Forum? 

I am up to 99 members I don't want it to go wobbly on me now.

Thanks

7
Support / Database error
« on: November 28, 2013, 07:34:12 pm »
I get this error when trying to delete a comment from pic in user gallery...
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'LIMIT 1' at line 2
File: /home/content/"My_Forum"/html/forum/Sources/Gallery2.php
Line: 3447


Version Information:
Forum version: SMF 2.0.6 (more detailed)
Current SMF version: SMF 2.0.6
GD version: bundled (2.0.34 compatible)
MySQL version: 5.0.96-log
Alternative PHP Cache: 3.1.13
PHP: 5.3.24
Server version: Apache

Contents of Gallery2.php lines 3423-3485:
function DeleteCommentByID($id)
{
    global $smcFunc, $txt, $modSettings;

    // Get the picture ID for redirect
   $dbresult = $smcFunc['db_query']('', "
   SELECT
      id_picture,id_comment, id_member
   FROM {db_prefix}gallery_comment
   WHERE id_comment = $id LIMIT 1");

   $row = $smcFunc['db_fetch_assoc']($dbresult);
   $picid = $row['id_picture'];
   $memID = $row['id_member'];
   $smcFunc['db_free_result']($dbresult);

   // Delete all the comment reports that comment
   $smcFunc['db_query']('', "DELETE FROM {db_prefix}gallery_creport WHERE id_comment = $id");
   // Now delete the comment.
   $smcFunc['db_query']('', "DELETE FROM {db_prefix}gallery_comment WHERE id_comment = $id LIMIT 1");


   // Update Comment total
    $smcFunc['db_query']('', "UPDATE {db_prefix}gallery_pic
      SET commenttotal = commenttotal - 1 WHERE id_picture = $picid LIMIT 1");

     // Update the SMF Shop Points
         if (isset($modSettings['shopVersion']))
            $smcFunc['db_query']('', "UPDATE {db_prefix}members
               SET money = money - " . $modSettings['gallery_shop_commentadd'] . "
               WHERE id_member = {$memID}
               LIMIT 1");

   return $picid;
}

function DeleteComment()
{
   global $smcFunc, $txt, $modSettings;

   is_not_guest();
   isAllowedTo('smfgallery_manage');

   $id = (int) $_REQUEST['id'];
   if (isset($_REQUEST['ret']))
      $ret = $_REQUEST['ret'];

   if (empty($id))
      fatal_error($txt['gallery_error_no_com_selected']);

   $picid = DeleteCommentByID($id);

   // Redirect to the picture
   if (empty($ret))
   {
      redirectexit('action=gallery;sa=view;id=' . $picid);
   }
   else
   {
      redirectexit('action=admin;area=gallery;sa=commentlist');
   }
}

Thanks in advance...

8
Hello,
I am getting the attached errors, and have the default theme. Do I proceed with the uninstall, and then install Gallery pro using the package installer?

Thanks in advance for the excellent support here.

9
Hello,
I purchased ad sell pro and got errors trying to uninstall ad management. 

Will I have to manually edit all the files to get it off my forum like I had to do with your trader system..?   ???

It is rather unpleasant contemplating the wreckage of one's forum when having to edit several files by hand... :-\

Attached is a screen shot of the error page...  Please note the error says "install" but this is on an "un" install screen...

Thanks.

Pages: [1]

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