Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/functions_smarty.inc.php on line
496
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
989
Following step solve the configuration problem in ITKs MetaIO CMake script with the error:
Could NOT find Tclsh (missing: TCL_TCLSH)
CMake Error at Utilities/MetaIO/CMakeLists.txt:115 (INSTALL):
install TARGETS given no ARCHIVE DESTINATION for static library target
"vtkmetaio".
You have to replace the line
ARCHIVE DESTINATION ${VTK_INSTALL_LIB_DIR_CM24}
with
ARCHIVE DESTINATION ${VTK_INSTALL_LIB_DIR}
VTK_INSTALL_LIB_DIR_CM24 is just stripping the leading "/" of VTK_INSTALL_LIB_DIR and is defined in the VTK 5.6 main CMake File. Somehow the ARCHIVE flag seems to need this slash...
For a new project i had to install the free Qt SDK 4.6.2 and its Visual Studio Integration. After figuring out that qt-sdk-win-opensource-2010.02.1.exe, is the right SDK package the installation works without a problem. Cause the free version does not deliver ready to use libs and dlls, i had to compile them manually. And this one was a little bit tricky.
First you should think about which packages you really need! Webkit, OpenSSL support, SqlSupport, ... Otherwise Qt will compile for hours and hours. Then open the Visual Studio 2008 Console,go to the Qt installation directory and call the configure script with the appropriate options.
The configure doesn't take much time and usually works without a problem. Then you have just to call nmake to start the compilation.
Build error 1
NMAKE : fatal error U1077: ‘”C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\nmake.exe”‘ : return code ‘0×2′
To solve these kind of build errors do the following steps:
QTDIR
: c:\Qt\4.6.2 or wherever you unzipped the Qt sources.QMAKESPEC
: win32-msvc2008%QTDIR%/bin
to the PATH
Build error 2
For Compiler errors in QtWebkit like "api\qscriptextensionplugin.h(43): Error: Undefined interface" you have to delete the file:
src/script/tmp/moc/{debug,release}_shared/mocinclude.tmp
For Linker errors in QtWebkit "error LNK2001: unresolved symbol ..." you have to delete the following temporary file:
src/3rdparty/webkit/WebCore/tmp/moc/{debug,release}_shared/mocinclude.tmp
After these changes your Computer will be busy for some hours 
To preview a domain hosted on a vServer with Plesk for example you have create a DomainAlias. In this way you're able to access your domain via
http://YourNewDomainName.v1231434.1blu.de
for example.
This is the way:
touch /var/www/vhosts/YourNewDomain.de/conf/vhost.conf
Open vhost.conf and add the line:
ServerAlias YourNewDomainName.v1231434.1blu.de
chmod go+r vhost.conf
/opt/psa/admin/bin/websrvmng --reconfigure-vhost --vhost-name=YourNewDomainName.de
apache2ctl restart
Tested with Ubuntu 6.06 LTS Plesk 8.1
On our brand new 1blu vServer ( preconfigured with Suse 10.1, Plesk 8.1 and Virtuozzo) we encountered a problem installing new packages via Yast2.We tried to define the installation source in yast2/Software/Installation source but yast hang up when we pressed the finish button.
The command line version "installation_source -a" doesn't exist in 10.1 any longer and rug service-add --type=zypp http://download.opensuse.org/distribution/SL-10.1/inst-source/ "SUSE Linux 10.1" just adds the installation source for the zen-updater. So far the failed tries
The solution was to get and install the updated version of yast2.
cd /home
wget http://download.opensuse.org/repositories/YaST:/SVN/SUSE_Linux_10.1/i586/yast2-xml-2.13.2-1.1.i586.rpm
wget http://download.opensuse.org/repositories/YaST:/SVN/SUSE_Linux_10.1/i586/yast2-core-2.13.22-10.3.i586.rpm
wget http://download.opensuse.org/repositories/YaST:/SVN/SUSE_Linux_10.1/i586/yast2-2.13.58-4.1.i586.rpm
yast2 -i yast2-xml-2.13.2-1.1.i586.rpm
yast2 -i yast2-core-2.13.22-10.3.i586.rpm
yast2 -i yast2-2.13.58-4.1.i586.rpm
Now we are able to define http://download.opensuse.org/distribution/SL-10.1/inst-source/ as an installation source.
That's easy with some knowledge of the Win32 API
In the header file:
WXLRESULT MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
In the cpp:
#ifdef _WIN32
#include <windows.h>
WXLRESULT Frame::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
{
// Catch the message
if (message == WM_DEVICECHANGE)
{
// and handle the Event
if (wParam == DBT_DEVICEARRIVAL)
{
//...
}
}
return wxFrame::MSWWindowProc(message,wParam,lParam);
}
#endif
If you include the wx.rc file - which you should -, you will get an error when you compile your project with VC 8.0: invalid COFF or something. The new 8.0 linker has the ability to generate a manifest file on the fly and the .dsp/.sln conversion wizard enables this by default. So now your application has two manifest files, one included via wx.rc and the new one generated by the linker. The linker does not like this. You have two options.
- Define wxUSE_NO_MANIFEST to stop using the wxWidgets manifest file. You must change the file settings for your .rc file and include this define there. Using the precompiled header file as mentioned above won't work.
- Disable the linker|manifest option: Open the properties for your project. Select 'all configurations', open the linker settings, manifest file and set 'generate manifest' to no.
I recommend the first option as it lets the linker create a manifest with all the correct DLL side-by-side information. If you disable the linker|manifest option, a debug build may not find the
MSVCP80D.DLL for example and you have to copy the DLL into your path. If the linker creates the manifest file, all the correct DLL paths are being used.
Via
Litwindow blog
Deprecated: Assigning the return value of new by reference is deprecated in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
558
Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in
/www/htdocs/v155711/codeandcoffee/include/db/mysql.inc.php on line
263
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in
/www/htdocs/v155711/codeandcoffee/serendipity_config.inc.php on line
382
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
989
Strict Standards: Non-static method serendipity_plugin_api::enum_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
934
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
941
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
539
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
491
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
496
Strict Standards: Declaration of serendipity_event_s9ymarkup::event_hook() should be compatible with serendipity_event::event_hook($event, &$bag, &$eventData, $addData = NULL) in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_s9ymarkup/serendipity_event_s9ymarkup.php on line
146
Strict Standards: Declaration of serendipity_event_s9ymarkup::uninstall() should be compatible with serendipity_plugin::uninstall(&$propbag) in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_s9ymarkup/serendipity_event_s9ymarkup.php on line
146
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
945
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
941
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
539
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
491
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
496
Strict Standards: Declaration of serendipity_event_emoticate::event_hook() should be compatible with serendipity_event::event_hook($event, &$bag, &$eventData, $addData = NULL) in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_emoticate/serendipity_event_emoticate.php on line
204
Strict Standards: Declaration of serendipity_event_emoticate::uninstall() should be compatible with serendipity_plugin::uninstall(&$propbag) in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_emoticate/serendipity_event_emoticate.php on line
204
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
945
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
941
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
539
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
491
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
496
Strict Standards: Declaration of serendipity_event_geshi::event_hook() should be compatible with serendipity_event::event_hook($event, &$bag, &$eventData, $addData = NULL) in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_geshi/serendipity_event_geshi.php on line
199
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
945
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
941
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
539
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
491
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
496
Strict Standards: Declaration of serendipity_event_nl2br::event_hook() should be compatible with serendipity_event::event_hook($event, &$bag, &$eventData, $addData = NULL) in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_nl2br/serendipity_event_nl2br.php on line
162
Strict Standards: Declaration of serendipity_event_nl2br::uninstall() should be compatible with serendipity_plugin::uninstall(&$propbag) in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_nl2br/serendipity_event_nl2br.php on line
162
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
945
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
941
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
539
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
491
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
496
Strict Standards: Declaration of serendipity_event_browsercompatibility::event_hook() should be compatible with serendipity_event::event_hook($event, &$bag, &$eventData, $addData = NULL) in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_browsercompatibility/serendipity_event_browsercompatibility.php on line
80
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
945
Strict Standards: Non-static method serendipity_plugin_api::load_plugin() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
941
Strict Standards: Non-static method serendipity_plugin_api::probePlugin() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
539
Strict Standards: Non-static method serendipity_plugin_api::getClassByInstanceID() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
491
Strict Standards: Non-static method serendipity_plugin_api::includePlugin() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
496
Deprecated: Assigning the return value of new by reference is deprecated in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php on line
398
Deprecated: Assigning the return value of new by reference is deprecated in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php on line
423
Deprecated: Assigning the return value of new by reference is deprecated in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php on line
466
Deprecated: Assigning the return value of new by reference is deprecated in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php on line
697
Strict Standards: Non-static method serendipity_plugin_api::get_plugin_title() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
945
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/genpage.inc.php on line
31
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
989
Strict Standards: Non-static method serendipity_plugin_api::count_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/genpage.inc.php on line
34
Strict Standards: Non-static method serendipity_plugin_api::count_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/genpage.inc.php on line
35
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/functions_entries.inc.php on line
328
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
989
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/functions_entries.inc.php on line
434
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
989
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/functions_entries.inc.php on line
877
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
989
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/functions_entries.inc.php on line
962
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
989
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/functions_entries.inc.php on line
1028
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
989
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/functions_entries.inc.php on line
962
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
989
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/functions_entries.inc.php on line
1028
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
989
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/functions_entries.inc.php on line
962
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
989
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/functions_entries.inc.php on line
1028
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
989
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/functions_entries.inc.php on line
962
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
989
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_geshi/geshi.php on line
1996
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_geshi/geshi.php on line
1996
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_geshi/geshi.php on line
1996
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/functions_entries.inc.php on line
1028
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
989
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/functions_entries.inc.php on line
962
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
989
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_geshi/geshi.php on line
2003
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_geshi/geshi.php on line
2003
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_geshi/geshi.php on line
2003
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_geshi/geshi.php on line
2003
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_geshi/geshi.php on line
2003
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_geshi/geshi.php on line
2003
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_geshi/geshi.php on line
2003
Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in
/www/htdocs/v155711/codeandcoffee/plugins/serendipity_event_geshi/geshi.php on line
2003
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/functions_entries.inc.php on line
1028
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
989
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/functions_entries.inc.php on line
962
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
989
Strict Standards: Non-static method serendipity_plugin_api::hook_event() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/functions_entries.inc.php on line
1028
Strict Standards: Non-static method serendipity_plugin_api::get_event_plugins() should not be called statically in
/www/htdocs/v155711/codeandcoffee/include/plugin_api.inc.php on line
989
Strict Standards: Only variables should be assigned by reference in
/www/htdocs/v155711/codeandcoffee/include/functions_smarty.inc.php on line
73
Strict Standards: Only variables should be assigned by reference in
/www/htdocs/v155711/codeandcoffee/include/functions_smarty.inc.php on line
73