Facebook  Twitter 

SMFHacks.com

+-

SMFHacks.com

+- User Information

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

+- Forum Stats

Members
Total Members: 4255
Latest: andreios
New This Month: 3
New This Week: 1
New Today: 0
Stats
Total Posts: 43259
Total Topics: 7518
Most Online Today: 177
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 0
Guests: 184
Total: 184

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

Pages: [1]
1
Support / Re: Cant upload images larger then 2mb
« on: August 02, 2011, 11:48:11 am »
I could not find a fastcgi
I PM you my phpinfo link, could you peak at it and see if you see any red flags?

2
Support / Re: Cant upload images larger then 2mb
« on: August 02, 2011, 10:36:07 am »
This is a host issue. You need to change your php.ini settings to allow larger file uploads.

For more information on increasing the limits check out this topic
http://www.smfhacks.com/index.php/topic,3498.0.html

As stated above I did make the changes to post_max_size, and upload_max_filesize, And the changes show in the Admin Gallery Configuration page.

3
Support / Cant upload images larger then 2mb
« on: August 02, 2011, 10:15:25 am »
I am having a problem uploading any image that is over 2mb in size to any album, Images under 2mb will upload with no problem. When I first installed this mod my PHP: Upload Max Filesize was set to 2mb so I changed that to something much higher in my hosts php control panel. The change shows in the gallery mod admin but I still cant upload over 2mb, resolution is set to 3500. I have coppermine and smf garage installed and they both can upload over 2mb even before the php change.
When I upload a file that is over 2mb with my firefox browser it waits and then just stops at a blank white page.
Google Chrome and Operah show the file upload at 100% then gives me a error 500


HELP  :-[

4
Support / Re: SMF 2.0 Gold Failed install
« on: June 13, 2011, 02:01:28 pm »
Thanks again,
I dont use UTF8 language, so I let it install, and all my ads are up and running.  :)

GREAT MOD!

5
Support / Re: SMF 2.0 Gold Failed install
« on: June 13, 2011, 01:48:00 pm »
Thank you, I did recently download 1.09 however i guess it was a different version of 1.09 cause today's 1.09 installed with only one error...  ;D

Execute Modification    ./Themes/default/languages/Modifications.english-utf8.php    Test failed
Code: [Select]
Code: (Find) [Select]

?>

Code: (Add Before) [Select]

// Begin Ad Seller Pro Text Strings
$txt['seller_admin'] = 'Ad Seller Pro';
$txt['txt_seller_admin_tab'] = 'Advertise';
$txt['seller_revenue_share_settings'] = 'Revenue Share Settings';
$txt['seller_settings'] = 'Settings';
$txt['seller_txt_manage_ads'] = 'Manage Ads';
$txt['seller_txt_ad_approval'] = 'Ad Approval';
$txt['seller_txt_ad_locations'] = 'Ad Locations';
$txt['seller_txt_ad_packages'] = 'Ad Packages';
$txt['seller_view_transactions'] = 'View Transactions';
$txt['seller_revenue_share'] = 'Revenue Share';

// Permissions
$txt['permissiongroup_seller'] = 'Ad Seller Pro';
$txt['permissiongroup_simple_seller'] = 'Ad Seller Pro';

$txt['permissionname_seller_manage'] = 'Admin Ad Seller Pro';
$txt['permissionhelp_seller_manage'] = 'Allows admin control to the Ad Seller Pro';
$txt['cannot_seller_manage'] = 'You are not allowed to manage Ad Seller Pro.';

// END Ad Seller Pro Text Strings

6
Support / SMF 2.0 Gold Failed install
« on: June 13, 2011, 01:25:58 pm »
I am getting errors when trying to install this mod on SMF 2.0 aka Gold

Execute Modification    ./Themes/default/languages/Modifications.english-utf8.php    Test failed
Code: [Select]
Code: (Find) [Select]

?>

Code: (Add Before) [Select]

// Begin Ad Seller Pro Text Strings
$txt['seller_admin'] = 'Ad Seller Pro';
$txt['txt_seller_admin_tab'] = 'Advertise';
$txt['seller_revenue_share_settings'] = 'Revenue Share Settings';
$txt['seller_settings'] = 'Settings';
$txt['seller_txt_manage_ads'] = 'Manage Ads';
$txt['seller_txt_ad_approval'] = 'Ad Approval';
$txt['seller_txt_ad_locations'] = 'Ad Locations';
$txt['seller_txt_ad_packages'] = 'Ad Packages';
$txt['seller_view_transactions'] = 'View Transactions';
$txt['seller_revenue_share'] = 'Revenue Share';

// Permissions
$txt['permissiongroup_seller'] = 'Ad Seller Pro';
$txt['permissiongroup_simple_seller'] = 'Ad Seller Pro';

$txt['permissionname_seller_manage'] = 'Admin Ad Seller Pro';
$txt['permissionhelp_seller_manage'] = 'Allows admin control to the Ad Seller Pro';
$txt['cannot_seller_manage'] = 'You are not allowed to manage Ad Seller Pro.';

// END Ad Seller Pro Text Strings

Execute Modification    ./Themes/default/index.template.php    Test failed
Code: [Select]
Code: (Find) [Select]

echo '
<input type="hidden" name="hash_passwrd" value="" />
</form>';
}

Code: (Add After) [Select]

// Begin Ad Seller Pro Location - Welcome Area/User Information Box

global $sourcedir;
include_once $sourcedir . "/adseller2.php";

$adSellerAdData =  ShowAdLocation(13);
if ($adSellerAdData != false)
{
echo '</td>';
echo '<td class="windowbg">';
echo $adSellerAdData;

}

// End Ad Seller Pro Location - Welcome Area/User Information Box

Execute Modification    ./Themes/default/Display.template.php    Test failed
Code: [Select]
Code: (Find) [Select]

echo '
</div>
<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />';

Code: (Add After) [Select]

// Begin Ad Seller Pro Location - After First Post
if ($message['id'] == $context['first_message'])
{


global $sourcedir;
include_once $sourcedir . "/adseller2.php";

$adSellerAdData =  ShowAdLocation(4);
if ($adSellerAdData != false)
{
echo '<div class="',  ($message['alternate'] == 0 ? 'windowbg' : 'windowbg2') , '">
<span class="topslice"><span></span></span>

<div class="poster">

</div>

<div class="post">
' . $adSellerAdData . '
</div>

</div>
';
}



}
// End Ad Seller Pro Location - After First Post

Execute Modification    ./Themes/default/MessageIndex.template.php    Test failed
Code: [Select]
Code: (Find) [Select]

echo '
</tbody>
</table>
</div>
<a id="bot"></a>';

Code: (Add Before) [Select]

// Begin Ad Seller Pro Location - Bottom Message Index

global $sourcedir;
include_once $sourcedir . "/adseller2.php";

$adSellerAdData =  ShowAdLocation(7);
if ($adSellerAdData != false)
{
echo '
<tr class="windowbg2">
<td colspan="' , !empty($context['can_quick_mod']) ? '6' : '5' , '">';

echo $adSellerAdData;

echo '</tr>';
}

// End Ad Seller Pro Location - Bottom Message Index

7
Latest Mods / Re: [Mod] Welcome Topic
« on: August 31, 2010, 12:34:48 pm »
I read threw all 5 pages of this thread and didnt see my question asked, hopefully I didnt miss it...

Can the {username} be linked to they're profile?
Is there a list of variables that can be used?

8
Support / Re: Modifications.english-utf8.php, index.template.php failed
« on: August 18, 2010, 08:49:16 pm »
Nice!
Thank you for your promptness I will get on it asap!

9
Support / Re: Modifications.english-utf8.php, index.template.php failed
« on: August 18, 2010, 08:33:07 pm »
SMF 1.1.11

10
Support / Modifications.english-utf8.php, index.template.php failed
« on: August 18, 2010, 06:04:39 pm »
Is there manual install instructions somewhere I'm getting two failed files  ::)
I have included a screen shot of the errors and the original files before installation.

THANKS!

11
Suggestions / Re: reminder mod suggestion
« on: October 18, 2007, 10:18:42 am »
I too could use something like this... Did anything ever come about?

Pages: [1]

+- Recent Topics

No thumbnails on new uploads by SMFHacks
March 27, 2024, 02:10:41 pm

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

an idea for new mod (( content type with different display )) by SMFHacks
February 27, 2024, 01:36:27 pm

[Mod] RSS Feed Poster by SMFHacks
February 27, 2024, 11:57:18 am

find duplicate pictures by fvlog19
February 14, 2024, 02:22:40 pm

Error uploading video. by SMFHacks
February 08, 2024, 02:04:16 pm

Gallery icon as last added image by fvlog19
February 01, 2024, 01:04:56 pm

Powered by EzPortal