Content View Hits : 55857

Giriş Formu






Forgot your password?
Forgot your username?
No Account Yet? Create an account

Warning: imagejpeg() [function.imagejpeg]: SAFE MODE PDF Print E-mail
Written by Administrator   

Summary :

Joomla 1.6 & Simple image Gallery Plugin 

Error :

JW_SIG_PRG 

Warning: imagejpeg() [function.imagejpeg]: SAFE MODE Restriction in effect. The script whose uid is 10228 is not allowed to access /var/www/vhosts/.../httpdocs/cache/jw_simpleImageGallery owned by uid 33 in /var/www/vhosts/.../httpdocs/plugins/content/jw_simpleImageGallery/jw_simpleImageGallery/includes/helper.php on line 134 

 

Solution :  

give permission to write this folder : /cache/jw_simpleImageGallery

if it is not allowed to change file permissions. delete file, and create with the same name, and give write permission

Last Updated ( Monday, 21 March 2011 16:17 )
 
Bind Dns, publishing SPF records PDF Print E-mail
Written by Administrator   

problem :  you should publish SPF records to prevent spam mail.

http://www.openspf.org/ : this page shows how to use it. 

 

../etc/zones/db.duellog.com.txt

 

$TTL 6h

@ IN SOA ns1.duellog.com. hostmaster.duellog.com. (

2009061201

10800

3600

604800

86400 )

 

@ NS ns1.duellog.com.

 

ns1 IN A 77.92.147.150

ns2 IN A 77.92.147.151

www IN A 77.92.147.150

mail IN A 77.92.147.150

blog IN A 77.92.147.150

test IN A 77.92.147.150

smtp IN A 77.92.147.150

pop3 IN A 77.92.147.150

lunapark IN A 77.92.147.150

duellog.com. IN mx 10 mail.duellog.com.

duellog.com. IN A 77.92.147.150

duellog.com. IN TXT ("v=spf1 a mx ptr a:mail.duellog.com mx:mail.duellog.com ip4:77.92.147.150 ~all")

duellog.com. IN SPF ("v=spf1 a mx ptr a:mail.duellog.com mx:mail.duellog.com ip4:77.92.147.150 ~all")

 

 

 

Last Updated ( Monday, 14 March 2011 22:19 )
 
VMware Workstation unrecoverable error: (disk error while paging) PDF Print E-mail
Written by Administrator   

VMware Workstation unrecoverable error: 

Exception 0xc0000006 (disk error while paging) has occurred.

 

Solution :

Discard the suspended state. You need to delete or rename the file that its format is  "VMware suspended virtual machine state"   

 

 
Warning: realpath() [function.realpath]: Unable to access .../path.php PDF Print E-mail
Written by Administrator   

Summary :
Warning: realpath() [function.realpath]: Unable to access /var/www/vhosts/... in /var/www/vhosts/.../httpdocs/libraries/joomla/filesystem/path.php 

 

Why :

The PHP function realpath() appears to be not very consistent in its behaviour across OS-platforms and versions of PHP. As per PHP 5.4.2 in Ubuntu 8.04 LTS the function realpath() behaves differently. (for details: see http://nl.php.net/manual/en/function.realpath.php#82770).

 

Solutions :

There is 2 solutions for you :  edit file /httpdocs/libraries/joomla/filesystem/path.php

 

Solution 1 : You have to edit both lines adding "@" in front of both $path AND $fullname.

[old code]
    $path = realpath($path); // needed for substr() later
    $fullname = realpath($fullname);
[/old code]

Replace with:

[new code]
    @$path = realpath($path); // needed for substr() later
    @$fullname = realpath($fullname);
[/new code]

 

Solution 2 : You have to edit like this.

[old code]
    $path = realpath($path); // needed for substr() later
    $fullname = realpath($fullname);
[old code]

Replace with:

[new code]
if (file_exists($path)) {
    $path = realpath($path); // needed for substr() later
    $fullname = realpath($fullname);
} else {
    $path = '';
    $fullname = '';
}
[/new code]



 

Last Updated ( Sunday, 27 February 2011 20:47 )
 
Database Mail is stopped. Use sysmail_start_sp to start Database Mail. PDF Print E-mail
Written by Administrator   

This stored procedure starts the Database Mail queue that holds outgoing message requests and enables the Service Broker activation for the external program.

Solution :
USE msdb ;
GO

EXECUTE dbo.sysmail_start_sp ;
GO
Last Updated ( Monday, 05 July 2010 21:39 )
 
More Articles...
« StartPrev123456789NextEnd »

Page 1 of 9