Website changed on local and server possibly hacked?

Hi all,
I have a very disturbing problem..our website is wwwDOTselfdefenseproshopDOTcom. I had help here with my Spry Menu that I was building on the left column of my site.
Just as of yesterday sometime later in the day our website displayed properly as far as the spry menu on the left side.
As of today (we just looked now) the spry menu is all wrongly displayed and changed and showing old links as well.
I checked our local files on our machine where I store the files for the site. This is where I first discovered that the spry menu work that I had done was destroyed. I then checked online and found the same.
Neither my wife nor I have touched the local files nor uploaded any changes to the server for at least a month now.
Any ideas? was our site and our connection on DW hacked somehow?
We are at a loss and more than that the work I had done is now gone....
* NOTE TO GRAMPS if you happen to see this post...you and I had worked on my spry menu bar and I am wondering if you might still have a copy of the files from DW that I had sent you?...
Thanks to anyone for any help...

On your home page, I see 2 external links that are definitely messing you up.
<script src="http://labs.adobe.com/technologies/spry/widgets/menubar/SpryMenuBar.js" type="text/javascript"></script>
<link href="http://labs.adobe.com/technologies/spry/widgets/menubar/SpryMenuBarVertical.css" rel="stylesheet" type="text/css"/>
If you put those links into your browser, you'll see why.. Spry is no longer being supported by Adobe.  You'll need to physically download those files from GitHub and save them to your site. 
Nancy O.

Similar Messages

  • Access websites hosted on local web server

    Hi there,
    I have a Cisco ASA 5505 in my home office which has a few PCs behind it with a linux web server running some websites. I can access the websites from outside no problem (i.e. on my iPhone using a 3G connection). However, I struggle to access the websites from within the network. The ASA gives me this error:
    6
    May 05 2013
    11:52:27
    192.168.55.61
    50420
    Failed to locate egress interface for TCP from inside:192.168.55.61/50420 to 86.*.*.*/80
    ASA runs version 9. Here is the config bit:
    object network denon-server
    host 192.168.55.200
    access-list outside_access_in extended permit tcp any object denon-server eq www
    object network denon-server
    nat (any,outside) static interface service tcp www www
    Any suggestions?

    Hi,
    I assume that you are trying to reach the LAN server with the public IP address that the ASA holds and also uses for the above Port Forward / Static PAT configuration?
    If this is the situation then I am afraid that with the current configuration that is not possible. The NAT configuration towards Internet is done between probably "inside" and "outside". So "outside" interface holds the public IP address. ASA doesnt let you connect to that "outside" IP address from behind the "inside" IP address. (Or any other interface for that matter)
    What you could try to do is configure a NAT that would enable you to use the public IP address of the server even when connecting from the "inside" of ASA.
    Try this
    object network SERVER-LOCAL
    host 192.168.55.200
    object network SERVER-PUBLIC
    host 86.x.x.x
    object network LAN
    subnet 192.168.55.0 255.255.255.0
    nat (inside,inside) source dynamic LAN interface destination static SERVER-PUBLIC SERVER-LOCAL
    Where
    SERVER-LOCAL = Is the "object" that defines the real IP address of the server
    SERVER-PUBLIC = Is the "object" that defines the public IP address of the server (that ASA holds on its "outside")
    LAN = Is the "object" that defines the subnet from where LAN users connect to the server public IP address
    Check that the network mask is correct for the LAN and fill in the public IP address.
    The actual NAT configuration tells the ASA this
    When a connection from LAN is coming towards SERVER-PUBLIC then UN-NAT SERVER-PUBLIC to SERVER-LOCAL and NAT LAN to "inside" interface IP address (as defined by the parameter "interface" in the configuration)
    This should enable the LAN hosts to use the public IP address to connect to the server. The server though will see the connections coming from the ASA "inside" interface IP address.
    Hope this helps
    Please remember to mark a correct reply as the correct answer if it did answer. And/or rate helpfull answers
    Ask more if needed.
    - Jouni

  • Serious bug in Weblogic when connecting to a remote website through a local proxy server (proxyHost, proxyPort)

    Hi there,
    It seems that there is a serious problem with any version of Weblogic when you
    have to pass through a local proxy server to connect a remote website.
    Whenever I am trying to run the jsp program below either with Weblogic 7.0 SP2
    or even with Weblogic 8.1, I get the following exception :
    An error occured: Tried all: '1' addresses, but could not connect over HTTP to
    server: 'www.sun.com', port: '80'
    When I run the same program outside Weblogic, it works fine. Other people have
    already reported the same problem either in this newsgroup or on Internet forums,
    and up to now, the problem is not fixed yet.
    In fact, Weblogic seems to block when it performs the connect() method to the
    proxy, my jsp program hangs a few minutes before returning the error message shown
    above.
    If anyboby can tells me how this problem can be solved (or maybe via a workaround)
    do not hesitate to keep me informed, thanks in advance.
    Please find below my code :
    public class ProxyDownload extends HttpServlet
    private static final String CONTENT_TYPE = "text/html";
    //Initialize global variables
    public void init() throws ServletException
    public String bufferedReaderToString (BufferedReader br) throws IOException
    String xml = "";
    String line = null;
    while ( (line = br.readLine()) != null)
    xml += line;
    return xml;
    //Process the HTTP Get request
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws
    ServletException, IOException
    response.setContentType(CONTENT_TYPE);
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<head><title>Proxy Download</title></head>");
    out.println("<body bgcolor=\"#c0c0c0\">");
    try{
    // Set proxy stuff
    System.getProperties().put( "http.proxySet", "true");
    System.getProperties().put( "http.proxyHost", "ip_address" );
    System.getProperties().put( "http.proxyPort", "port");
    String password = "user:pass";
    sun.misc.BASE64Encoder objEncoder = new sun.misc.BASE64Encoder();
    String code = objEncoder.encode(password.getBytes());
    // Find the file name to save
    String file = null;
    // Open a connection
    URL url = new URL("http://www.sun.com");
    URLConnection connection = url.openConnection();
    // Set up the connection so it knows you are sending
    // proxy user information
    connection.setRequestProperty( "Proxy-Authorization", "basic " + code);
    connection.connect();
    // Set up the connection so you can do read and writes
    connection.setDoInput( true );
    BufferedReader inBuff = new BufferedReader(new InputStreamReader(connection.getInputStream()));
    String str = bufferedReaderToString(inBuff);
    out.println("<BR>" + str);
    catch(Exception e){
    out.println("<BR> An error occured: " + e.getMessage());
    out.println("</body></html>");
    //Process the HTTP Post request
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws
    ServletException, IOException
    doGet(request, response);
    //Clean up resources
    public void destroy()

    Hello,
    The way to set the HTTP connection using a proxy server changed (from
    using the system property
    weblogic.webservice.transport.http.proxy.host/port)[1] in WLS 7.x to the
    standard JDK 1.4 system properties [2] in WLS 8.1.
    I would recommend opening a dialog with our outstanding support team [3]
    to resolve this issue.
    Thanks,
    Bruce
    [1]
    http://edocs.bea.com/wls/docs70/webserv/client.html#1058615
    [2]
    http://java.sun.com/j2se/1.4/docs/guide/net/properties.html
    [3]
    http://support.bea.com
    [email protected]
    Yves Hardy wrote:
    >
    Hi there,
    It seems that there is a serious problem with any version of Weblogic when you
    have to pass through a local proxy server to connect a remote website.
    Whenever I am trying to run the jsp program below either with Weblogic 7.0 SP2
    or even with Weblogic 8.1, I get the following exception :
    An error occured: Tried all: '1' addresses, but could not connect over HTTP to
    server: 'www.sun.com', port: '80'
    When I run the same program outside Weblogic, it works fine. Other people have
    already reported the same problem either in this newsgroup or on Internet forums,
    and up to now, the problem is not fixed yet.
    In fact, Weblogic seems to block when it performs the connect() method to the
    proxy, my jsp program hangs a few minutes before returning the error message shown
    above.
    If anyboby can tells me how this problem can be solved (or maybe via a workaround)
    do not hesitate to keep me informed, thanks in advance.
    Please find below my code :
    public class ProxyDownload extends HttpServlet
    private static final String CONTENT_TYPE = "text/html";
    //Initialize global variables
    public void init() throws ServletException
    public String bufferedReaderToString (BufferedReader br) throws IOException
    String xml = "";
    String line = null;
    while ( (line = br.readLine()) != null)
    xml += line;
    return xml;
    //Process the HTTP Get request
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws
    ServletException, IOException
    response.setContentType(CONTENT_TYPE);
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<head><title>Proxy Download</title></head>");
    out.println("<body bgcolor=\"#c0c0c0\">");
    try{
    // Set proxy stuff
    System.getProperties().put( "http.proxySet", "true");
    System.getProperties().put( "http.proxyHost", "ip_address" );
    System.getProperties().put( "http.proxyPort", "port");
    String password = "user:pass";
    sun.misc.BASE64Encoder objEncoder = new sun.misc.BASE64Encoder();
    String code = objEncoder.encode(password.getBytes());
    // Find the file name to save
    String file = null;
    // Open a connection
    URL url = new URL("http://www.sun.com");
    URLConnection connection = url.openConnection();
    // Set up the connection so it knows you are sending
    // proxy user information
    connection.setRequestProperty( "Proxy-Authorization", "basic " + code);
    connection.connect();
    // Set up the connection so you can do read and writes
    connection.setDoInput( true );
    BufferedReader inBuff = new BufferedReader(new InputStreamReader(connection.getInputStream()));
    String str = bufferedReaderToString(inBuff);
    out.println("<BR>" + str);
    catch(Exception e){
    out.println("<BR> An error occured: " + e.getMessage());
    out.println("</body></html>");
    //Process the HTTP Post request
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws
    ServletException, IOException
    doGet(request, response);
    //Clean up resources
    public void destroy()

  • Changing the "Preffered DNS Server" possible?

    hi guys,
    I'm trying to do something pretty obscure here so bear with me:
    I have a Dreamcast and want to go online with it. I've order a Broadband Adapter for it (Yes they did make them for it!) and in order to connect to the private servers (as the official Sega servers went offline in 2007) you need to change the preferred DNS server within the Dreamcasts browser software.
    I tried it on BT Dial Up via the Dreamcasts standard Dial Up Modem but it wouldn't work and upon phoning BT support they told me it wasn't possible.
    So all I want to know is can it be done on Broadband/infinity? I just want to point the DC to another server, not my whole network. It won't mess anything else up right? Thanks for your patience!
    Tony

    The default gateway should be left at 192.168.1.254 (Home Hub default) as that is the path to the Internet. If you set it to obtain the IP address automatically, then the default gateway will be set automatically. I am assuming that you are not using static IP addresses on your network.
    The DNS should be set to manual, and you will need to enter the recommended DNS addresses (normally two of them)
    If it is left to automatic, then it actually defaults to 192.168.1.254, which is not what you want.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Keep local and server folder in sync

    hi,
    we want to set up a central file server, where each one can work on the same set of files, and eventually take it with you on a laptop and when re-connecting to the office sync what changed to the central folder.
    i know you can do that with user homer folders, but in this case it should be a "workgroup" folder that behaves for everybody like a home folder.
    except for third party client software solutions, i haven't found anything like that in the manuals. did i miss something?
    thanx
    philip

    Once the sites are in synch, the easiest way to keep them that way is to develop good and safe workflow. That is, never edit remote files. Edit local files and once the changes are made - and tested - upload them. It tends to be most efficient to work methodically so you don't lose track of where you are and what you have done/not done.
    If there are reasons to not upload before your session ends, make use of design notes to keep track of what you're doing.
    If there are multiple users, use check-in/check-out procedures.
    If all else fails, try a CMS (content management system).

  • Dynamically change the db and server in execute sql task

    Pkg 2: Moves data from B_STG (Staging DB) to B_Det_STG (Staging DB)  ---- option1
    Pkg 3: Moves data from B_STG (Staging DB) to B_Det (PC DB)   ---- option2
    This part is duplicating in both the packages
    So they want me to merge both of them into in execute sql task and dynamically change between option1 and option2 depending on a pkg level variable.
    So, I create a pkg level variable called ExecutionVariable: 'ANALYSIS' or 'LOADING'
    If 'ANALYSIS' it needs to do option1 else option2.
    So, I ma trying to create a dynamic connection string in execute sql task.
    I change the connection property in execute sql task editor dynamically my giving the expression: @[User::ExecutionVariable] == "ANALYSIS"?  @[User::STAGINGDBConnectionString] :  @[User::PCDBConnectionString]
    which evaluates to : Data Source=AW-ETL-D1;Initial Catalog=Staging;Integrated Security=SSPI;Provider=sqloledb
    But when I run the sql task, its giving me an error: 
    ERROR:
    TITLE: Microsoft Visual Studio
    Nonfatal errors occurred while saving the package:
    Error at PC_DataLoad: The connection "Data Source=AW-ETL-D1;Initial Catalog=Staging;Integrated Security=SSPI;Provider=sqloledb" is not found. This error is thrown by Connections collection when the specific connection element is not found.
    Error at PC_DataLoad: The connection "Data Source=AW-ETL-D1;Initial Catalog=Staging;Integrated Security=SSPI;Provider=sqloledb" is not found. This error is thrown by Connections collection when the specific connection element is not found.
    Can u please help me.

    Hi ,
    Don't try to make the "Execute Sql" task as dynamic.
    Try to make OLEDB connection Manager as "Dynamic".
    Steps:
    1. Create OLE DB Connection pointing to any database then set expression to connection string variables like below.
    Provider=SQLNCLI10.1;Integrated Security=SSPI;Initial Catalog=YourDBname;Data Source=YourServerName.
    2. Make Delayed Validation property to "True".
    3. Set the created dynamic OLE DB connection to your Execute SQL task.
    4. Change the connection string variable accordingly before running the "Execute SQL" task.
    Hope it will help you.
    Regards,
    Nandhu

  • A second issue - no free space on server, possibly hacked?

    On Monday morning, 4/30/2007, I came in to discover the last 80 GB left on our server was filled with 0 GB of free space. All the space had been taken up by a file/directory somewhere in one of the root folders (/etc, /var, etc). I never found out what took up all the space. Looking at our firewall, there had been a very large number of spoofed IP attempts to the server on ports 22 (SSH) and 135 and 139 (part of Samba) from a variety of IP addresses. Looking at the console log, the only thing I could find was the following error message just about every three minutes for hours and hours:
    DirectoryService[55]: Failed Authentication return is being delayed due to over five recent auth failures for username: root.
    So, I ended up rebooting the server after I came in, and shortly thereafter, the free space eventually returned. Was this a DoS attack or were we hacked?
    I could not find any other evidence in our logs that anyone made it in, but I could be wrong.
    Just as a note, I am dealing with a couple of other server issues:
    1) "Could not chdir to home directory /Network/Servers/..."
    http://discussions.apple.com/thread.jspa?threadID=948408&tstart=0
    2) server spontaneously returns to the login screen:
    http://discussions.apple.com/thread.jspa?threadID=948445
    Thanks,
    Tyler

    Why is an unsecured ssh publicly available ?
    Mac OS X or any other flavor of *nix, you must secure ssh.
    Don't make it publicly available (why are you forwarding traffic for port 22 ?), use ssh keys if ssh access is truly needed, and use something other than the default port (most easily done by forwarding it from a different port externally to port 22 internally at your router/firewall)
    Disallow root ssh access.
    http://www.google.com/search?q=securing+ssh
    http://images.apple.com/server/pdfs/TigerServer_Security_Config021507.pdf
    p. 191+

  • DateFormatContext - how to change default locale and date formatting?

    Hi,
    I need change default DateFormat e.g. from SHORT to MEDIUM, but I want to change default format for all pages, because I use for all bc4j:table automatic generation oc columns. Does anybody how to do it?
    I tried this:
    public void requestStarted(BajaContext context)
    Locale locale = new Locale("cs", "", "");
    MutableLocaleContext mContext = new MutableLocaleContext(locale);
    MutableDateFormatContext dfc = new MutableDateFormatContext(mContext.getDateFormatContext());
    But "dfc" doesn't have any set methods, where I could assign my formatter to the context:
    SimpleDateFormat DtFrmt = new SimpleDateFormat();
    // this I want to get to dfc
    dfc <== DtFrmt.getDateInstance(DtFrmt.MEDIUM, locale);
    Vl.

    I don't think this is possible. The dateField has a default validator on it which determines the date format, changing the dateFormatContext won't change the validator.

  • If I change a file name, how can I get DW to just change the name on server?

    I've got a reasonable grasp of site management but I just changed a bunch of files to replace an uppecase letter with a lower case e.g. MyFile.jpg to myfile.jpg  and DW doesn't manage that on the server.
    I ended up canging my file names, syncing the folder, deleting the duplicates directly on the server and then uploadin the HTML page the images link to.  Seemed like a long way of doing things in relation to the way DW manages everything else?
    Regards
    Maritn

    Hello Beth
    Thanks for that but it was rather what I wondered if I could avoid.
    The problem arises because of trying to manage gallery images.  I needed to change the name of a .jpg file and wondered if I could update the server without updating everything else. All my pages work OK and I needed to change several image names.  I went through the images and changed them locally, and DW updates everything fine.  So I synchronise the pages and would have just liked to have updated the image filenames without having to wait for the upload of just the image files which were the same.
    Even as I'm typing that out I realise it would be a small miracle to expect DW to compensate for my own ceaseless laziness...
    Martin

  • Changing Input Locale

    Hello
    I have a problem with an internationalized app. I need to change the input locale of the system depending on which textfield has taken the focus, in this case, from hebrew to english and vice versa without using ALT+SHIFT. I got it using a C library but I need to do it completelly in java. There is any way to do it?
    Thanks a lot

    Thank you very much for your answer. I have seen that Locale.setDefault works if I call this before initializing the frame. It changes the locale, and automatically the inputLocale of the system changes, allowing writing in another writing system. But I,m trying to change the input locale when the focus enter in a specific textfield. I don't want just to change formats in the textfield. I would like to change the writing automatically, without using ALT+SHIFT.

  • Is it possible to collect and save the formscentral responses locally on server

    We would like to collect the data and responses from our online forms created in Adobe XI and Formscentral to a locally hosted server so it may be accessed by our BI Dashboard software.  It is unable to access the data since it is hosted on Adobe servers/cloud.  If this is not possible it would be a great feature/option.

    Hi,
    Thanks for the feedback. If you use the FormsCentral authoring tool to generate a PDF that is not submission-enabled for data collection though FormsCentral, it would be possible to use Acrobat to add logic within the form to submit to a local server. That workflow is outside the scope of this forum, so if you have questions I would suggest that you post to the Acrobat Forms user forum - http://forums.adobe.com/community/acrobat/forms.
    Regards,
    Brian

  • Local Testing server and htdocs

    So I have set up apache/php with virtual servers and I'm
    using DW8.
    I may have terminology errors below. Correct me where I'm
    wrong please.
    Example site directory C:/apache/htdocs/site.com/
    The web directory is: C:/apache/htdocs/site.com/htdocs
    however there are other important files hiden below this
    rebroot in "site.com/application" for example
    My work diretory is C:/somewhere else/site.com. While
    developing, I just set the testing server as my webserver and
    posted everything to preview, but know I want to include the
    production server, and try to use my local testing setup correctly.
    I use DW to ftp and edit the site files, including those
    below the webroot, so is set my directories to allow access to
    those files. My annoyance is that when I preview my site it tries
    to pull up the homepage as www.site.dev/htdocs/index.php
    (I use dev to distinguish the local testing server)
    Can I resolve this problem, or can someone explain how to
    effecttively manage your workdirectory, testingserver and
    production server from one DW site? At the moment I'm using two DW
    sites to manage for now.

    Thank you for your answers.
    SnakEyez02 wrote:
    First, this is very possible depending on your theme.  Some of the dyanmic effects in themes use javascript files from the JQuery library as well as other javascript libraries.  Because of this it may not be possible to edit all files.
    How do you think I could check this is true ? I think I need all the files if I wish to edit the theme. Would copying all the remote files locally help clearing this in any way ?
    SnakEyez02 wrote:
    This sounds like a path issue in the code.  I would check there to make sure the path is correct.  Otherwise we would need to see the code.
    I don't know how to check this. When inspecting the page with Live Code, I don't know which html file Dw is showing me on the left. No filename has that grey background like it's pushed... Plus, I don't understand why the path would have changed, since I didn't mess with the code (yet) ?
    SnakEyez02 wrote:
    I have found this to appear when you have friendly/pretty-URLs or mod-rewrite turned on.  In the WordPress web admin, go to Settings->Permalinks and choose the default with the ?p=123 setting.  DW is currently unable to process the rewriting of URLs and it will only recognize the un-SEO-friendly way of reading URLs.
    Ok now I don't understand. When I go to http://localhost/mysite/wp-admin, it shows me the WP logo,
    No Upgrade Required
    Your WordPress database is already up-to-date!
    And a big "continue" button, all of which on the original site (the url is http://www.mysite.com/wp-admin/upgrade.php?_wp_http_referer=%2Fwp-admin%2F). Pressing the button gets me to http://www.mysite.com/.
    Is that because I imported the database from the live site ? I don't know what I did to get that, I used to get to the local WP installation. Could that be a bad database setup ?
    Any idea ?
    Again, thank you a lot for helping me out here !

  • Local testing server root and web url

    I would like to know if I have correctly set up my local testing server for the root folders. Very new to this.
    Local site folder is at C:\xampp\htdocs\NIF\.
    Test server folder is C:\xampp\htdocs\NIF\
    Web URL is http://localhost/NIF/
    Links are relative to document.
    In case it matters, site is using ZenPhoto gallery.
    I can see my index page's dynamic content in LiveView, but I'm not sure if I have the root paths correct.
    Root of the online website is at http://natureinfocus.com/ with a gallery at http://natureinfocus.com/galleries
    Currently an address in DW shows http://localhost/nif/galleries/ where the actual website would show http://natureinfocus.com/galleries/
    I've put testing site root in a subfolder since I may have several sites.
    Do I have this set up correctly or do I need to change soemthig since I've put the root in a subfolder?
    Also wasn't sure if links should be set instead to relative to document or site root?
    Thanks for any help.

    Since I have Windows 7 64 bit system., I get the usual error message about running this program only from my XAMPP directory (which everyone says to not worry about).  MySQL service starts ok. Text in the windows says Apache started, but the "Start" button doesn't change to Stop and Admin button is grayed out.
    My recent errors log before I changed vhosts, etc., is below. Tried to decrease the font but it just wouldn't change ...
    [Wed Jul 06 01:06:24 2011] [warn] pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
    [Wed Jul 06 01:06:24 2011] [notice] Digest: generating secret for digest authentication ...
    [Wed Jul 06 01:06:24 2011] [notice] Digest: done
    [Wed Jul 06 01:06:24 2011] [notice] Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8o PHP/5.3.4 mod_perl/2.0.4 Perl/v5.10.1 configured -- resuming normal operations
    [Wed Jul 06 01:06:24 2011] [notice] Server built: Oct 18 2010 01:58:12
    [Wed Jul 06 01:06:24 2011] [notice] Parent: Created child process 7732
    [Wed Jul 06 01:06:25 2011] [notice] Digest: generating secret for digest authentication ...
    [Wed Jul 06 01:06:25 2011] [notice] Digest: done
    [Wed Jul 06 01:06:26 2011] [notice] Child 7732: Child process is running
    [Wed Jul 06 01:06:26 2011] [notice] Child 7732: Acquired the start mutex.
    [Wed Jul 06 01:06:26 2011] [notice] Child 7732: Starting 150 worker threads.
    [Wed Jul 06 01:06:26 2011] [notice] Child 7732: Starting thread to listen on port 443.
    [Wed Jul 06 01:06:26 2011] [notice] Child 7732: Starting thread to listen on port 80.
    [Wed Jul 06 01:27:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:27:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:27:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_options() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:27:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:27:17 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:27:17 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:27:17 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_images() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:27:17 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::has_parameters() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 211
    [Wed Jul 06 01:27:17 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 228
    [Wed Jul 06 01:27:17 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 324
    [Wed Jul 06 01:27:17 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 324
    [Wed Jul 06 01:27:17 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:27:17 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:27:17 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:27:17 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:27:38 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoPressHelpers::getWPBasePath() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\classes.php on line 36
    [Wed Jul 06 01:27:39 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:27:39 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:27:39 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_nested_albums() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:27:39 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:27:40 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:27:40 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:27:40 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_nested_albums() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:27:40 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:28:14 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoPressHelpers::getWPBasePath() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\classes.php on line 36, referer: http://localhost/nif/articles/wp-content/plugins/zenphotopress/tinymce/popup_zp.php?tinyMC E=0
    [Wed Jul 06 01:28:15 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:28:15 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:28:15 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_album() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:28:15 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::has_parameters() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 131
    [Wed Jul 06 01:28:15 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 154
    [Wed Jul 06 01:28:15 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 324
    [Wed Jul 06 01:28:15 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:28:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:28:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:28:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_images() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:28:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::has_parameters() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 211
    [Wed Jul 06 01:28:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 228
    [Wed Jul 06 01:28:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 324
    [Wed Jul 06 01:28:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 324
    [Wed Jul 06 01:28:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:16 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:28:17 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:28:17 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:28:17 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::count_images() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:28:17 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::has_parameters() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 288
    [Wed Jul 06 01:28:17 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:28:18 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoPressHelpers::getWPBasePath() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\classes.php on line 36, referer: http://localhost/nif/articles/wp-content/plugins/zenphotopress/tinymce/popup_zp.php?tinyMC E=0
    [Wed Jul 06 01:28:18 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:28:18 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:28:18 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_options() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:28:18 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:28:19 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:28:19 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:28:19 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_nested_albums() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:28:19 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:28:20 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:28:20 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:28:20 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_album() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:28:20 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::has_parameters() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 131
    [Wed Jul 06 01:28:20 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 154
    [Wed Jul 06 01:28:20 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 324
    [Wed Jul 06 01:28:20 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:28:21 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:28:21 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:28:21 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_images() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:28:21 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::has_parameters() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 211
    [Wed Jul 06 01:28:21 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 228
    [Wed Jul 06 01:28:21 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 324
    [Wed Jul 06 01:28:21 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 324
    [Wed Jul 06 01:28:21 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:21 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:21 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:21 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:21 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:21 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:21 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:21 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:21 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:21 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:28:21 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:28:22 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:28:22 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:28:22 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::count_images() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:28:22 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::has_parameters() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 288
    [Wed Jul 06 01:28:22 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:28:23 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:28:23 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:28:23 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_options() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:28:23 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:28:24 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:28:24 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:28:24 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_nested_albums() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:28:24 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:29:22 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoPressHelpers::getWPBasePath() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\classes.php on line 36, referer: http://localhost/nif/articles/wp-content/plugins/zenphotopress/tinymce/popup_zp.php?tinyMC E=0&section=image
    [Wed Jul 06 01:29:24 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:29:24 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:29:24 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_album() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:29:24 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::has_parameters() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 131
    [Wed Jul 06 01:29:24 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 154
    [Wed Jul 06 01:29:24 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 324
    [Wed Jul 06 01:29:24 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:29:25 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:29:25 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:29:25 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_images() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:29:25 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::has_parameters() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 211
    [Wed Jul 06 01:29:25 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 228
    [Wed Jul 06 01:29:25 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 324
    [Wed Jul 06 01:29:25 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 324
    [Wed Jul 06 01:29:25 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:29:25 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:29:25 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:29:25 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:29:25 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:29:25 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:29:25 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:29:25 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:29:25 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:29:25 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:29:25 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:29:26 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:29:26 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:29:26 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::count_images() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:29:26 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::has_parameters() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 288
    [Wed Jul 06 01:29:26 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:29:27 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:29:27 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:29:27 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_options() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:29:27 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:29:28 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:29:28 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:29:28 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_nested_albums() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:29:28 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:29:33 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoPressHelpers::getWPBasePath() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\classes.php on line 36, referer: http://localhost/nif/articles/wp-content/plugins/zenphotopress/tinymce/popup_zp.php?tinyMC E=0&section=image
    [Wed Jul 06 01:29:35 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:29:35 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:29:35 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_album() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:29:35 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::has_parameters() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 131
    [Wed Jul 06 01:29:35 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 154
    [Wed Jul 06 01:29:35 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 324
    [Wed Jul 06 01:29:35 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:29:36 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:29:36 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:29:36 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_images() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:29:36 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::has_parameters() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 211
    [Wed Jul 06 01:29:36 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 228
    [Wed Jul 06 01:29:36 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 324
    [Wed Jul 06 01:29:36 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 324
    [Wed Jul 06 01:29:36 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:29:36 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:29:36 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:29:36 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:29:36 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:29:37 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:29:37 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:29:37 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::count_images() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:29:37 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::has_parameters() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 288
    [Wed Jul 06 01:29:37 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:29:38 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:29:38 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:29:38 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_options() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:29:38 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:29:39 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:29:39 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:29:39 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_nested_albums() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:29:39 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:30:03 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoPressHelpers::getWPBasePath() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\classes.php on line 36, referer: http://localhost/nif/articles/wp-content/plugins/zenphotopress/tinymce/popup_zp.php?tinyMC E=0&section=image
    [Wed Jul 06 01:30:04 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:30:04 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:30:04 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_album() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:30:04 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::has_parameters() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 131
    [Wed Jul 06 01:30:04 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 154
    [Wed Jul 06 01:30:04 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 324
    [Wed Jul 06 01:30:04 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:30:05 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:30:05 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:30:05 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_images() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:30:05 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::has_parameters() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 211
    [Wed Jul 06 01:30:05 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 228
    [Wed Jul 06 01:30:05 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 324
    [Wed Jul 06 01:30:05 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::album_protected_recursive() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 324
    [Wed Jul 06 01:30:06 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:30:06 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:30:06 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:30:06 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:30:06 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:30:06 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:30:06 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:30:06 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:30:06 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:30:06 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::is_valid_video() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 272
    [Wed Jul 06 01:30:06 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:30:07 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:30:07 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:30:07 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::count_images() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:30:07 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::has_parameters() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 288
    [Wed Jul 06 01:30:07 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:30:08 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:30:08 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:30:08 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_options() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:30:08 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:30:09 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:30:09 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:30:09 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_nested_albums() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:30:09 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:31:54 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoPressHelpers::getWPBasePath() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\classes.php on line 36
    [Wed Jul 06 01:31:55 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:31:55 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:31:55 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_nested_albums() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:31:55 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:31:56 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:31:56 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:31:56 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_nested_albums() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:31:56 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::print_output() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 58
    [Wed Jul 06 01:32:11 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoPressHelpers::getWPBasePath() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\classes.php on line 36, referer: http://localhost/nif/articles/wp-content/plugins/zenphotopress/tinymce/popup_zp.php?tinyMC E=0
    [Wed Jul 06 01:32:12 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::request2function() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 24
    [Wed Jul 06 01:32:12 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::init() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php on line 44
    [Wed Jul 06 01:32:12 2011] [error] [client 127.0.0.1] PHP Strict Standards:  Non-static method ZenphotoBridge::get_album() should not be called statically in C:\\xampp\\htdocs\\nif\\articles\\wp-content\\plugins\\zenphotopress\\zenphoto_bridge.php (49) : eval()'d code on line 1
    [Wed Jul 06 01:32:12 2011] [error] [client 127.0.0.1

  • Pros and cons of installing a local J2EE server

    Hi,
    We are about to start developing portal applications with Web Dynpro and will use NWDI (DTR/CBS/CMS). I would like to know what SAP recommends for team development, each developer installs a local J2EE server or they all deploy and test on a central server?
    From my past experiences, using only one central server can cause problems with debugging, deployment and collisions of a DC tested simultanously by two developers. Running a local server can solve these problems but this could be costly; first because PCs often don't have enough CPU/RAM to run it, and second to support all these complex installations.
    I have read Benny's two blogs and some SAP documentation but it is still not clear to me which option is best. If you have lived good or bad experiences with one or the other please let me know!
    Thanks,
    Martin

    I would strongly suggest you avoid having a single runtime environment for multiple developers.  The nature of Java development makes working in a runtime environment such as this very difficult.  It's far too easy to have multiple developers working on the same component making changes that result in different versions of the same component getting deployed to the same runtime environment.  Unless communication is very good, you're developers will end up clobbering each others changes.  Obviously not good, since the developers will spend time trying to debug problems which really don't exist!
    At the other end of the spectrum, each developer can have their own Java stack running locally on their desktop PC.  This was the solution that we first tested out, but due to the amount of virus scanning and the overall 'weight' of the other software tools on our desktop PC's, this didn't work too well - performance wasn't all that good.  It was also too easy for the developer to clobber their own environment by accidentally removing files, or by making changes to the configuration that would render their engine unusable.
    What we opted for was something in the middle: a dedicated multi-cpu system with lots of RAM that runs multiple J2EE instances, each of which is assigned to a single developer.  What you get from this sort of configuration is this: only a single operating system to patch when you are required to do upgrades; a controlled environment where the developer doesn't have file system access to the system (which they don't need anyways); if you're lucky, basis support to perform installation and patching duties.
    We've been using this environment for about a year now, and it works well.  I have full access to the J2EE container via the Visual Admin, and since the dev instances are configured as single server debuggable instances, I can restart the server via the Dev Studio with just two clicks.
    Hope that gives you an idea of another possible config.

  • Synchronizing local database and server database

    Hi,
    I am working on an application where users store information on their laptops in a local database. Once a day, synchronizing has to take place with the server database. The clients will send their mutated data to the server and the server will send its mutated data, e.g. changed item file.
    The choice of database is Mysql for the laptop, and server resides on AS400, so DB2 is the platform.
    I am wondering what techniques could be used to accomplish this. Should it be done by sql or via text files? Through a socket or something else?
    Does anyone have an idea what the best approach is for this matter?
    And if possible, some sample code would be very much appreciated.
    Thanks in advance.

    Hi,
    There are numerous solutions to this. I have worked on a similar project a couple of years ago. The plan is as follows:
    1. A java client is run on the laptop (user) which connects to the remote server on calls a procedure passing the localdata as the parameter.
    2. the server parses the local data and updates itself and returns the updated data to the client.
    The main considerations:
    1. Connectivity: Connecting via internet to the server tunnelling through firewall or VPN ( I have no adequate knowledge on this).
    2. The amount of data transfer. I was working on relatively less transactional data and hence the connection thru a dial up was not a problem.
    3. The frequency of this operation. TO me it was once a day process, and hence I scheduled it during vee hours when the network was relatively free.
    This is all my thoughts about the scenario. Any comments and suggestions are welcome.
    Cheers,
    Sekar

Maybe you are looking for

  • Samsung LN40C560 40 inches LCD TV screen is completely RED. HELP??

    I have a Samsung  LN40C560J2FXZA and the whole screen turned completely Red. I don't know to how to fix it and what is wrong with it? If I have to repair it how much will it cost me ? like a estimate? Please HELP?????

  • How do I get back a prior version of Ff and get you to stop installing updates?

    I too am losing add-ons even though all of my settings reflect that they should be showing on the site. If I still have the install for Firefox 28 can I uninstall the current version and install version 28? Also do you have a contact email, or is the

  • Adobe flex 3 training from the source, code download

    I've got this book here adobe flex 3 training from the source but we've lost the cd's, can I download the code?

  • ALV Grid in ITS Mobile Application

    Hi Experts, I am working on Integrated ITS. In my application I need to use ALV Grid to display and modify data. I have used a custom control on the screen to display the ALV grid.  The application running fine when I am executing the tcode but when

  • Multiple Logo - xml Template

    Hi I need to print logo depending upon my profile value. I did the following 1. Created a template 2. Dummy Images on template 3. double clicking the dummy image --> selected the web tab and placed the following <?xdofx:if fnd_profile.value=101 then